feat: add stroke thickness

This commit is contained in:
2026-03-05 00:51:20 +05:30
parent 8ac783e6e0
commit eefd95e4d2
15 changed files with 379 additions and 356 deletions

View File

@@ -8,13 +8,13 @@ Global application widget state, holding references to
all the widgets used in internal logic of the program
*/
typedef struct VektorWidgetState {
GtkWindow *window;
GtkPaned *workspacePaned;
GtkPicture *workspaceCanvas;
GtkWindow *window;
GtkPaned *workspacePaned;
GtkPicture *workspaceCanvas;
GtkButton* workspaceButtonLinetool;
GtkButton *workspaceButtonLinetool;
// GtkWidget* Workspace
// GtkWidget* Workspace
} VektorWidgetState;
void vektor_uictrl_init(GtkApplication *app, VektorWidgetState *stateOut);