Searched defs:frame (Results 1 - 8 of 8) sorted by relevance
/inkscape/src/ui/tools/ |
H A D | text-tool.h | 60 SPCanvasItem *frame; // hiliting the first frame of flowtext; FIXME: make this a list to accommodate arbitrarily many chained shapes member in class:Inkscape::UI::Tools::TextTool
|
H A D | text-tool.cpp | 89 , frame(NULL) 135 this->frame = sp_canvas_item_new(desktop->getControls(), SP_TYPE_CTRLRECT, NULL); 136 SP_CTRLRECT(this->frame)->setRectangle(Geom::Rect(Geom::Point(0, 0), Geom::Point(100, 100))); 137 SP_CTRLRECT(this->frame)->setColor(0x0000ff7f, false, 0); 138 sp_canvas_item_hide(this->frame); 232 if (this->frame) { 233 sp_canvas_item_destroy(this->frame); 234 this->frame = NULL; 586 this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("<b>Flowed text frame</b>: %s × %s"), xs->str, ys->str); 658 desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("The frame i 1559 SPItem *frame = SP_FLOWTEXT(tc->text)->get_frame (NULL); // first frame only local [all...] |
/inkscape/src/ui/dialog/ |
H A D | aboutbox.cpp | 198 Gtk::AspectFrame *frame=new Gtk::AspectFrame(); local 199 frame->unset_label(); 200 frame->set_shadow_type(Gtk::SHADOW_NONE); 201 frame->property_ratio() = width / height; 202 frame->add(*manage(Glib::wrap(v))); 204 return frame;
|
H A D | icon-preview.cpp | 29 #include <gtkmm/frame.h> 31 #include "ui/widget/frame.h" 190 Gtk::Frame *frame = new Gtk::Frame(); local 191 frame->set_shadow_type(Gtk::SHADOW_ETCHED_IN); 192 frame->add(*images[i]); 193 buttons[i]->set_icon_widget(*Gtk::manage(frame));
|
H A D | clonetiler.cpp | 811 GtkWidget *frame = gtk_frame_new (_("1. Pick from the drawing:")); local 812 gtk_box_pack_start (GTK_BOX (vvb), frame, FALSE, FALSE, 0); local 823 gtk_container_add(GTK_CONTAINER(frame), table); 895 GtkWidget *frame = gtk_frame_new (_("2. Tweak the picked value:")); local 896 gtk_box_pack_start (GTK_BOX (vvb), frame, FALSE, FALSE, VB_MARGIN); local 908 gtk_container_add(GTK_CONTAINER(frame), table); 944 GtkWidget *frame = gtk_frame_new (_("3. Apply the value to the clones':")); local 945 gtk_box_pack_start (GTK_BOX (vvb), frame, FALSE, FALSE, 0); local 956 gtk_container_add(GTK_CONTAINER(frame), table);
|
/inkscape/src/widgets/ |
H A D | paint-selector.h | 88 GtkWidget *frame, *selector; member in struct:SPPaintSelector
|
/inkscape/src/extension/internal/ |
H A D | latex-text-renderer.cpp | 406 SPRect *frame = dynamic_cast<SPRect *>(frame_item); local 407 if (!frame_item || !frame) { 413 Geom::Rect framebox = frame->getRect();
|
/inkscape/src/ |
H A D | sp-flowtext.cpp | 571 SPItem *frame = 0; local 588 frame = item; 597 SPUse *use = dynamic_cast<SPUse *>(frame); 599 frame = use->get_original(); 602 return frame; 607 SPItem const *frame = get_frame(NULL); local 609 return (frame && isAncestorOf(frame) && dynamic_cast<SPRect const *>(frame));
|
Completed in 37 milliseconds