/inkscape/src/ui/dialog/ |
H A D | input.h | 23 class InputDialog : public UI::Widget::Panel 28 InputDialog() : UI::Widget::Panel("", "/dialogs/inputdevices", SP_VERB_DIALOG_INPUT) {}
|
H A D | pixelartdialog.h | 27 class PixelArtDialog : public UI::Widget::Panel 33 UI::Widget::Panel("", "/dialogs/pixelart", SP_VERB_SELECTION_PIXEL_ART)
|
H A D | tracedialog.h | 26 class TraceDialog : public UI::Widget::Panel 35 UI::Widget::Panel("", "/dialogs/trace", SP_VERB_SELECTION_TRACE)
|
H A D | tile.cpp | 30 : UI::Widget::Panel("", "/dialogs/gridtiler", SP_VERB_SELECTION_ARRANGE), 50 UI::Widget::Panel::on_show();
|
H A D | memory.h | 20 class Memory : public UI::Widget::Panel {
|
H A D | print-colors-preview-dialog.h | 23 class PrintColorsPreviewDialog : public UI::Widget::Panel {
|
H A D | extensions.h | 31 class ExtensionsPanel : public Inkscape::UI::Widget::Panel
|
H A D | object-attributes.h | 38 class ObjectAttributes : public Widget::Panel {
|
H A D | panel-dialog.h | 42 PanelDialogBase(UI::Widget::Panel &panel, char const */*prefs_path*/, int const /*verb_num*/, 49 virtual UI::Widget::Panel &getPanel() { return _panel; } 57 UI::Widget::Panel &_panel; 62 * Bridges UI::Widget::Panel and UI::Dialog::Dialog. 65 * Panel is the actual container for dialog child widgets (and from where the dialog 80 PanelDialog(UI::Widget::Panel &contents, char const *prefs_path, int const verb_num, 104 inline PanelDialog(UI::Widget::Panel &contents, char const *prefs_path, int const verb_num, 143 PanelDialog<B>::PanelDialog(Widget::Panel &panel, char const *prefs_path, int const verb_num, 177 UI::Widget::Panel &panel = P::getInstance(); 193 PanelDialog<Behavior::FloatingBehavior>::PanelDialog(UI::Widget::Panel [all...] |
H A D | tile.h | 48 class ArrangeDialog : public UI::Widget::Panel {
|
H A D | extension-editor.h | 28 class ExtensionEditor : public UI::Widget::Panel {
|
H A D | glyphs.h | 37 class GlyphsPanel : public Inkscape::UI::Widget::Panel
|
H A D | messages.h | 35 class Messages : public UI::Widget::Panel {
|
H A D | swatches.h | 30 class SwatchesPanel : public Inkscape::UI::Widget::Panel
|
H A D | document-metadata.h | 47 class DocumentMetadata : public Inkscape::UI::Widget::Panel {
|
H A D | fill-and-stroke.h | 34 class FillAndStroke : public UI::Widget::Panel {
|
H A D | fill-and-stroke.cpp | 46 : UI::Widget::Panel ("", "/dialogs/fillstroke", SP_VERB_DIALOG_FILL_STROKE), 93 Panel::setDesktop(desktop);
|
H A D | icon-preview.h | 42 class IconPreviewPanel : public UI::Widget::Panel
|
H A D | object-properties.h | 70 class ObjectProperties : public Widget::Panel {
|
H A D | symbols.h | 54 class SymbolsDialog : public UI::Widget::Panel {
|
H A D | livepatheffect-editor.h | 41 class LivePathEffectEditor : public UI::Widget::Panel {
|
H A D | messages.cpp | 46 : UI::Widget::Panel("", "/dialogs/messages", SP_VERB_DIALOG_DEBUG),
|
H A D | document-metadata.cpp | 65 : UI::Widget::Panel ("", "/dialogs/documentmetadata", SP_VERB_DIALOG_METADATA) 67 : UI::Widget::Panel ("", "/dialogs/documentmetadata", SP_VERB_DIALOG_METADATA),
|
/inkscape/src/ui/widget/ |
H A D | panel.cpp | 50 void Panel::prep() { 62 Panel::Panel(Glib::ustring const &label, gchar const *prefs_path, function in class:Inkscape::UI::Widget::Panel 82 Panel::~Panel() 87 void Panel::_popper(GdkEventButton* event) 96 void Panel::_init() 133 one->signal_activate().connect(sigc::bind<int, int>(sigc::mem_fun(*this, &Panel::_bounceCall), PANEL_SETTING_MODE, 0)); 134 two->signal_activate().connect(sigc::bind<int, int>(sigc::mem_fun(*this, &Panel::_bounceCall), PANEL_SETTING_MODE, 1)); 161 _item->signal_activate().connect(sigc::bind<int, int>(sigc::mem_fun(*this, &Panel [all...] |
H A D | panel.h | 59 * Inkscape::UI::Widget::Panel is a base class from which dockable dialogs 61 * Child widgets are private data members of Panel (no need to use pointers and 68 class Panel : public Gtk::Box { class in namespace:Inkscape::UI::Widget 70 class Panel : public Gtk::VBox { 77 * Construct a Panel. 83 Panel(Glib::ustring const &label = "", gchar const *prefs_path = 0, 87 virtual ~Panel();
|