style refactor
This commit is contained in:
+12
-12
@@ -11,24 +11,24 @@ public:
|
||||
SerialApp();
|
||||
~SerialApp() = default;
|
||||
|
||||
void Initialize();
|
||||
void RenderUI();
|
||||
void initialize();
|
||||
void renderUI();
|
||||
|
||||
bool ShouldClose() const { return should_close; }
|
||||
bool isClosing() const { return shouldClose; }
|
||||
|
||||
private:
|
||||
void RenderMainMenuBar();
|
||||
bool LoadTheme(const std::string& filepath); // Метод парсинга файла темы
|
||||
void renderMainMenuBar();
|
||||
bool loadTheme(const std::string& filepath); // Метод парсинга файла темы
|
||||
|
||||
bool show_connection_window = true;
|
||||
bool show_payload_window = true;
|
||||
bool show_log_window = true;
|
||||
bool showConnectionWindow = true;
|
||||
bool showPayloadWindow = true;
|
||||
bool showLogWindow = true;
|
||||
|
||||
bool should_close;
|
||||
bool shouldClose;
|
||||
|
||||
ConnectionWindow connection_window;
|
||||
PayloadWindow payload_window;
|
||||
LogWindow log_window;
|
||||
ConnectionWindow connectionWindow;
|
||||
PayloadWindow payloadWindow;
|
||||
LogWindow logWindow;
|
||||
};
|
||||
|
||||
#endif // SERIAL_SAMPLE_SERIALAPP_H
|
||||
|
||||
Reference in New Issue
Block a user