|
From: <kw...@us...> - 2003-11-01 00:38:31
|
Update of /cvsroot/aedgui/aedGUI/include
In directory sc8-pr-cvs1:/tmp/cvs-serv7717/include
Modified Files:
aedWidget.h aedWindow.h
Log Message:
Solved the Dragable window problem thanks to Sam's Advice
Index: aedWidget.h
===================================================================
RCS file: /cvsroot/aedgui/aedGUI/include/aedWidget.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** aedWidget.h 29 Oct 2003 19:27:19 -0000 1.3
--- aedWidget.h 1 Nov 2003 00:38:28 -0000 1.4
***************
*** 109,112 ****
--- 109,116 ----
return m_ShowWidget;
}
+ bool isPressed(void) const
+ {
+ return m_isPressed;
+ }
void bringToTop(void);
bool hasFocus() const;
***************
*** 325,329 ****
// Position Offset
aedRect m_PositionOffset;
!
private:
std::string m_Id;
--- 329,333 ----
// Position Offset
aedRect m_PositionOffset;
! bool m_isPressed;
private:
std::string m_Id;
Index: aedWindow.h
===================================================================
RCS file: /cvsroot/aedgui/aedGUI/include/aedWindow.h,v
retrieving revision 1.40
retrieving revision 1.41
diff -C2 -d -r1.40 -r1.41
*** aedWindow.h 29 Oct 2003 19:27:19 -0000 1.40
--- aedWindow.h 1 Nov 2003 00:38:28 -0000 1.41
***************
*** 79,83 ****
bool m_InitComplete;
! bool m_Dragging;
bool m_Moveable;
--- 79,83 ----
bool m_InitComplete;
! //bool m_Dragging;
bool m_Moveable;
|