Code

Warning cleanup
[inkscape.git] / src / ui / dialog / fill-and-stroke.h
index b573161d99d0d1fade8d1a609d60c01c3ebee2db..8c27d6d0a1d835a917f895e951865b807354e664 100644 (file)
@@ -33,14 +33,19 @@ namespace Dialog {
 
 class FillAndStroke : public Dialog {
 public:
-    FillAndStroke();
+    FillAndStroke(Behavior::BehaviorFactory behavior_factory);
     virtual ~FillAndStroke();
 
-    static FillAndStroke *create() { return new FillAndStroke(); }
+    static FillAndStroke *create(Behavior::BehaviorFactory behavior_factory)
+    { return new FillAndStroke(behavior_factory); }
 
     void selectionChanged(Inkscape::Application *inkscape,
                           Inkscape::Selection *selection);
 
+    void showPageFill();
+    void showPageStrokePaint();
+    void showPageStrokeStyle();
+
 protected:
     Gtk::Notebook   _notebook;