Code

added files from Gustav Broberg's patch
[inkscape.git] / src / ui / dialog / aboutbox.h
1 /**
2  * \brief About Widget - Adds the "about" doc to the Gnome::UI::About Class
3  *
4  * The standard Gnome::UI::About class doesn't include a place to stuff
5  * a renderable View that holds the classic Inkscape "about.svg".
6  *
7  * Author:
8  *   Kees Cook <kees@outflux.net>
9  *
10  * Copyright (C) 2005 Kees Cook
11  *
12  * Released under GNU GPL v2+.  Read the file 'COPYING' for more information.
13  */
15 #ifndef INKSCAPE_UI_DIALOG_ABOUTBOX_H
16 #define INKSCAPE_UI_DIALOG_ABOUTBOX_H
18 #include <gtkmm/dialog.h>
20 namespace Inkscape {
21 namespace UI {
22 namespace Dialog {
24 class AboutBox : public Gtk::Dialog {
25 public:
26     static void show_about();
27     static void hide_about();
29 private:
30     AboutBox();
32     virtual void on_response(int response_id);
33 };
35 } // namespace Dialog
36 } // namespace UI
37 } // namespace Inkscape
39 #endif // INKSCAPE_UI_DIALOG_ABOUTBOX_H
41 /* 
42   Local Variables:
43   mode:c++
44   c-file-style:"stroustrup"
45   c-file-offsets:((innamespace . 0)(inline-open . 0))
46   indent-tabs-mode:nil
47   fill-column:99
48   End:
49 */
50 // vim: filetype=c++:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :