Code

these didn't compile for me. so let's try this.
[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 "dialog.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 Dialog {
28 public:
29     TextProperties();
30     virtual ~TextProperties();
32     static TextProperties *create() { return new TextProperties(); }
34 protected:
35     Gtk::Notebook  _notebook;
37     NotebookPage   _page_font;
38     NotebookPage   _page_text;
40 private:
41     TextProperties(TextProperties const &d);
42     TextProperties& operator=(TextProperties const &d);
43 };
45 } // namespace Dialog
46 } // namespace UI
47 } // namespace Inkscape
49 #endif // INKSCAPE_UI_DIALOG_TEXT_PROPERTIES_H
51 /*
52   Local Variables:
53   mode:c++
54   c-file-style:"stroustrup"
55   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
56   indent-tabs-mode:nil
57   fill-column:99
58   End:
59 */
60 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :