Code

r10921@tres: ted | 2006-02-13 09:40:25 -0800
[inkscape.git] / src / extension / prefdialog.h
1 /*
2  * Authors:
3  *   Ted Gould <ted@gould.cx>
4  *
5  * Copyright (C) 2005 Authors
6  *
7  * Released under GNU GPL, read the file 'COPYING' for more information
8  */
10 #ifndef INKSCAPE_EXTENSION_DIALOG_H__
11 #define INKSCAPE_EXTENSION_DIALOG_H__
13 #include <glibmm/ustring.h>
15 #include <gdkmm/types.h>
17 #include <gtkmm/dialog.h>
18 #include <gtkmm/socket.h>
20 namespace Inkscape {
21 namespace Extension {
23 class PrefDialog : public Gtk::Dialog {
24     /** \brief  Help string if it exists */
25     gchar const * _help;
26     /** \brief  Name of the extension */
27     Glib::ustring _name;
29 public:
30     PrefDialog (Glib::ustring name, gchar const * help, Gtk::Widget * controls);
31 };
34 };}; /* namespace Inkscape, Extension */
36 #endif /* INKSCAPE_EXTENSION_DIALOG_H__ */
38 /*
39   Local Variables:
40   mode:c++
41   c-file-style:"stroustrup"
42   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
43   indent-tabs-mode:nil
44   fill-column:99
45   End:
46 */
47 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :