style refactor

This commit is contained in:
Ivan I. Ovchinnikov
2026-07-27 21:29:50 +03:00
parent 47b1e70663
commit 5a702fe0f8
9 changed files with 119 additions and 119 deletions
+12 -12
View File
@@ -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