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
|
/* ATK - Accessibility Toolkit
* Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include "atkwindow.h"
#include "atkmarshal.h"
enum {
ACTIVATE,
CREATE,
DEACTIVATE,
DESTROY,
MAXIMIZE,
MINIMIZE,
MOVE,
RESIZE,
RESTORE,
LAST_SIGNAL
};
static guint atk_window_signals[LAST_SIGNAL] = { 0 };
static guint
atk_window_add_signal (const gchar *name)
{
return g_signal_new (name,
ATK_TYPE_WINDOW,
G_SIGNAL_RUN_LAST,
0,
(GSignalAccumulator) NULL, NULL,
g_cclosure_marshal_VOID__VOID,
G_TYPE_NONE,
0);
}
typedef AtkWindowIface AtkWindowInterface;
G_DEFINE_INTERFACE (AtkWindow, atk_window, ATK_TYPE_OBJECT)
static void
atk_window_default_init (AtkWindowIface *iface)
{
static gboolean initialized = FALSE;
if (!initialized)
{
atk_window_signals[ACTIVATE] = atk_window_add_signal ("activate");
atk_window_signals[CREATE] = atk_window_add_signal ("create");
atk_window_signals[DEACTIVATE] = atk_window_add_signal ("deactivate");
atk_window_signals[DESTROY] = atk_window_add_signal ("destroy");
atk_window_signals[MAXIMIZE] = atk_window_add_signal ("maximize");
atk_window_signals[MINIMIZE] = atk_window_add_signal ("minimize");
atk_window_signals[MOVE] = atk_window_add_signal ("move");
atk_window_signals[RESIZE] = atk_window_add_signal ("resize");
atk_window_signals[RESTORE] = atk_window_add_signal ("restore");
initialized = TRUE;
}
}
|