Searched refs:PRectangle (Results 1 - 18 of 18) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/
H A DPlatWX.h5 wxRect wxRectFromPRectangle(PRectangle prc);
6 PRectangle PRectangleFromwxRect(wxRect rc);
H A DPlatWX.cpp34 wxRect wxRectFromPRectangle(PRectangle prc) {
40 PRectangle PRectangleFromwxRect(wxRect rc) {
41 return PRectangle(rc.GetLeft(), rc.GetTop(),
192 virtual void RectangleDraw(PRectangle rc, ColourAllocated fore, ColourAllocated back);
193 virtual void FillRectangle(PRectangle rc, ColourAllocated back);
194 virtual void FillRectangle(PRectangle rc, Surface &surfacePattern);
195 virtual void RoundedRectangle(PRectangle rc, ColourAllocated fore, ColourAllocated back);
196 virtual void AlphaRectangle(PRectangle rc, int cornerSize, ColourAllocated fill, int alphaFill,
198 virtual void Ellipse(PRectangle rc, ColourAllocated fore, ColourAllocated back);
199 virtual void Copy(PRectangle r
[all...]
H A DScintillaWX.h110 virtual void CreateCallTipWindow(PRectangle rc);
165 void ClipChildren(wxDC& dc, PRectangle rect);
H A DScintillaWX.cpp434 PRectangle rcText = GetTextRectangle();
577 void ScintillaWX::CreateCallTipWindow(PRectangle) {
710 PRectangle rc = ct.CallTipStart(currentPos, pt,
719 PRectangle rcClient = GetClientRectangle();
759 PRectangle rcClient = GetClientRectangle();
777 PRectangle rcText = GetTextRectangle();
1122 void ScintillaWX::ClipChildren(wxDC& WXUNUSED(dc), PRectangle WXUNUSED(rect))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/src/
H A DIndicator.h19 void Draw(Surface *surface, const PRectangle &rc, const PRectangle &rcLine);
H A DCallTip.h18 PRectangle rectUp; // rectangle of last up angle in the tip
19 PRectangle rectDown; // rectangle of last down arrow in the tip
29 int posStart, int posEnd, int ytext, PRectangle rcClient,
59 PRectangle CallTipStart(int pos, Point pt, const char *defn,
H A DCallTip.cxx24 rectUp = PRectangle(0,0,0,0);
25 rectDown = PRectangle(0,0,0,0);
77 int posStart, int posEnd, int ytext, PRectangle rcClient,
110 PRectangle rcClientInner(rcClient.left + 1, rcClient.top + 1,
158 PRectangle rcClientPos = wCallTip.GetClientPosition();
159 PRectangle rcClientSize(0, 0, rcClientPos.right - rcClientPos.left,
161 PRectangle rcClient(1, 1, rcClientSize.right - 1, rcClientSize.bottom - 1);
210 PRectangle rcClientPos = wCallTip.GetClientPosition();
211 PRectangle rcClientSize(0, 0, rcClientPos.right - rcClientPos.left,
213 PRectangle rcClien
[all...]
H A DIndicator.cxx13 void Indicator::Draw(Surface *surface, const PRectangle &rc, const PRectangle &rcLine) {
67 PRectangle rcBox = rcLine;
H A DLineMarker.h51 void Draw(Surface *surface, PRectangle &rc, Font &fontForCharacter);
H A DXPM.h39 void Draw(Surface *surface, PRectangle &rc);
H A DEditor.h273 PRectangle rcPaint;
332 virtual PRectangle GetClientRectangle();
333 PRectangle GetTextRectangle();
347 void RedrawRect(PRectangle rc);
350 PRectangle RectangleFromRange(int start, int end);
386 void PaintSelMargin(Surface *surface, PRectangle &rc);
392 void DrawIndentGuide(Surface *surface, int lineVisible, int lineHeight, int start, PRectangle rcSegment, bool highlight);
393 void DrawWrapMarker(Surface *surface, PRectangle rcPlace, bool isEndMarker, ColourAllocated wrapColour);
394 void DrawEOL(Surface *surface, ViewStyle &vsDraw, PRectangle rcLine, LineLayout *ll,
399 PRectangle rcLin
[all...]
H A DLineMarker.cxx37 PRectangle rc;
46 PRectangle rcCircle;
55 PRectangle rcV(centreX, centreY - armSize + 2, centreX + 1, centreY + armSize - 2 + 1);
57 PRectangle rcH(centreX - armSize + 2, centreY, centreX + armSize - 2 + 1, centreY+1);
62 PRectangle rcH(centreX - armSize + 2, centreY, centreX + armSize - 2 + 1, centreY+1);
66 void LineMarker::Draw(Surface *surface, PRectangle &rcWhole, Font &fontForCharacter) {
72 PRectangle rc = rcWhole;
88 PRectangle rcRounded = rc;
93 PRectangle rcCircle;
146 PRectangle rcSmal
[all...]
H A DScintillaBase.h80 virtual void CreateCallTipWindow(PRectangle rc) = 0;
H A DEditor.cxx507 PRectangle Editor::GetClientRectangle() {
511 PRectangle Editor::GetTextRectangle() {
512 PRectangle rc = GetClientRectangle();
519 PRectangle rcClient = GetClientRectangle();
777 PRectangle rcClient = GetTextRectangle();
872 void Editor::RedrawRect(PRectangle rc) {
876 PRectangle rcClient = GetClientRectangle();
893 PRectangle rcClient = GetClientRectangle();
903 PRectangle rcSelMargin = GetClientRectangle();
907 PRectangle rcLin
[all...]
H A DXPM.cxx51 PRectangle rc(startX, y, x, y+1);
177 void XPM::Draw(Surface *surface, PRectangle &rc) {
H A DScintillaBase.cxx223 PRectangle rcClient = GetClientRectangle();
233 PRectangle rcac;
256 PRectangle rcList = ac.lb->GetDesiredRect();
379 PRectangle rc = ct.CallTipStart(currentPos, pt,
388 PRectangle rcClient = GetClientRectangle();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/include/
H A DPlatform.h77 * PRectangle is exactly the same as the Win32 RECT so can be used interchangeably.
80 class PRectangle { class
87 PRectangle(int left_=0, int top_=0, int right_=0, int bottom_ = 0) : function in class:PRectangle
93 bool operator==(PRectangle &rc) {
101 bool Contains(PRectangle rc) {
105 bool Intersects(PRectangle other) {
321 virtual void RectangleDraw(PRectangle rc, ColourAllocated fore, ColourAllocated back)=0;
322 virtual void FillRectangle(PRectangle rc, ColourAllocated back)=0;
323 virtual void FillRectangle(PRectangle rc, Surface &surfacePattern)=0;
324 virtual void RoundedRectangle(PRectangle r
[all...]
H A DScintilla.h727 PRectangle rc;
728 PRectangle rcPage;

Completed in 176 milliseconds