blob: 41863357dc0d50f8ab127e6aaa81d7f0de3f3c38 (
plain)
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
|
#ifndef __SP_BUTTON_H__
#define __SP_BUTTON_H__
/*
* Generic button widget
*
* Author:
* Lauris Kaplinski <lauris@kaplinski.com>
*
* Copyright (C) 2002 Lauris Kaplinski
*
* This code is in public domain
*/
#define SP_TYPE_BUTTON (sp_button_get_type ())
#define SP_BUTTON(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), SP_TYPE_BUTTON, SPButton))
#define SP_IS_BUTTON(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), SP_TYPE_BUTTON))
#include <gtk/gtk.h>
#include <sigc++/sigc++.h>
#include "helper/action.h"
#include "icon-size.h"
typedef enum {
SP_BUTTON_TYPE_NORMAL,
SP_BUTTON_TYPE_TOGGLE
} SPButtonType;
struct SPBChoiceData {
guchar *px;
};
struct SPButton {
GtkToggleButton widget;
SPButtonType type;
Inkscape::IconSize lsize;
unsigned int psize;
SPAction *action;
SPAction *doubleclick_action;
sigc::connection c_set_active;
sigc::connection c_set_sensitive;
};
struct SPButtonClass {
GtkToggleButtonClass parent_class;
};
#define SP_BUTTON_IS_DOWN(b) gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (b))
GType sp_button_get_type (void);
GtkWidget *sp_button_new (Inkscape::IconSize size, SPButtonType type, SPAction *action, SPAction *doubleclick_action);
void sp_button_toggle_set_down (SPButton *button, gboolean down);
GtkWidget *sp_button_new_from_data (Inkscape::IconSize size,
SPButtonType type,
Inkscape::UI::View::View *view,
const gchar *name,
const gchar *tip);
#endif
|