Sun, 19 Oct 2025 21:04:49 +0200
fix use-after-free in some splitpane functions (GTK)
| 3 | 1 | /* |
| 2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. | |
| 3 | * | |
|
140
c03c338a7dcf
refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
108
diff
changeset
|
4 | * Copyright 2017 Olaf Wintermann. All rights reserved. |
| 3 | 5 | * |
| 6 | * Redistribution and use in source and binary forms, with or without | |
| 7 | * modification, are permitted provided that the following conditions are met: | |
| 8 | * | |
| 9 | * 1. Redistributions of source code must retain the above copyright | |
| 10 | * notice, this list of conditions and the following disclaimer. | |
| 11 | * | |
| 12 | * 2. Redistributions in binary form must reproduce the above copyright | |
| 13 | * notice, this list of conditions and the following disclaimer in the | |
| 14 | * documentation and/or other materials provided with the distribution. | |
| 15 | * | |
| 16 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
| 17 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
| 18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
| 19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | |
| 20 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
| 21 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
| 22 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
| 23 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
| 24 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
| 25 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
| 26 | * POSSIBILITY OF SUCH DAMAGE. | |
| 27 | */ | |
| 28 | ||
| 29 | #ifndef BUTTON_H | |
| 30 | #define BUTTON_H | |
| 31 | ||
| 32 | #include "../ui/toolkit.h" | |
|
107
9aff1dc3990d
improved box container and added radio button (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
33
diff
changeset
|
33 | #include "../ui/button.h" |
| 3 | 34 | #include "toolkit.h" |
| 35 | ||
| 36 | #ifdef __cplusplus | |
| 37 | extern "C" { | |
| 38 | #endif | |
|
308
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
39 | |
|
704
6105e9d9b7e1
add linkbutton (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
359
diff
changeset
|
40 | typedef struct UiLinkButton { |
|
6105e9d9b7e1
add linkbutton (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
359
diff
changeset
|
41 | UiObject *obj; |
|
6105e9d9b7e1
add linkbutton (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
359
diff
changeset
|
42 | GtkWidget *widget; |
|
6105e9d9b7e1
add linkbutton (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
359
diff
changeset
|
43 | UiLinkType type; |
|
6105e9d9b7e1
add linkbutton (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
359
diff
changeset
|
44 | UiBool nofollow; |
|
6105e9d9b7e1
add linkbutton (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
359
diff
changeset
|
45 | char *link; |
|
6105e9d9b7e1
add linkbutton (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
359
diff
changeset
|
46 | ui_callback onclick; |
|
6105e9d9b7e1
add linkbutton (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
359
diff
changeset
|
47 | void *onclickdata; |
|
6105e9d9b7e1
add linkbutton (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
359
diff
changeset
|
48 | } UiLinkButton; |
|
6105e9d9b7e1
add linkbutton (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
359
diff
changeset
|
49 | |
|
308
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
50 | void ui_button_set_icon_name(GtkWidget *button, const char *icon_name); |
| 3 | 51 | |
|
308
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
52 | typedef void (*ui_toggled_func)(void*, void*); |
|
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
53 | |
|
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
54 | GtkWidget* ui_create_button( |
|
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
55 | UiObject *obj, |
|
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
56 | const char *label, |
|
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
57 | const char *icon, |
|
823
1e1df80772ed
implement tooltips for toolbar items (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
771
diff
changeset
|
58 | const char *tooltip, |
|
308
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
59 | ui_callback onclick, |
|
344
870dd3d41d83
add dialog window (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
308
diff
changeset
|
60 | void *userdata, |
|
350
70305d427f25
fix ui_scrolledwindow (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
344
diff
changeset
|
61 | int event_value, |
|
70305d427f25
fix ui_scrolledwindow (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
344
diff
changeset
|
62 | bool activate_event); |
|
308
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
63 | |
|
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
64 | void ui_setup_togglebutton( |
|
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
65 | UiObject *obj, |
|
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
66 | GtkWidget *togglebutton, |
|
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
67 | const char *label, |
|
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
68 | const char *icon, |
|
823
1e1df80772ed
implement tooltips for toolbar items (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
771
diff
changeset
|
69 | const char *tooltip, |
|
308
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
70 | const char *varname, |
|
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
71 | UiInteger *value, |
|
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
72 | ui_callback onchange, |
|
359
c51e58359db8
add option to automatically enable states with toggle buttons (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
350
diff
changeset
|
73 | void *onchangedata, |
|
c51e58359db8
add option to automatically enable states with toggle buttons (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
350
diff
changeset
|
74 | int enable_state); |
|
308
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
75 | |
|
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
76 | void ui_bind_togglebutton( |
|
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
77 | UiObject *obj, |
|
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
78 | GtkWidget *widget, |
|
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
79 | int64_t (*getfunc)(UiInteger*), |
|
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
80 | void (*setfunc)(UiInteger*, int64_t), |
|
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
81 | const char *varname, |
|
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
82 | UiInteger *value, |
|
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
83 | void (*toggled_callback)(void*, void*), |
|
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
84 | ui_callback onchange, |
|
359
c51e58359db8
add option to automatically enable states with toggle buttons (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
350
diff
changeset
|
85 | void *onchangedata, |
|
c51e58359db8
add option to automatically enable states with toggle buttons (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
350
diff
changeset
|
86 | void (*enable_state_func)(void*, void*), |
|
c51e58359db8
add option to automatically enable states with toggle buttons (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
350
diff
changeset
|
87 | int enable_state); |
|
276
376921880a7f
add initial support for headerbars (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
167
diff
changeset
|
88 | |
| 3 | 89 | // event wrapper |
| 90 | void ui_button_clicked(GtkWidget *widget, UiEventData *event); | |
| 91 | ||
|
142
46448d38885c
new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
140
diff
changeset
|
92 | |
|
308
4efc7c19e31d
simplify gtk button code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
93 | void ui_toggled_obs(void *widget, UiVarEventData *event); |
|
142
46448d38885c
new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
140
diff
changeset
|
94 | |
|
46448d38885c
new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
140
diff
changeset
|
95 | UIWIDGET ui_checkbox_var(UiObject *obj, char *label, UiVar *var); |
|
46448d38885c
new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
140
diff
changeset
|
96 | |
|
46448d38885c
new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
140
diff
changeset
|
97 | UIWIDGET ui_radiobutton_var(UiObject *obj, char *label, UiVar *var); |
|
46448d38885c
new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
140
diff
changeset
|
98 | |
|
297
a73c60adf188
port container to gtk4
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
99 | void ui_radio_obs(GtkToggleButton *widget, UiVarEventData *event); |
|
142
46448d38885c
new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
140
diff
changeset
|
100 | |
|
771
155f8722b927
implement switch (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
704
diff
changeset
|
101 | int64_t ui_switch_get(UiInteger *value); |
|
155f8722b927
implement switch (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
704
diff
changeset
|
102 | void ui_switch_set(UiInteger *value, int64_t i); |
|
155f8722b927
implement switch (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
704
diff
changeset
|
103 | |
|
144
29d98cff4f56
UiInteger uses int64 now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
142
diff
changeset
|
104 | int64_t ui_radiobutton_get(UiInteger *value); |
|
29d98cff4f56
UiInteger uses int64 now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
142
diff
changeset
|
105 | void ui_radiobutton_set(UiInteger *value, int64_t i); |
| 3 | 106 | |
|
704
6105e9d9b7e1
add linkbutton (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
359
diff
changeset
|
107 | char* ui_linkbutton_get(UiString *s); |
|
6105e9d9b7e1
add linkbutton (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
359
diff
changeset
|
108 | void ui_linkbutton_set(UiString *s, const char *str); |
|
6105e9d9b7e1
add linkbutton (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
359
diff
changeset
|
109 | |
| 3 | 110 | #ifdef __cplusplus |
| 111 | } | |
| 112 | #endif | |
| 113 | ||
| 114 | #endif /* BUTTON_H */ | |
| 115 |