Code

Move fit canvas button into PageSizer
[inkscape.git] / src / ui / dialog / fill-and-stroke.h
1 /**
2  * \brief Fill and Stroke 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_FILL_AND_STROKE_H
13 #define INKSCAPE_UI_DIALOG_FILL_AND_STROKE_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 FillAndStroke : public Dialog {
28 public:
29     FillAndStroke();
30     virtual ~FillAndStroke();
32     static FillAndStroke *create() { return new FillAndStroke(); }
34 protected:
35     Gtk::Notebook  _notebook;
37     NotebookPage   _page_fill;
38     NotebookPage   _page_stroke_paint;
39     NotebookPage   _page_stroke_style;
41 private:
42     FillAndStroke(FillAndStroke const &d);
43     FillAndStroke& operator=(FillAndStroke const &d);
44 };
46 } // namespace Dialog
47 } // namespace UI
48 } // namespace Inkscape
50 #endif // INKSCAPE_UI_DIALOG_FILL_AND_STROKE_H
52 /*
53   Local Variables:
54   mode:c++
55   c-file-style:"stroustrup"
56   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
57   indent-tabs-mode:nil
58   fill-column:99
59   End:
60 */
61 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :