Code

Changed preference to use file chooser button
[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 "dialog.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 Dialog {
28 public:
29     Export(Behavior::BehaviorFactory behavior_factory);
30     virtual ~Export();
32     static Export *create(Behavior::BehaviorFactory behavior_factory) 
33     { return new Export(behavior_factory); }
35 protected:
36     Gtk::Notebook  _notebook;
38     NotebookPage   _page_export;
40 private:
41     Export(Export const &d);
42     Export& operator=(Export const &d);
43 };
45 } // namespace Dialog
46 } // namespace UI
47 } // namespace Inkscape
49 #endif // INKSCAPE_UI_DIALOG_EXPORT_H
51 /*
52   Local Variables:
53   mode:c++
54   c-file-style:"stroustrup"
55   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
56   indent-tabs-mode:nil
57   fill-column:99
58   End:
59 */
60 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :