18 lines
475 B
C
18 lines
475 B
C
|
#ifndef UI_H
|
||
|
#define UI_H
|
||
|
|
||
|
#include "../Inc/button_handlers.h"
|
||
|
#include "widgets.h"
|
||
|
#include <gtk/gtk.h>
|
||
|
|
||
|
gboolean update_ButtonMain_label(gpointer data);
|
||
|
gboolean update_LableCurrentPressure(gpointer data);
|
||
|
gboolean update_LableSensorPressure(gpointer data);
|
||
|
|
||
|
gboolean set_Color_ButtonMain_red(gpointer data);
|
||
|
gboolean set_Color_ButtonMain_green(gpointer data);
|
||
|
gboolean set_Color_ButtonMain_white(gpointer data);
|
||
|
|
||
|
gboolean update_Error_Table(gpointer data);
|
||
|
#endif // UI_H
|