mirror of
https://gitee.com/idea4good/GuiLite.git
synced 2025-12-21 19:09:58 +08:00
sync up with github
This commit is contained in:
@@ -24,12 +24,11 @@ public:
|
||||
virtual void on_init_children();
|
||||
virtual void on_paint();
|
||||
|
||||
void set_wave_name(unsigned short wave_name_id){ m_wave_name = wave_name_id;}
|
||||
unsigned short get_wave_name(){return m_wave_name;}
|
||||
void set_wave_unit(unsigned short wave_unit_id){ m_wave_unit = wave_unit_id;}
|
||||
void set_wave_name(char* wave_name){ m_wave_name = wave_name;}
|
||||
void set_wave_unit(char* wave_unit){ m_wave_unit = wave_unit;}
|
||||
|
||||
void set_wave_name_font_type(const GUI_FONT* wave_name_font_type){ m_wave_name_font_type = wave_name_font_type;}
|
||||
void set_wave_unit_font_type(const GUI_FONT* wave_unit_font_type){ m_wave_unit_font_type = wave_unit_font_type;}
|
||||
void set_wave_name_font_type(const FONT_INFO* wave_name_font_type){ m_wave_name_font_type = wave_name_font_type;}
|
||||
void set_wave_unit_font_type(const FONT_INFO* wave_unit_font_type){ m_wave_unit_font_type = wave_unit_font_type;}
|
||||
|
||||
void set_wave_name_color(unsigned int wave_name_color){ m_wave_name_color = wave_name_color;}
|
||||
void set_wave_unit_color(unsigned int wave_unit_color){ m_wave_unit_color = wave_unit_color;}
|
||||
@@ -51,11 +50,11 @@ protected:
|
||||
void erase_oldest_vline();
|
||||
void save_foreground();
|
||||
|
||||
unsigned short m_wave_name;
|
||||
unsigned short m_wave_unit;
|
||||
char* m_wave_name;
|
||||
char* m_wave_unit;
|
||||
|
||||
const GUI_FONT* m_wave_name_font_type;
|
||||
const GUI_FONT* m_wave_unit_font_type;
|
||||
const FONT_INFO* m_wave_name_font_type;
|
||||
const FONT_INFO* m_wave_unit_font_type;
|
||||
|
||||
unsigned int m_wave_name_color;
|
||||
unsigned int m_wave_unit_color;
|
||||
|
||||
Reference in New Issue
Block a user