Searched refs:mousePos (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/include/wx/fl/
H A Dbardragpl.h61 void AdjustHintRect( wxPoint& mousePos );
84 int GetDistanceToPane( cbDockPane* pPane, wxPoint& mousePos );
87 bool IsInOtherPane ( wxPoint& mousePos );
90 bool IsInClientArea( wxPoint& mousePos );
96 void StickToPane( cbDockPane* pPane, wxPoint& mousePos );
99 void UnstickFromPane( cbDockPane* pPane, wxPoint& mousePos );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/fl/
H A Dbardragpl.cpp137 void cbBarDragPlugin::AdjustHintRect( wxPoint& mousePos )
139 mHintRect.x = mousePos.x - mMouseInRectX;
140 mHintRect.y = mousePos.y - mMouseInRectY;
178 int cbBarDragPlugin::GetDistanceToPane( cbDockPane* pPane, wxPoint& mousePos )
184 case FL_ALIGN_TOP : return mousePos.y - ( bounds.y + bounds.height );
185 case FL_ALIGN_BOTTOM : return bounds.y - mousePos.y;
186 case FL_ALIGN_LEFT : return mousePos.x - ( bounds.x + bounds.width );
187 case FL_ALIGN_RIGHT : return bounds.x - mousePos.x;
194 bool cbBarDragPlugin::IsInOtherPane( wxPoint& mousePos )
196 cbDockPane* pPane = HitTestPanes( mousePos );
535 wxPoint mousePos = event.mPos; local
[all...]
H A Dbarhintspl.cpp347 static inline bool is_in_box( const wxPoint& rectPos, const wxPoint& mousePos )
349 return ( mousePos.x >= rectPos.x &&
350 mousePos.y >= rectPos.y &&
351 mousePos.x < rectPos.x + BTN_BOX_WIDTH &&
352 mousePos.y < rectPos.y + BTN_BOX_HEIGHT );

Completed in 61 milliseconds