Searched refs:GetY (Results 1 - 25 of 106) sorted by relevance

12345

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Ddcmirror.h60 { m_dc.SetUserScale(GetX(x, y), GetY(x, y)); }
62 { m_dc.SetLogicalOrigin(GetX(x, y), GetY(x, y)); }
64 { m_dc.SetDeviceOrigin(GetX(x, y), GetY(x, y)); }
67 GetY(xLeftRight, yBottomUp)); }
80 wxCoord GetY(wxCoord x, wxCoord y) const { return m_mirror ? x : y; } function in class:wxMirrorDC
82 double GetY(double x, double y) const { return m_mirror ? x : y; } function in class:wxMirrorDC
84 bool GetY(bool x, bool y) const { return m_mirror ? x : y; } function in class:wxMirrorDC
88 wxCoord *GetY(wxCoord *x, wxCoord *y) const { return m_mirror ? x : y; } function in class:wxMirrorDC
115 return m_dc.DoFloodFill(GetX(x, y), GetY(x, y), col, style);
120 return m_dc.DoGetPixel(GetX(x, y), GetY(
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/ogl/
H A Dconstrnt.cpp166 y = m_constrainingObject->GetY();
211 if (!Equals(startY, constrainedObject->GetY()))
261 constrainedObject->Move(dc, startX, constrainedObject->GetY(), false);
327 if ((!Equals(startX, constrainedObject->GetX())) || (!Equals(startY, constrainedObject->GetY())))
356 constrainedObject->Move(dc, x3, constrainedObject->GetY(), false);
379 constrainedObject->Move(dc, x3, constrainedObject->GetY(), false);
399 if (!Equals(y3, constrainedObject->GetY()))
422 if (!Equals(y3, constrainedObject->GetY()))
448 constrainedObject->Move(dc, x3, constrainedObject->GetY(), false);
471 constrainedObject->Move(dc, x3, constrainedObject->GetY(), fals
[all...]
H A Dcomposit.cpp131 object->Move(dc, object->GetX() + diffX, object->GetY() + diffY, display);
169 GetEventHandler()->OnDrawOutline(dc, GetX() + offsetX, GetY() + offsetY, GetWidth(), GetHeight());
196 GetEventHandler()->OnDrawOutline(dc, GetX() + offsetX, GetY() + offsetY, GetWidth(), GetHeight());
223 Move(dc, GetX() + offsetX, GetY() + offsetY);
276 double newY = (double)(((object->GetY() - GetY())*yScale) + GetY());
541 if ((object->GetY() + (h/2.0)) > maxY)
542 maxY = (double)(object->GetY() + (h/2.0));
543 if ((object->GetY()
[all...]
H A Ddivided.cpp337 double currentY = (double)(GetY() - (m_height / 2.0));
338 double maxY = (double)(GetY() + (m_height / 2.0));
354 new wxDividedShapeControlPoint(m_canvas, this, i, CONTROL_POINT_SIZE, 0.0, (double)(actualY - GetY()), 0);
375 double currentY = (double)(GetY() - (m_height / 2.0));
376 double maxY = (double)(GetY() + (m_height / 2.0));
394 controlPoint->m_yoffset = (double)(actualY - GetY());
636 double currentY = (double)(dividedObject->GetY() - (dividedObject->GetHeight() / 2.0));
637 double maxY = (double)(dividedObject->GetY() + (dividedObject->GetHeight() / 2.0));
681 m_yoffset = (double)(y - dividedObject->GetY());
H A Dbasic2.cpp1247 m_ypos = m_shape->GetY() + m_yoffset;
1305 double new_height = (double)(2.0*fabs(y - this->GetY()));
1338 this->GetEventHandler()->OnDrawOutline(dc, this->GetX(), this->GetY(),
1361 if (GetY() > pt->sm_controlPointDragStartY)
1418 if (pt->GetY() < this->GetY())
1419 pt->sm_controlPointDragStartY = (double)(this->GetY() + (bound_y/2.0));
1421 pt->sm_controlPointDragStartY = (double)(this->GetY() - (bound_y/2.0));
1424 pt->sm_controlPointDragStartY = (double)(this->GetY() - (bound_y/2.0));
1439 double new_height = (double)(2.0*fabs(y - this->GetY()));
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/mac/carbon/
H A Dregion.h79 long GetY() const;
84 wxRect GetRect() const { return wxRect(GetX(), GetY(), GetWidth(), GetHeight()); }
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/samples/plot/
H A Dplot.cpp51 virtual double GetY( wxInt32 x ) function in class:MyPlotCurve
182 double y = event.GetCurve()->GetY( event.GetPosition() );
189 double y = event.GetCurve()->GetY( event.GetPosition() );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/dfb/
H A Dregion.h83 wxCoord GetY() const { return m_rect.GetY(); } function in class:wxRegionIterator
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/mgl/
H A Dregion.h90 wxCoord GetY(void) const;
95 wxRect GetRect() const { return wxRect(GetX(), GetY(), GetWidth(), GetHeight()); }
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/msw/
H A Dregion.h84 wxCoord GetY() const;
90 wxRect GetRect() const { return wxRect(GetX(), GetY(), GetW(), GetH()); }
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/os2/
H A Dregion.h101 wxCoord GetY(void) const;
106 wxRect GetRect(void) const { return wxRect(GetX(), GetY(), GetWidth(), GetHeight()); }
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/palmos/
H A Dregion.h85 wxCoord GetY() const;
91 wxRect GetRect() const { return wxRect(GetX(), GetY(), GetW(), GetH()); }
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DGenericClientListCtrl.cpp710 wxDCClipper clipper( *dc, rect.GetX(), rect.GetY(), rect.GetWidth(), rect.GetHeight() );
720 wxPoint point( rect.GetX(), rect.GetY() );
861 dc->DrawText(userName, point.x, rect.GetY() + iTextOffset);
868 dc->DrawText(buffer, rect.GetX(), rect.GetY() + iTextOffset);
874 dc->DrawText(buffer, rect.GetX(), rect.GetY() + iTextOffset);
880 dc->DrawText(buffer, rect.GetX(), rect.GetY() + iTextOffset);
887 dc->DrawText(buffer, rect.GetX(), rect.GetY() + iTextOffset);
896 dc->SetClippingRegion(rect.GetX(), rect.GetY() + 1, iWidth, iHeight);
934 dc->Blit(rect.GetX(), rect.GetY() + 1, iWidth, iHeight, &cdcStatus, 0, 0);
946 int midy = (2*rect.GetY()
[all...]
H A DMuleTextCtrl.cpp110 PopupMenu( &popup_menu, evt.GetX(), evt.GetY() );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/mac/classic/
H A Dregion.h150 long GetY() const;
155 wxRect GetRect() const { return wxRect(GetX(), GetY(), GetWidth(), GetHeight()); }
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/palmos/
H A Dregion.cpp203 wxCoord wxRegionIterator::GetY() const function in class:wxRegionIterator
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dsetcursorevt.tex59 \membersection{wxSetCursorEvent::GetY}\label{wxsetcursoreventgety}
61 \constfunc{wxCoord}{GetY}{\void}
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/generic/
H A Dregion.h68 long GetY() const;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/samples/ogl/studio/
H A Ddoc.cpp318 m_shapeOnCanvas->Move(dc, m_shapeOnCanvas->GetX(), m_shapeOnCanvas->GetY());
356 lineShape->GetFrom()->Move(dc, lineShape->GetFrom()->GetX(), lineShape->GetFrom()->GetY());
357 lineShape->GetTo()->Move(dc, lineShape->GetTo()->GetX(), lineShape->GetTo()->GetY());
428 m_shapeOnCanvas->Move(dc, m_shapeOnCanvas->GetX(), m_shapeOnCanvas->GetY());
453 m_shapeOnCanvas->Move(dc, m_shapeOnCanvas->GetX(), m_shapeOnCanvas->GetY());
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/carbon/
H A Ddcscreen.cpp87 srcRect.origin.y = subrect->GetY();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/x11/
H A Dregion.h108 wxCoord GetY() const;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/gtk1/
H A Dregion.h110 wxCoord GetY() const;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/os2/
H A Dchecklst.cpp132 int nY = rRect.GetY();
406 int nY = rEvent.GetY();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/opengl/penguin/
H A Dpenguin.cpp244 (sz.y - 2.0*event.GetY()) / sz.y);
253 m_gldata.beginy = event.GetY();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/erase/
H A Derase.cpp260 wxLogDebug( _T("Paint: %d %d %d %d"), upd.GetX(), upd.GetY(), upd.GetWidth(), upd.GetHeight() );
297 dc.DrawRectangle( it.GetX(), it.GetY(), it.GetWidth(), it.GetHeight() );

Completed in 263 milliseconds

12345