Code

Line-end fix
[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     : UI::Widget::Panel("", "dialogs.export", SP_VERB_FILE_EXPORT),
25       _page_export(1, 1)
26 {
27     _getContents()->set_spacing(4);
29     // Notebook for individual transformations
30     _getContents()->pack_start(_notebook, true, true);
32     _notebook.append_page(_page_export, _("Export"));
34     // TODO:  Insert widgets
36     show_all_children();
37 }
39 Export::~Export() 
40 {
41 }
43 } // namespace Dialog
44 } // namespace UI
45 } // namespace Inkscape
47 /*
48   Local Variables:
49   mode:c++
50   c-file-style:"stroustrup"
51   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
52   indent-tabs-mode:nil
53   fill-column:99
54   End:
55 */
56 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :