Code

moving trunk for module inkscape
[inkscape.git] / src / ui / dialog / export.cpp
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 #ifdef HAVE_CONFIG_H
13 # include <config.h>
14 #endif
16 #include "export.h"
17 #include "verbs.h"
19 namespace Inkscape {
20 namespace UI {
21 namespace Dialog {
23 Export::Export() 
24     : Dialog ("dialogs.export", SP_VERB_FILE_EXPORT),
25       _page_export(1, 1)
26 {
27     // Top level vbox
28     Gtk::VBox *vbox = get_vbox();
29     vbox->set_spacing(4);
31     // Notebook for individual transformations
32     vbox->pack_start(_notebook, true, true);
34     _notebook.append_page(_page_export, _("Export"));
36     // TODO:  Insert widgets
38     show_all_children();
39 }
41 Export::~Export() 
42 {
43 }
45 } // namespace Dialog
46 } // namespace UI
47 } // namespace Inkscape
49 /*
50   Local Variables:
51   mode:c++
52   c-file-style:"stroustrup"
53   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
54   indent-tabs-mode:nil
55   fill-column:99
56   End:
57 */
58 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :