Code

Ctrl+click in pen/pencil tool: Created dots are now selected; Alt is used for randomn...
[inkscape.git] / src / ui / dialog / text-properties.h
1 /**
2  * \brief Text Properties 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_TEXT_PROPERTIES_H
13 #define INKSCAPE_UI_DIALOG_TEXT_PROPERTIES_H
15 #include <gtkmm/notebook.h>
16 #include <glibmm/i18n.h>
18 #include "ui/widget/panel.h"
19 #include "ui/widget/notebook-page.h"
21 using namespace Inkscape::UI::Widget;
23 namespace Inkscape {
24 namespace UI {
25 namespace Dialog {
27 class TextProperties : public UI::Widget::Panel {
28 public:
29     TextProperties();
30     virtual ~TextProperties();
32     static int get_verb();
34     static TextProperties &getInstance() { return *new TextProperties(); }
36 protected:
37     Gtk::Notebook  _notebook;
39     NotebookPage   _page_font;
40     NotebookPage   _page_text;
42 private:
43     TextProperties(TextProperties const &d);
44     TextProperties& operator=(TextProperties const &d);
45 };
47 } // namespace Dialog
48 } // namespace UI
49 } // namespace Inkscape
51 #endif // INKSCAPE_UI_DIALOG_TEXT_PROPERTIES_H
53 /*
54   Local Variables:
55   mode:c++
56   c-file-style:"stroustrup"
57   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
58   indent-tabs-mode:nil
59   fill-column:99
60   End:
61 */
62 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :