Code

Adding new extended input devices dialog
[inkscape.git] / src / ui / dialog / input.h
2 #ifndef INKSCAPE_UI_DIALOG_INPUT_H
3 #define INKSCAPE_UI_DIALOG_INPUT_H
6 #include "verbs.h"
7 #include "ui/widget/panel.h"
9 namespace Inkscape {
10 namespace UI {
11 namespace Dialog {
14 class InputDialog : public UI::Widget::Panel
15 {
16 public:
17     static InputDialog &getInstance();
19     InputDialog() : UI::Widget::Panel("", "dialogs.inputdevices", SP_VERB_DIALOG_INPUT) {}
20     virtual ~InputDialog() {}
21 };
23 } // namespace Dialog
24 } // namesapce UI
25 } // namespace Inkscape
27 #endif // INKSCAPE_UI_DIALOG_INPUT_H
29 /*
30   Local Variables:
31   mode:c++
32   c-file-style:"stroustrup"
33   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
34   indent-tabs-mode:nil
35   fill-column:99
36   End:
37 */
38 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :