Code

r10950@tres: ted | 2006-02-16 08:36:49 -0800
[inkscape.git] / src / extension / helpdialog.h
1 /*
2  * Authors:
3  *   Ted Gould <ted@gould.cx>
4  *
5  * Copyright (C) 2006 Authors
6  *
7  * Released under GNU GPL, read the file 'COPYING' for more information
8  */
10 #ifndef INKSCAPE_EXTENSION_HELP_DIALOG_H__
11 #define INKSCAPE_EXTENSION_HELP_DIALOG_H__
13 #include <glibmm/ustring.h>
15 #include <gdkmm/types.h>
16 #include <gtkmm/dialog.h>
18 namespace Inkscape {
19 namespace Extension {
21 class HelpDialog : public Gtk::Dialog {
23 public:
24     HelpDialog (Glib::ustring name, gchar const * help);
25 };
28 };}; /* namespace Inkscape, Extension */
30 #endif /* INKSCAPE_EXTENSION_HELP_DIALOG_H__ */
32 /*
33   Local Variables:
34   mode:c++
35   c-file-style:"stroustrup"
36   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
37   indent-tabs-mode:nil
38   fill-column:99
39   End:
40 */
41 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :