blob: 94a956de3fe4d11f54512a169c9379bf07afb7c1 (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
#ifndef SEEN_SP_BUTTON_H
#define SEEN_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++/connection.h>
#include "icon-size.h"
struct SPAction;
namespace Inkscape {
namespace UI {
namespace View {
class View;
}
}
}
typedef enum {
SP_BUTTON_TYPE_NORMAL,
SP_BUTTON_TYPE_TOGGLE
} SPButtonType;
struct SPBChoiceData {
guchar *px;
};
struct SPButton {
GtkToggleButton widget;
SPButtonType type;
GtkIconSize 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 (GtkIconSize size, SPButtonType type, SPAction *action, SPAction *doubleclick_action);
void sp_button_toggle_set_down (SPButton *button, gboolean down);
GtkWidget *sp_button_new_from_data (GtkIconSize size,
SPButtonType type,
Inkscape::UI::View::View *view,
const gchar *name,
const gchar *tip);
#endif // !SEEN_SP_BUTTON_H
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8 :
|