Code

Use radiobutton for "always snap" in the document-properties dialog
[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 "ui/widget/panel.h"
17 #include <glibmm/i18n.h>
19 namespace Inkscape {
20 namespace UI {
21 namespace Dialog {
23 class LayerEditor : public UI::Widget::Panel {
24 public:
25     LayerEditor();
26     virtual ~LayerEditor();
28     static int get_verb();
30     static LayerEditor &getInstance() { return *new LayerEditor(); }
32 protected:
34 private:
35     LayerEditor(LayerEditor const &d);
36     LayerEditor& operator=(LayerEditor const &d);
37 };
39 } // namespace Dialog
40 } // namespace UI
41 } // namespace Inkscape
43 #endif // INKSCAPE_UI_DIALOG_LAYER_EDITOR_H
45 /*
46   Local Variables:
47   mode:c++
48   c-file-style:"stroustrup"
49   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
50   indent-tabs-mode:nil
51   fill-column:99
52   End:
53 */
54 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :