Vivoe Lite 0.5.0
Lightweight GVA like HMI for military displays.
Loading...
Searching...
No Matches
hmi_gva_helpers.h
Go to the documentation of this file.
1//
2// Copyright (c) 2023, DefenceX PTY LTD
3//
4// This file is part of the VivoeX project developed by DefenceX.
5//
6// Licensed under the Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)
7// License. See the LICENSE file in the project root for full license details.
8//
12
13#ifndef HMICORE_HMI_GVA_HELPERS_H_
14#define HMICORE_HMI_GVA_HELPERS_H_
15#include "hmicore/screen_gva.h"
16
17namespace gva {
18
20class HmiHelper {
21 public:
23 static void TableLicences(WidgetTable *table);
25 static void TableSystem(WidgetTable *table);
27 static void TableAlarms(WidgetTable *table);
28};
29
30} // namespace gva
31
32#endif // HMICORE_HMI_GVA_HELPERS_H_
Class definition of the HmiHelper.
Definition hmi_gva_helpers.h:20
static void TableSystem(WidgetTable *table)
Construct a table of system information.
Definition hmi_gva_helpers.cc:59
static void TableLicences(WidgetTable *table)
Construct a table of licences.
Definition hmi_gva_helpers.cc:21
static void TableAlarms(WidgetTable *table)
Construct a table of alarms.
Definition hmi_gva_helpers.cc:109
A widget representing a table of elements.
Definition table.h:32