feat: hook color picker to entry fields

This commit is contained in:
Beriff
2026-03-09 00:56:20 +07:00
parent ce28f0d350
commit f593d762fb
6 changed files with 200 additions and 8 deletions

View File

@@ -12,6 +12,7 @@ all the widgets used in internal logic of the program
typedef struct VektorWidgetState {
GtkWindow* window;
GtkPaned* workspacePaned;
GtkPaned* sidepanelPaned;
GtkGLArea* workspaceCanvas;
GtkButton* workspaceButtonMasterShapes;
@@ -22,6 +23,10 @@ typedef struct VektorWidgetState {
VektorColorWheel* workspaceColorPicker;
GtkEntry* sidepanelEntryR;
GtkEntry* sidepanelEntryG;
GtkEntry* sidepanelEntryB;
// GtkWidget* Workspace
} VektorWidgetState;