diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2008-03-13 07:55:00 +0000 |
|---|---|---|
| committer | joncruz <joncruz@users.sourceforge.net> | 2008-03-13 07:55:00 +0000 |
| commit | c682c18d4e2d527f4fc2532e9487ade050d8d705 (patch) | |
| tree | deed1940346c293f71ba30080a2b3d318cff33d9 /src/ui/dialog/input.h | |
| parent | added missing ';' (diff) | |
| download | inkscape-c682c18d4e2d527f4fc2532e9487ade050d8d705.tar.gz inkscape-c682c18d4e2d527f4fc2532e9487ade050d8d705.zip | |
Adding new extended input devices dialog
(bzr r5076)
Diffstat (limited to 'src/ui/dialog/input.h')
| -rw-r--r-- | src/ui/dialog/input.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/ui/dialog/input.h b/src/ui/dialog/input.h new file mode 100644 index 000000000..3404424da --- /dev/null +++ b/src/ui/dialog/input.h @@ -0,0 +1,38 @@ + +#ifndef INKSCAPE_UI_DIALOG_INPUT_H +#define INKSCAPE_UI_DIALOG_INPUT_H + + +#include "verbs.h" +#include "ui/widget/panel.h" + +namespace Inkscape { +namespace UI { +namespace Dialog { + + +class InputDialog : public UI::Widget::Panel +{ +public: + static InputDialog &getInstance(); + + InputDialog() : UI::Widget::Panel("", "dialogs.inputdevices", SP_VERB_DIALOG_INPUT) {} + virtual ~InputDialog() {} +}; + +} // namespace Dialog +} // namesapce UI +} // namespace Inkscape + +#endif // INKSCAPE_UI_DIALOG_INPUT_H + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 : |
