Home
last modified time | relevance | path

Searched refs:_rects (Results 1 – 25 of 53) sorted by relevance

123

/dports/devel/py-game/pygame-2.1.0/examples/
H A Dmidi.py639 _image_strip, _rects = key_images() variable in Keyboard
652 _updates, _image_strip, [_rects["black none"], _rects["black self"]], False
657 [_rects["white none"], _rects["white self"], _rects["white self-white"]],
663 _rects["white-left none"],
664 _rects["white-left self"],
666 _rects["white-left black"],
668 _rects["white-left all"],
675 _rects["white-center none"],
680 _rects["white-center all"],
687 _rects["white-right none"],
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/petka/objects/
H A Dtext.cpp184 _rects.resize(choices.size()); in QTextChoice()
186 _rects[i] = calculateBoundingBoxForText(_choices[i], *font); in QTextChoice()
187 w = MAX<int>(w, _rects[i].width()); in QTextChoice()
188 h += _rects[i].height(); in QTextChoice()
202 _rects[i].moveTo(0, y); in QTextChoice()
203 y += _rects[i].height(); in QTextChoice()
211 for (newChoice = 0; newChoice < _rects.size(); ++newChoice) { in onMouseMove()
212 if (_rects[newChoice].contains(p)) { in onMouseMove()
224 drawText(*s, _rects[i].top, 630, _choices[i], color, *font); in onMouseMove()
H A Dtext.h88 Common::Array<Common::Rect> _rects;
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/bladerunner/
H A Dzbuffer.cpp39 _rects[_count++] = rect; in add()
50 Common::Rect last = _rects[_count - 1]; in extendExisting()
54 if (last.intersects(_rects[i])) { in extendExisting()
55 _rects[i].extend(last); in extendExisting()
70 *rect = _rects[--_count]; in popRect()
H A Dzbuffer.h36 Common::Rect _rects[MAX_DIRTY_RECTS]; variable
/dports/games/scummvm/scummvm-2.5.1/engines/bladerunner/
H A Dzbuffer.cpp39 _rects[_count++] = rect; in add()
50 Common::Rect last = _rects[_count - 1]; in extendExisting()
54 if (last.intersects(_rects[i])) { in extendExisting()
55 _rects[i].extend(last); in extendExisting()
70 *rect = _rects[--_count]; in popRect()
H A Dzbuffer.h36 Common::Rect _rects[MAX_DIRTY_RECTS]; variable
/dports/cad/openroad/OpenROAD-2.0/src/OpenDB/src/defin/
H A DdefinPin.cpp244 _rects.push_back(PinRect(_layer, r)); in pinRect()
272 _rects.clear(); in portBegin()
287 if (!_rects.empty() || !_polygons.empty()) { in portEnd()
298 if (!_rects.empty()) { in portEnd()
299 for (auto itr = _rects.rbegin(); itr != _rects.rend(); ++itr) in portEnd()
H A DdefinPin.h98 std::vector<PinRect> _rects; variable
/dports/science/py-veusz/veusz-veusz-3.3.1/veusz/helpers/src/qtloops/
H A Dpolylineclip.h112 void addRect(const RotatedRectangle& rect) { _rects.append(rect); }; in addRect()
113 void reset() { _rects.clear(); }; in reset()
119 QVector<RotatedRectangle> _rects;
H A Dpolylineclip.cpp462 for(auto const &ir : _rects) in willOverlap()
473 for(auto const &rect : _rects) in debug()
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/ui/dialog/
H A Dspellcheck.cpp231 for(auto rect : _rects) { in clearRects()
235 _rects.clear(); in clearRects()
539 _rects.push_back(rect); in nextWord()
617 if (!_rects.empty()) { in deleteLastRect()
618 _rects.back()->hide(); in deleteLastRect()
619 delete _rects.back(); in deleteLastRect()
620 _rects.pop_back(); in deleteLastRect()
H A Dspellcheck.h181 std::vector<Inkscape::CanvasItemRect *> _rects; variable
/dports/games/scummvm/scummvm-2.5.1/engines/illusions/resources/
H A Dbackgroundresource.h128 PathLines *_rects; member
129 PathWalkRects() : _rects(0) {} in PathWalkRects()
130 ~PathWalkRects() { delete _rects; } in ~PathWalkRects() local
H A Dbackgroundresource.cpp189 _rects = new PathLines(); in load()
192 _rects->reserve(count); in load()
198 _rects->push_back(rect); in load()
477 PathLines *pl = _bgRes->_pathWalkRects->_rects; in initSurface()
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/illusions/resources/
H A Dbackgroundresource.h128 PathLines *_rects; member
129 PathWalkRects() : _rects(0) {} in PathWalkRects()
130 ~PathWalkRects() { delete _rects; } in ~PathWalkRects() local
H A Dbackgroundresource.cpp189 _rects = new PathLines(); in load()
192 _rects->reserve(count); in load()
198 _rects->push_back(rect); in load()
477 PathLines *pl = _bgRes->_pathWalkRects->_rects; in initSurface()
/dports/print/py-frescobaldi/frescobaldi-3.1.3/frescobaldi_app/qpageview/
H A Dlayout.py106 _rects = None variable in PageLayout
146 if self._rects:
147 return self._rects
148 r = self._rects = PageRects(self.displayPages())
220 self._rects = None
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/include/
H A Dorientation.h206 std::map<PredefinedRect, QRect> _rects;
253 const QRect &rect(PredefinedRect which) const { return _rects.at(which); } in rect()
/dports/science/py-veusz/veusz-veusz-3.3.1/veusz/helpers/src/recordpaint/
H A Drecordpaintengine.cpp195 _rects << rects[i]; in rectElement()
200 painter.drawRects(_rects); in paint()
204 QVector<T> _rects; member in __anon4929233c0111::rectElement
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/wx/lib/agw/
H A Dcubecolourdialog.py1849 self._rects = rects
1884 if self._rects[RED].Contains(point):
1889 elif self._rects[GREEN].Contains(point):
1894 elif self._rects[BLUE].Contains(point):
1947 self._rects[RED] = wx.Rect(pt.x - RECT_WIDTH, pt.y - RECT_WIDTH,
1957 point.y = self._rects[GREEN].GetTop() + RECT_WIDTH
1966 self._rects[GREEN] = wx.Rect(pt.x - RECT_WIDTH, pt.y - RECT_WIDTH,
1976 point.y = self._rects[BLUE].GetTop() + RECT_WIDTH
1985 self._rects[BLUE] = wx.Rect(pt.x - RECT_WIDTH, pt.y - RECT_WIDTH,
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/mohawk/
H A Dcstime_game.cpp69 _rects.push_back(rect); in loadFrom()
74 for (uint i = 0; i < _rects.size(); i++) in containsPoint()
75 if (_rects[i].contains(pos)) in containsPoint()
1230 for (uint j = 0; j < _hotspots[i].region._rects.size(); j++) { in drawHotspots()
1231 _vm->_gfx->drawRect(_hotspots[i].region._rects[j], 10 + 5*i); in drawHotspots()
/dports/games/scummvm/scummvm-2.5.1/engines/mohawk/
H A Dcstime_game.cpp69 _rects.push_back(rect); in loadFrom()
74 for (uint i = 0; i < _rects.size(); i++) in containsPoint()
75 if (_rects[i].contains(pos)) in containsPoint()
1232 for (uint j = 0; j < _hotspots[i].region._rects.size(); j++) { in drawHotspots()
1233 _vm->_gfx->drawRect(_hotspots[i].region._rects[j], 10 + 5*i); in drawHotspots()
/dports/science/kst2/kst-plot-38eddb5322a1d557f9d86ea95d456d76272941e3/src/libkstmath/
H A Dcurve.h220 QVector<QRectF> _rects; variable
/dports/net-im/chatterino2/chatterino2-2.3.4/src/widgets/splits/
H A DSplitContainer.hpp132 void setRects(std::vector<SplitContainer::DropRect> _rects);

123