Code

noop: reverted one line of commit #17642 (it's safe to call g_free with NULL)
[inkscape.git] / src / ui / dialog / export.h
1 /**
2  * \brief Export dialog
3  *
4  * Authors:
5  *   Bryce W. Harrington <bryce@bryceharrington.org>
6  *
7  * Copyright (C) 2004, 2005 Authors
8  *
9  * Released under GNU GPL.  Read the file 'COPYING' for more information.
10  */
12 #ifndef INKSCAPE_UI_DIALOG_EXPORT_H
13 #define INKSCAPE_UI_DIALOG_EXPORT_H
15 #include <gtkmm/notebook.h>
16 #include <glibmm/i18n.h>
18 #include "ui/widget/panel.h"
19 #include "ui/widget/notebook-page.h"
21 using namespace Inkscape::UI::Widget;
23 namespace Inkscape {
24 namespace UI {
25 namespace Dialog {
27 class Export : public UI::Widget::Panel {
28 public:
29     Export();
30     virtual ~Export();
32     static Export& getInstance() { return *new Export(); }
34 protected:
35     Gtk::Notebook  _notebook;
37     NotebookPage   _page_export;
39 private:
40     Export(Export const &d);
41     Export& operator=(Export const &d);
42 };
44 } // namespace Dialog
45 } // namespace UI
46 } // namespace Inkscape
48 #endif // INKSCAPE_UI_DIALOG_EXPORT_H
50 /*
51   Local Variables:
52   mode:c++
53   c-file-style:"stroustrup"
54   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
55   indent-tabs-mode:nil
56   fill-column:99
57   End:
58 */
59 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :