1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
|
/* GuiCheckButton.cpp
*
* Copyright (C) 1993-2011,2012 Paul Boersma
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
* pb 2007/12/26 extracted from Motif
* sdk 2007/12/27 gtk
* sdk 2008/03/24 gtk
* fb 2010/02/23 gtk
* pb 2010/05/15 prevented procreation of valueChanged events in GuiCheckButton_setValue
* pb 2010/06/14 HandleControlClick
* pb 2010/11/28 removed Motif
* pb 2011/04/06 C++
*/
#include "GuiP.h"
#undef iam
#define iam(x) x me = (x) void_me
#if win || mac
#define iam_checkbutton \
Melder_assert (widget -> widgetClass == xmToggleButtonWidgetClass); \
GuiCheckButton me = (GuiCheckButton) widget -> userData
#else
#define iam_checkbutton \
GuiCheckButton me = (GuiCheckButton) _GuiObject_getUserData (widget)
#endif
typedef struct structGuiCheckButton {
GuiObject widget;
void (*valueChangedCallback) (void *boss, GuiCheckButtonEvent event);
void *valueChangedBoss;
#if gtk
gulong valueChangedHandlerId;
#endif
} *GuiCheckButton;
#if gtk
static void _GuiGtkCheckButton_destroyCallback (GuiObject widget, gpointer void_me) {
(void) widget;
iam (GuiCheckButton);
Melder_free (me);
}
static void _GuiGtkCheckButton_valueChangedCallback (GuiObject widget, gpointer void_me) {
iam (GuiCheckButton);
struct structGuiCheckButtonEvent event = { widget };
if (my valueChangedCallback != NULL) {
my valueChangedCallback (my valueChangedBoss, & event);
}
}
#elif win
void _GuiWinCheckButton_destroy (GuiObject widget) {
iam_checkbutton;
_GuiNativeControl_destroy (widget);
Melder_free (me); // NOTE: my widget is not destroyed here
}
void _GuiWinCheckButton_handleClick (GuiObject widget) {
iam_checkbutton;
if (my valueChangedCallback != NULL) {
struct structGuiCheckButtonEvent event = { widget };
my valueChangedCallback (my valueChangedBoss, & event);
}
}
#elif mac
#if useCarbon
void _GuiMacCheckButton_destroy (GuiObject widget) {
iam_checkbutton;
_GuiNativeControl_destroy (widget);
Melder_free (me); // NOTE: my widget is not destroyed here
}
void _GuiMacCheckButton_handleClick (GuiObject widget, EventRecord *macEvent) {
iam_checkbutton;
_GuiMac_clipOnParent (widget);
bool clicked = HandleControlClick (widget -> nat.control.handle, macEvent -> where, macEvent -> modifiers, NULL);
GuiMac_clipOff ();
if (clicked) {
if (my valueChangedCallback != NULL) {
struct structGuiCheckButtonEvent event = { widget };
my valueChangedCallback (my valueChangedBoss, & event);
}
}
}
#else
#endif
#endif
GuiObject GuiCheckButton_create (GuiObject parent, int left, int right, int top, int bottom,
const wchar_t *buttonText, void (*valueChangedCallback) (void *boss, GuiCheckButtonEvent event), void *valueChangedBoss, unsigned long flags)
{
GuiCheckButton me = Melder_calloc_f (struct structGuiCheckButton, 1);
my valueChangedCallback = valueChangedCallback;
my valueChangedBoss = valueChangedBoss;
#if gtk
my widget = gtk_check_button_new_with_label (Melder_peekWcsToUtf8 (buttonText));
_GuiObject_setUserData (my widget, me);
_GuiObject_position (my widget, left, right, top, bottom);
if (parent && GTK_IS_BOX (parent)) {
gtk_container_add (GTK_CONTAINER (parent), GTK_WIDGET (my widget));
}
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (my widget), (flags & GuiCheckButton_SET) != 0);
if (flags & GuiCheckButton_INSENSITIVE) {
GuiObject_setSensitive (my widget, false);
}
g_signal_connect (G_OBJECT (my widget), "destroy", G_CALLBACK (_GuiGtkCheckButton_destroyCallback), me);
my valueChangedHandlerId = g_signal_connect (GTK_TOGGLE_BUTTON (my widget), "toggled", G_CALLBACK (_GuiGtkCheckButton_valueChangedCallback), me);
#elif win
my widget = _Gui_initializeWidget (xmToggleButtonWidgetClass, parent, buttonText);
_GuiObject_setUserData (my widget, me);
my widget -> isRadioButton = false;
my widget -> window = CreateWindow (L"button", _GuiWin_expandAmpersands (buttonText),
WS_CHILD | BS_AUTOCHECKBOX | WS_CLIPSIBLINGS,
my widget -> x, my widget -> y, my widget -> width, my widget -> height,
my widget -> parent -> window, (HMENU) 1, theGui.instance, NULL);
SetWindowLongPtr (my widget -> window, GWLP_USERDATA, (LONG_PTR) my widget);
SetWindowFont (my widget -> window, GetStockFont (ANSI_VAR_FONT), FALSE);
_GuiObject_position (my widget, left, right, top, bottom);
if (flags & GuiCheckButton_SET) {
Button_SetCheck (my widget -> window, BST_CHECKED);
}
if (flags & GuiCheckButton_INSENSITIVE) {
GuiObject_setSensitive (my widget, false);
}
#elif mac
#if useCarbon
my widget = _Gui_initializeWidget (xmToggleButtonWidgetClass, parent, buttonText);
_GuiObject_setUserData (my widget, me);
my widget -> isRadioButton = false;
CreateCheckBoxControl (my widget -> macWindow, & my widget -> rect, NULL,
(flags & GuiCheckButton_SET) != 0, true, & my widget -> nat.control.handle);
Melder_assert (my widget -> nat.control.handle != NULL);
SetControlReference (my widget -> nat.control.handle, (long) my widget);
my widget -> isControl = true;
_GuiNativeControl_setFont (my widget, 0, 13);
_GuiNativeControl_setTitle (my widget);
_GuiObject_position (my widget, left, right, top, bottom);
if (flags & GuiCheckButton_INSENSITIVE) {
GuiObject_setSensitive (my widget, false);
}
#else
#endif
#endif
return my widget;
}
GuiObject GuiCheckButton_createShown (GuiObject parent, int left, int right, int top, int bottom,
const wchar_t *buttonText, void (*valueChangedCallback) (void *boss, GuiCheckButtonEvent event), void *valueChangedBoss, unsigned long flags)
{
GuiObject me = GuiCheckButton_create (parent, left, right, top, bottom, buttonText, valueChangedCallback, valueChangedBoss, flags);
GuiObject_show (me);
return me;
}
bool GuiCheckButton_getValue (GuiObject widget) {
bool value = false;
#if gtk
value = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget)); // gtk_check_button inherits from gtk_toggle_button
#elif win
value = (Button_GetState (widget -> window) & 0x0003) == BST_CHECKED;
#elif mac
#if useCarbon
value = GetControlValue (widget -> nat.control.handle);
#else
#endif
#endif
return value;
}
void GuiCheckButton_setValue (GuiObject widget, bool value) {
/*
* The value should be set without calling the valueChanged callback.
*/
#if gtk
iam_checkbutton;
g_signal_handler_disconnect (GTK_TOGGLE_BUTTON (my widget), my valueChangedHandlerId);
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (my widget), value);
my valueChangedHandlerId = g_signal_connect (GTK_TOGGLE_BUTTON (my widget), "toggled", G_CALLBACK (_GuiGtkCheckButton_valueChangedCallback), me);
#elif win
Button_SetCheck (widget -> window, value ? BST_CHECKED : BST_UNCHECKED);
#elif mac
#if useCarbon
SetControlValue (widget -> nat.control.handle, value);
#else
#endif
#endif
}
/* End of file GuiCheckButton.cpp */
|