Implement window hiding and tray icon functionality

Added methods to hide and show the Toolbox window and integrated a system tray icon with menu options, including window toggle and application quit functionality. Moved Lua script execution to occur after successful script loading. Introduced resource inclusion in the project files to support icon loading.
This commit is contained in:
2024-12-07 23:07:55 +01:00
parent 486094b540
commit 4fa4c6df6c
7 changed files with 116 additions and 16 deletions

13
inc/toolboxTray.h Normal file
View File

@@ -0,0 +1,13 @@
#pragma once
#include "tray.h"
#include "toolboxWindow.h"
class toolboxTray {
public:
private:
};