Code

typo fixed
[inkscape.git] / src / ui / dialog / fill-and-stroke.cpp
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 #ifdef HAVE_CONFIG_H
13 # include <config.h>
14 #endif
16 #include "fill-and-stroke.h"
17 #include "verbs.h"
19 namespace Inkscape {
20 namespace UI {
21 namespace Dialog {
23 FillAndStroke::FillAndStroke() 
24     : Dialog ("dialogs.fillstroke", SP_VERB_DIALOG_FILL_STROKE),
25       _page_fill(1, 1),
26       _page_stroke_paint(1, 1),
27       _page_stroke_style(1, 1)
28 {
29     // Top level vbox
30     Gtk::VBox *vbox = get_vbox();
31     vbox->set_spacing(4);
33     // Notebook for individual transformations
34     vbox->pack_start(_notebook, true, true);
36     _notebook.append_page(_page_fill,         _("Fill"));
37     _notebook.append_page(_page_stroke_paint, _("Stroke Paint"));
38     _notebook.append_page(_page_stroke_style, _("Stroke Style"));
40     // TODO:  Insert widgets
42     show_all_children();
43 }
45 FillAndStroke::~FillAndStroke() 
46 {
47 }
49 } // namespace Dialog
50 } // namespace UI
51 } // namespace Inkscape
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 :