Searched defs:tv (Results 1 - 8 of 8) sorted by relevance

/inkscape/src/ui/widget/
H A Dentity-entry.cpp163 Gtk::TextView *tv = static_cast<Gtk::TextView*>(s->get_child()); local
164 tv->get_buffer()->set_text (text ? text : "");
174 Gtk::TextView *tv = static_cast<Gtk::TextView*>(s->get_child()); local
175 tv->get_buffer()->set_text (text.c_str());
188 Gtk::TextView *tv = static_cast<Gtk::TextView*>(s->get_child()); local
189 Glib::ustring text = tv->get_buffer()->get_text();
/inkscape/src/2geom/
H A Dsbasis.cpp473 double tv = t.valueAt(to); local
476 ret.at1() = tv;
/inkscape/src/libuemf/
H A Duemf_endian.c126 \param tv U_TRIVERTEX object.
130 PU_TRIVERTEX tv,
133 for(;count; count--, tv++){
134 U_swap4(tv,2); /* x,y */
135 U_swap2(&(tv->Red),4); /* Red, Green, Blue, Alpha */
141 \param tv U_GRADIENT3 object.
153 \param tv U_GRADIENT4 object.
129 trivertex_swap( PU_TRIVERTEX tv, unsigned int count ) argument
H A Duemf.c2797 \param tv pointer to the source U_TRIVERTEX structures
2803 PU_TRIVERTEX trivertex_transform(PU_TRIVERTEX tv, int count, U_XFORM xform){ argument
2809 x = (float) tv[i].x;
2810 y = (float) tv[i].y;
2811 newtvs[i] = tv[i];
/inkscape/src/extension/internal/
H A Demf-inout.cpp629 U_COLORREF trivertex_to_colorref(U_TRIVERTEX tv){ argument
631 uc.Red = tv.Red >> 8;
632 uc.Green = tv.Green >> 8;
633 uc.Blue = tv.Blue >> 8;
634 uc.Reserved = tv.Alpha >> 8; // Not used
3437 U_TRIVERTEX *tv = (U_TRIVERTEX *)(((char *)lpEMFR) + sizeof(U_EMRGRADIENTFILL)); local
3446 fill_idx = add_gradient(d, pEmr->ulMode, tv[rcs[i].UpperLeft], tv[rcs[i].LowerRight]);
3447 tmp_rectangle << "\n\tM " << pix_to_xy( d, tv[rcs[i].UpperLeft ].x , tv[rc
[all...]
H A Demf-print.cpp975 U_TRIVERTEX tv; local
978 tv.x = (int32_t) round(Pt[X]);
979 tv.y = (int32_t) round(Pt[Y]);
980 tv.Red = uc.Red << 8;
981 tv.Green = uc.Green << 8;
982 tv.Blue = uc.Blue << 8;
983 tv.Alpha = uc.Reserved << 8; // EMF will ignore this
984 return(tv);
/inkscape/src/ui/dialog/
H A Dfilter-effects-dialog.cpp118 const Glib::ustring& tv, const Glib::ustring& fv,
122 _true_val(tv), _false_val(fv)
840 const Glib::ustring& tv, const Glib::ustring& fv, char* tip_text = NULL)
842 CheckButtonAttr* cb = new CheckButtonAttr(def, label, tv, fv, attr, tip_text);
117 CheckButtonAttr(bool def, const Glib::ustring& label, const Glib::ustring& tv, const Glib::ustring& fv, const SPAttributeEnum a, char* tip_text) argument
839 add_checkbutton(bool def, const SPAttributeEnum attr, const Glib::ustring& label, const Glib::ustring& tv, const Glib::ustring& fv, char* tip_text = NULL) argument
/inkscape/
H A Dbuildtool.cpp84 static int gettimeofday (struct timeval *tv, struct timezone *tz) argument
88 if (!tv)
92 tv->tv_sec = tb.time;
93 tv->tv_usec = tb.millitm * 1000 + 500;

Completed in 472 milliseconds