|
From: <kw...@us...> - 2003-11-01 02:22:34
|
Update of /cvsroot/aedgui/aedGUI/include
In directory sc8-pr-cvs1:/tmp/cvs-serv22310/include
Modified Files:
aedWidget.h
Log Message:
Added same Grab mouse motion functionality to Right Button
Index: aedWidget.h
===================================================================
RCS file: /cvsroot/aedgui/aedGUI/include/aedWidget.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** aedWidget.h 1 Nov 2003 00:38:28 -0000 1.4
--- aedWidget.h 1 Nov 2003 02:22:31 -0000 1.5
***************
*** 109,115 ****
return m_ShowWidget;
}
! bool isPressed(void) const
{
! return m_isPressed;
}
void bringToTop(void);
--- 109,119 ----
return m_ShowWidget;
}
! bool isLPressed(void) const
{
! return m_isLPressed;
! }
! bool isRPressed(void) const
! {
! return m_isRPressed;
}
void bringToTop(void);
***************
*** 329,333 ****
// Position Offset
aedRect m_PositionOffset;
! bool m_isPressed;
private:
std::string m_Id;
--- 333,338 ----
// Position Offset
aedRect m_PositionOffset;
! bool m_isLPressed;
! bool m_isRPressed;
private:
std::string m_Id;
|