Searched defs:vbox (Results 1 - 25 of 26) sorted by relevance

12

/inkscape/src/extension/
H A Derror-file.cpp60 Gtk::Box * vbox = get_content_area(); local
62 Gtk::Box * vbox = get_vbox(); local
68 vbox->pack_start(*checkbutton, true, false, 5);
78 vbox->pack_start( *extens, true, true );
/inkscape/src/ui/dialog/
H A Dpanel-dialog.h148 Gtk::Box *vbox = get_vbox(); local
152 vbox->pack_start(_panel, true, true, 0);
198 Gtk::Box *vbox = get_vbox(); local
201 vbox->pack_start(_panel, true, true, 0);
H A Dxml-tree.cpp870 GtkWidget *cancel, *vbox, *bbox, *sep; local
885 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 4);
886 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
888 vbox = gtk_vbox_new(FALSE, 4);
891 gtk_container_add(GTK_CONTAINER(new_window), vbox); local
894 gtk_box_pack_start(GTK_BOX(vbox), GTK_WIDGET(name_entry->gobj()), FALSE, TRUE, 0);
902 gtk_box_pack_start(GTK_BOX(vbox), sep, FALSE, TRUE, 0);
912 gtk_box_pack_start(GTK_BOX(vbox), bbox, FALSE, TRUE, 0);
H A Dfiledialogimpl-gtkmm.cpp139 Gtk::VBox *vbox = Glib::wrap(gobj()); local
140 vbox->pack_start(*viewerGtk, TRUE, TRUE, 0);
H A Docaldialogs.cpp104 Gtk::VBox *vbox = get_vbox();
113 vbox->pack_start(fileBox);
208 Gtk::VBox *vbox = get_vbox();
226 vbox->pack_start(userBox);
230 vbox->pack_start(passBox);
1211 Gtk::VBox *vbox = new Gtk::VBox(false, 0); local
1255 add(*vbox);
1256 vbox->pack_start(hbox_tags, false, false);
1257 vbox->pack_start(hbox_files, true, true);
1258 vbox
[all...]
/inkscape/src/widgets/
H A Dgradient-vector.h39 GtkBox vbox; member in struct:SPGradientVectorSelector
41 GtkVBox vbox;
H A Dsp-color-selector.h68 GtkBox vbox; member in struct:SPColorSelector
70 GtkVBox vbox;
H A Dgradient-selector.h49 GtkBox vbox; member in struct:SPGradientSelector
51 GtkVBox vbox;
H A Dpaint-selector.h44 GtkBox vbox; member in struct:SPPaintSelector
46 GtkVBox vbox;
H A Dspw-utilities.cpp144 * Creates a checkbutton widget and adds it to a vbox.
147 GtkWidget *spw_vbox_checkbutton(GtkWidget *dialog, GtkWidget *vbox, argument
151 g_assert (vbox != NULL);
157 gtk_box_pack_start (GTK_BOX (vbox), b, FALSE, FALSE, 0);
H A Ddesktop-widget.h76 // The root vbox of the window layout.
77 GtkWidget *vbox; member in struct:SPDesktopWidget
/inkscape/src/live_effects/parameter/
H A Doriginalpatharray.cpp140 Gtk::VBox* vbox = Gtk::manage(new Gtk::VBox()); local
143 vbox->pack_start(_scroller, Gtk::PACK_EXPAND_WIDGET);
194 vbox->pack_end(*hbox, Gtk::PACK_SHRINK);
196 vbox->show_all_children(true);
198 return vbox;
/inkscape/src/extension/param/
H A Dnotebook.cpp193 * Builds a notebook page (a vbox) and puts parameters on it.
201 Gtk::VBox * vbox = Gtk::manage(new Gtk::VBox); local
202 vbox->set_border_width(5);
211 vbox->pack_start(*widg, false, false, 2);
221 vbox->show();
223 return dynamic_cast<Gtk::Widget *>(vbox);
H A Dradiobutton.cpp309 Gtk::Box * vbox = Gtk::manage(new Gtk::Box(Gtk::ORIENTATION_VERTICAL, 0)); local
310 vbox->set_homogeneous(false);
313 Gtk::VBox * vbox = Gtk::manage(new Gtk::VBox(false, 0)); local
325 vbox->pack_start(*cbt, false, false);
349 vbox->pack_start(*radio, true, true);
362 vbox->show();
363 hbox->pack_end(*vbox, false, false);
/inkscape/src/live_effects/
H A Dlpe-lattice2.cpp230 Gtk::VBox * vbox = Gtk::manage( new Gtk::VBox(Effect::newWidget()) ); local
232 vbox->set_border_width(5);
233 vbox->set_homogeneous(false);
234 vbox->set_spacing(6);
242 vbox->pack_start(*hbox, true,true,2);
255 vbox->pack_start(*widg, true, true, 2);
274 vbox->pack_start(*expander, true, true, 2);
276 return dynamic_cast<Gtk::Widget *>(vbox);
H A Dlpe-perspective_path.cpp211 Gtk::VBox * vbox = Gtk::manage( new Gtk::VBox(Effect::newWidget()) ); local
213 vbox->set_border_width(5);
221 vbox->pack_start(*widg, true, true, 2);
240 vbox->pack_start(*perspectiveId, true, true, 2);
246 vbox->pack_start(*apply3DWidget, true, true,2);
247 return dynamic_cast<Gtk::Widget *>(vbox);
H A Dlpe-roughen.cpp110 Gtk::VBox *vbox = Gtk::manage(new Gtk::VBox(Effect::newWidget())); local
111 vbox->set_border_width(5);
112 vbox->set_homogeneous(false);
113 vbox->set_spacing(2);
124 vbox->pack_start(*method_label, false, false, 2);
125 vbox->pack_start(*Gtk::manage(new Gtk::HSeparator()),
133 vbox->pack_start(*displace_x_label, false, false, 2);
134 vbox->pack_start(*Gtk::manage(new Gtk::HSeparator()),
142 vbox->pack_start(*global_rand, false, false, 2);
143 vbox
[all...]
H A Dlpe-simplify.cpp82 Gtk::VBox * vbox = Gtk::manage( new Gtk::VBox(Effect::newWidget()) ); local
84 vbox->set_border_width(5);
85 vbox->set_homogeneous(false);
86 vbox->set_spacing(2);
112 vbox->pack_start(*widg, true, true, 2);
125 vbox->pack_start(*buttons,true, true, 2);
126 return dynamic_cast<Gtk::Widget *>(vbox);
H A Dlpe-transform_2pts.cpp270 Gtk::VBox *vbox = Gtk::manage(new Gtk::VBox(Effect::newWidget())); local
272 vbox->set_border_width(5);
273 vbox->set_homogeneous(false);
274 vbox->set_spacing(6);
295 vbox->pack_start(*widg, true, true, 2);
337 vbox->pack_start(*widg, true, true, 2);
352 vbox->pack_start(*button1, true, true, 2);
353 vbox->pack_start(*button2, true, true, 2);
354 vbox->pack_start(*button3, true, true, 2);
355 vbox
[all...]
H A Dlpe-bspline.cpp88 Gtk::VBox *vbox = Gtk::manage(new Gtk::VBox(Effect::newWidget())); local
90 vbox->set_border_width(5);
108 vbox->pack_start(*buttons, true, true, 2);
130 vbox->pack_start(*widg, true, true, 2);
142 return dynamic_cast<Gtk::Widget *>(vbox);
H A Dlpe-perspective-envelope.cpp245 Gtk::VBox * vbox = Gtk::manage( new Gtk::VBox(Effect::newWidget()) ); local
247 vbox->set_border_width(5);
248 vbox->set_homogeneous(false);
249 vbox->set_spacing(6);
270 vbox->pack_start(*handles, false, false, 2);
291 vbox->pack_start(*widg, true, true, 2);
304 vbox->pack_start(*hbox_up_handles,true, true, 2);
308 vbox->pack_start(*hbox_middle, false, true, 2);
309 vbox->pack_start(*hbox_down_handles, true, true, 2);
314 vbox
[all...]
H A Deffect.cpp671 Gtk::VBox * vbox = Gtk::manage( new Gtk::VBox() ); local
673 vbox->set_border_width(5);
682 vbox->pack_start(*widg, true, true, 2);
695 return dynamic_cast<Gtk::Widget *>(vbox);
H A Dlpe-fillet-chamfer.cpp97 Gtk::VBox *vbox = Gtk::manage(new Gtk::VBox(Effect::newWidget())); local
99 vbox->set_border_width(5);
100 vbox->set_homogeneous(false);
101 vbox->set_spacing(2);
105 vbox->pack_start(*advertaising, true, true, 2);
109 vbox->pack_start(*advertaising2, true, true, 2);
152 vbox->pack_start(*widg, true, true, 2);
182 vbox->pack_start(*filletContainer, true, true, 2);
183 vbox->pack_start(*chamferContainer, true, true, 2);
185 return vbox;
[all...]
/inkscape/src/display/
H A Dcanvas-grid.cpp302 Gtk::VBox * vbox = Gtk::manage( new Gtk::VBox() ); local
309 vbox->pack_start(*namelabel, true, true);
326 vbox->pack_start(*_rcb_enabled, true, true);
327 vbox->pack_start(*_rcb_visible, true, true);
328 vbox->pack_start(*_rcb_snap_visible_only, true, true);
330 vbox->pack_start(*gridwdg, true, true);
346 return dynamic_cast<Gtk::Widget *> (vbox);
/inkscape/src/extension/implementation/
H A Dscript.cpp943 Gtk::Box * vbox = warning.get_content_area(); local
945 Gtk::Box * vbox = warning.get_vbox(); local
963 vbox->pack_start(*scrollwindow, true, true, 5 /* fix these */);

Completed in 74 milliseconds

12