Code

Super duper mega (fun!) commit: replaced encoding=utf-8 with fileencoding=utf-8 in...
[inkscape.git] / src / ui / widget / rendering-options.h
index 41134b81475e99c84d6d62e130f4efbb857bd4ec..8e047e6824eb06a9a539c2c2179da4d77c9c3b54 100644 (file)
@@ -13,7 +13,7 @@
 #ifndef INKSCAPE_UI_WIDGET_RENDERING_OPTIONS_H
 #define INKSCAPE_UI_WIDGET_RENDERING_OPTIONS_H
 
-#include "labelled.h"
+#include <gtkmm.h>
 #include "scalar.h"
 
 namespace Inkscape {
@@ -30,11 +30,19 @@ public:
 
 protected:
     // Radio buttons to select desired rendering
-    Gtk::RadioButton    *_radio_cairo;
-    Gtk::RadioButton    *_radio_bitmap;
-    Labelled    _widget_cairo;
-    Labelled    _widget_bitmap;
-    Scalar      _dpi; // DPI of bitmap to render
+    Gtk::Frame       _frame_backends;
+    Gtk::RadioButton _radio_vector;
+    Gtk::RadioButton _radio_bitmap;
+
+    // Bitmap options
+    Gtk::Frame       _frame_bitmap;
+    Scalar           _dpi; // DPI of bitmap to render
+
+    // Tooltip manager
+    Gtk::Tooltips    _tt;
+
+    // callback for bitmap button
+    void _toggled();
 };
 
 } // namespace Widget
@@ -52,4 +60,4 @@ protected:
   fill-column:99
   End:
 */
-// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :