Code

remove icon prerender time messages
[inkscape.git] / src / widgets / toolbox.h
1 #ifndef SEEN_TOOLBOX_H
2 #define SEEN_TOOLBOX_H
4 /**
5  * \brief Main toolbox
6  *
7  * Authors:
8  *   Lauris Kaplinski <lauris@kaplinski.com>
9  *   Frank Felfe <innerspace@iname.com>
10  *
11  * Copyright (C) 1999-2002 Authors
12  * Copyright (C) 2001-2002 Ximian, Inc.
13  *
14  * Released under GNU GPL, read the file 'COPYING' for more information
15  */
17 #include <gtk/gtkstyle.h>
18 #include <gtk/gtktooltips.h>
20 #include "forward.h"
22 GtkWidget *sp_tool_toolbox_new(void);
23 void sp_tool_toolbox_set_desktop(GtkWidget *toolbox, SPDesktop *desktop);
25 GtkWidget *sp_aux_toolbox_new(void);
26 void sp_aux_toolbox_set_desktop(GtkWidget *toolbox, SPDesktop *desktop);
28 GtkWidget *sp_commands_toolbox_new(void);
29 void sp_commands_toolbox_set_desktop(GtkWidget *toolbox, SPDesktop *desktop);
31 void show_aux_toolbox(GtkWidget *toolbox);
33 GtkWidget *sp_toolbox_button_normal_new_from_verb(GtkWidget *t,
34                                                   GtkIconSize size,
35                                                   Inkscape::Verb * verb,
36                                                   Inkscape::UI::View::View *view,
37                                                   GtkTooltips *tt);
39 void aux_toolbox_space(GtkWidget *tb, gint space);
41 // utility
42 void sp_toolbox_add_label(GtkWidget *tbl, gchar const *title, bool wide = true);
46 #endif /* !SEEN_TOOLBOX_H */
48 /*
49   Local Variables:
50   mode:c++
51   c-file-style:"stroustrup"
52   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
53   indent-tabs-mode:nil
54   fill-column:99
55   End:
56 */
57 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :