Code

make all-inkscape-files the default filter instead of all-images (do we need that...
[inkscape.git] / src / ui / dialog / layer-editor.h
1 /**
2  * \brief Layer Editor 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_LAYER_EDITOR_H
13 #define INKSCAPE_UI_DIALOG_LAYER_EDITOR_H
15 #include "dialog.h"
17 #include <glibmm/i18n.h>
19 namespace Inkscape {
20 namespace UI {
21 namespace Dialog {
23 class LayerEditor : public Dialog {
24 public:
25     LayerEditor();
26     virtual ~LayerEditor();
28     static LayerEditor *create() { return new LayerEditor(); }
30 protected:
32 private:
33     LayerEditor(LayerEditor const &d);
34     LayerEditor& operator=(LayerEditor const &d);
35 };
37 } // namespace Dialog
38 } // namespace UI
39 } // namespace Inkscape
41 #endif // INKSCAPE_UI_DIALOG_LAYER_EDITOR_H
43 /*
44   Local Variables:
45   mode:c++
46   c-file-style:"stroustrup"
47   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
48   indent-tabs-mode:nil
49   fill-column:99
50   End:
51 */
52 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :