diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2013-11-19 12:10:04 +0000 |
|---|---|---|
| committer | tavmjong-free <tavmjong@free.fr> | 2013-11-19 12:10:04 +0000 |
| commit | 9318c9c232cf73aa806c366381f144dc6df4d218 (patch) | |
| tree | 62ca4883e4ba7604ddbd7417b84699a44902485a /src/ui/dialog/object-properties.h | |
| parent | fix initialization bug, that leads to non-continuous path (diff) | |
| download | inkscape-9318c9c232cf73aa806c366381f144dc6df4d218.tar.gz inkscape-9318c9c232cf73aa806c366381f144dc6df4d218.zip | |
Add GUI for 'image-rendering'. Completes fix for blocker bug #1163449.
Removed two unused preference options for bitmaps.
(bzr r12823)
Diffstat (limited to 'src/ui/dialog/object-properties.h')
| -rw-r--r-- | src/ui/dialog/object-properties.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ui/dialog/object-properties.h b/src/ui/dialog/object-properties.h index 624a18246..721c12c56 100644 --- a/src/ui/dialog/object-properties.h +++ b/src/ui/dialog/object-properties.h @@ -41,6 +41,7 @@ #include <gtkmm/expander.h> #include <gtkmm/frame.h> #include <gtkmm/textview.h> +#include <gtkmm/comboboxtext.h> #include "ui/dialog/desktop-tracker.h" @@ -96,6 +97,8 @@ private: Gtk::Entry EntryLabel; //the entry for the object label Gtk::Label LabelTitle; //the label for the object title Gtk::Entry EntryTitle; //the entry for the object title + Gtk::Label LabelImageRendering; // the label for 'image-rendering' + Gtk::ComboBoxText ComboBoxTextImageRendering; // the combo box text for 'image-rendering' Gtk::Label LabelDescription; //the label for the object description UI::Widget::Frame FrameDescription; //the frame for the object description @@ -134,6 +137,11 @@ private: */ void label_changed(void); + /** + * Callback for 'image-rendering'. + */ + void image_rendering_changed(void); + /** * Callback for checkbox Lock. */ |
