/inkscape/src/libgdl/ |
H A D | gdl-dock-notebook.c | 29 #include "gdl-dock-notebook.h" 143 "style \"gdl-dock-notebook-default\" {\n" 148 "style : gtk \"gdl-dock-notebook-default\"\n"); 177 gdl_dock_notebook_init (GdlDockNotebook *notebook) argument 181 item = GDL_DOCK_ITEM (notebook); 183 /* create the container notebook */ 185 gtk_widget_set_parent (item->child, GTK_WIDGET (notebook)); 266 GdlDockNotebook *notebook; local 270 notebook = GDL_DOCK_NOTEBOOK (data); 287 if (GDL_DOCK_ITEM_USER_ACTION (notebook) 523 GdlDockNotebook *notebook; local [all...] |
H A D | gdl-dock-item.c | 43 #include "gdl-dock-notebook.h" 1511 new_parent = g_object_new (gdl_dock_object_type_from_nick ("notebook"), 1597 GdlDockItem* notebook = GDL_DOCK_ITEM (gdl_dock_object_get_parent_object (requestor)); local 1598 gtk_notebook_set_current_page (GTK_NOTEBOOK (notebook->child), 1599 gtk_notebook_page_num (GTK_NOTEBOOK (notebook->child), GTK_WIDGET (requestor)));
|
/inkscape/src/ui/dialog/ |
H A D | tile.h | 24 #include <gtkmm/notebook.h>
|
H A D | extension-editor.cpp | 24 #include <gtkmm/notebook.h> 42 * is only used as a list. And the right side is a notebook of information 80 Gtk::Notebook * notebook = Gtk::manage(new Gtk::Notebook()); local 81 notebook->append_page(_notebook_info, *Gtk::manage(new Gtk::Label(_("Information")))); 82 notebook->append_page(_notebook_help, *Gtk::manage(new Gtk::Label(_("Help")))); 83 notebook->append_page(_notebook_params, *Gtk::manage(new Gtk::Label(_("Parameters")))); 84 vbox_page->pack_start(*notebook, true, true, 0);
|
H A D | document-metadata.h | 23 #include <gtkmm/notebook.h>
|
H A D | fill-and-stroke.h | 22 #include <gtkmm/notebook.h>
|
H A D | text-edit.h | 26 #include <gtkmm/notebook.h> 188 Gtk::Notebook notebook; member in class:Inkscape::UI::Dialog::TextEdit
|
H A D | transformation.h | 15 #include <gtkmm/notebook.h> 19 #include "ui/widget/notebook-page.h"
|
H A D | tracedialog.cpp | 19 #include <gtkmm/notebook.h> 111 Gtk::Notebook notebook; member in class:Inkscape::UI::Dialog::TraceDialogImpl 500 //### begin notebook 684 notebook.append_page(modePageBox, _("_Mode"), true); 753 notebook.append_page(optionsPageBox, _("O_ptions"), true); 760 notebook.append_page(potraceCreditsVBox, _("Credits")); 762 //### end notebook 764 leftVBox.pack_start(notebook, true, true, MARGIN);
|
H A D | aboutbox.cpp | 26 #include <gtkmm/notebook.h>
|
H A D | document-properties.h | 21 #include <gtkmm/notebook.h>
|
H A D | text-edit.cpp | 211 notebook.append_page(font_vbox, font_label); 212 notebook.append_page(text_vbox, text_label); 213 notebook.append_page(vari_vbox, vari_label); 224 contents->pack_start(notebook, true, true);
|
H A D | filter-effects-dialog.h | 28 #include <gtkmm/notebook.h>
|
H A D | inkscape-preferences.h | 32 #include <gtkmm/notebook.h>
|
H A D | ocaldialogs.cpp | 34 #include <gtkmm/notebook.h>
|
H A D | svg-fonts-dialog.cpp | 21 #include <gtkmm/notebook.h>
|
H A D | input.cpp | 32 #include <gtkmm/notebook.h>
|
/inkscape/src/ui/widget/ |
H A D | color-notebook.cpp | 3 * A notebook with RGB, CMYK, CMS, HSL, and Wheel pages - implementation 29 #include <gtkmm/notebook.h> 44 #include "ui/widget/color-notebook.h" 107 Gtk::Notebook *notebook = Gtk::manage(new Gtk::Notebook); local 108 notebook->show(); 109 notebook->set_show_border(false); 110 notebook->set_show_tabs(false); 111 _book = GTK_WIDGET(notebook->gobj()); 161 attach(*notebook, 0, row, 2, 1); 163 attach(*notebook, 280 _onPageSwitched(GtkNotebook *notebook, GtkWidget *page, guint page_num, ColorNotebook *colorbook) argument [all...] |
H A D | color-notebook.h | 3 * A notebook with RGB, CMYK, CMS, HSL, and Wheel pages 61 static void _onPageSwitched(GtkNotebook *notebook, GtkWidget *page, guint page_num, ColorNotebook *colorbook);
|
/inkscape/src/extension/param/ |
H A D | notebook.cpp | 22 #include <gtkmm/notebook.h> 33 #include "notebook.h" 114 is typically done in the creation of the notebook and defined 191 * Creates a notebookpage widget for a notebook. 193 * Builds a notebook page (a vbox) and puts parameters on it. 338 /** A special category of Gtk::Notebook to handle notebook parameters. */ 365 * Respond to the selected page of notebook changing. 367 * ParamNotebook. The change is only reported when the notebook 382 /** Search the parameter's name in the notebook content. */ 421 * Creates a Notebook widget for a notebook paramete [all...] |