//! Disables widgets for functions not available due to lacking devices or settings
voidDisableDisfunctionalWidgets();
//! Loads all needed client icon QPixmaps
voidLoadIconPixmaps();
//! Sets up all used widgets
voidSetupWidgets();
QStandardItemModel*clients_view_model=nullptr;//! The view storing all clients data
QTimer*gui_update_timer=nullptr;//! A QTimer triggering updates of the graphical user interface
QPixmap*icons=nullptr;//! Array of pixmaps storing the icons indicating the clients' statuses
lcLablib*lablib=nullptr;//! Accumulator of all program logic being accessed by the GUI
boollocal_zLeaves_are_running=false;//! Stores if a local zLeaf instance is running on the server ('true' if local zLeaf exists)
QButtonGroup*userChooseButtonGroup=nullptr;//! Used to group the radio buttons choosing which user shall be used for administrative client actions
Ui::MainWindow*ui=nullptr;//! Pointer storing all GUI items
QVector<QStandardItem*>*valid_items=nullptr;//! Stores all valid Client instances displayed by the table view, its main use is as iterable object for 'update_clients_table_view()'