Searched defs:resize (Results 1 - 10 of 10) sorted by relevance
/inkscape/src/ |
H A D | svg-view-widget.h | 45 /// Whether to resize automatically 46 bool resize; member in struct:SPSVGSPViewWidget 54 void setResize(bool resize, gdouble width, gdouble height);
|
H A D | svg-view-widget.cpp | 74 vw->resize = FALSE; 219 if (!svgvw->resize) { 232 if (svgvw->resize) { 251 void SPSVGSPViewWidget::setResize(bool resize, gdouble width, gdouble height) argument 253 g_return_if_fail( !resize || (width > 0.0) ); 254 g_return_if_fail( !resize || (height > 0.0) ); 256 this->resize = resize; 260 if ( resize ) {
|
/inkscape/src/util/ |
H A D | list-container.h | 176 void resize(size_type size, const_reference fill) { function in class:Inkscape::Util::ListContainer 201 void resize(size_type size) { function in class:Inkscape::Util::ListContainer 202 resize(size, value_type());
|
/inkscape/src/libgdl/ |
H A D | gdl-dock-item.h | 110 guint resize : 1; member in struct:_GdlDockItem
|
/inkscape/src/ui/dialog/ |
H A D | dock-behavior.cpp | 140 DockBehavior::resize(int width, int height) function in class:Inkscape::UI::Dialog::Behavior::DockBehavior 142 _dock_item.resize(width, height);
|
H A D | floating-behavior.cpp | 153 inline void FloatingBehavior::resize(int width, int height) { _d->resize(width, height); } function in class:Inkscape::UI::Dialog::Behavior::FloatingBehavior
|
H A D | dialog.cpp | 141 inline void Dialog::resize(int width, int height) { _behavior->resize(width, height); } function in class:Inkscape::UI::Dialog::Dialog 163 // resize the window to match; otherwise we leave it at its default 165 resize(w, h);
|
/inkscape/src/2geom/ |
H A D | bezier.h | 155 c_.resize(other.c_.size()); 218 c_.resize(std::distance(first, last)); 228 void resize (unsigned int n, Coord v = 0) { function in class:Geom::Bezier 229 c_.resize (n, v); 232 c_.resize(0);
|
H A D | pathvector.h | 199 void resize(size_type n) { _data.resize(n); } function in class:Geom::PathVector
|
/inkscape/src/ui/widget/ |
H A D | dock-item.cpp | 149 DockItem::resize(int width, int height) function in class:Inkscape::UI::Widget::DockItem 152 _window->resize(width, height);
|
Completed in 1278 milliseconds