paragui-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[paragui-cvs] CVS: paragui/include pgapplication.h,1.6,1.7 pglistbox.h,1


From: Alexander Pipelka <address@hidden>
Subject: [paragui-cvs] CVS: paragui/include pgapplication.h,1.6,1.7 pglistbox.h,1.6,1.7 pgmessageobject.h,1.7,1.8 pgwidget.h,1.7,1.8 pgwidgetlist.h,1.7,1.8
Date: Tue, 30 Apr 2002 06:18:41 -0400

Update of /cvsroot/paragui/paragui/include
In directory subversions:/tmp/cvs-serv24317/include

Modified Files:
        pgapplication.h pglistbox.h pgmessageobject.h pgwidget.h 
        pgwidgetlist.h 
Log Message:
generalized removing of child widgets from lists
moved some app specific functions from PG_MessageBox to PG_Application



Index: pgapplication.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgapplication.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** pgapplication.h     29 Apr 2002 11:44:21 -0000      1.6
--- pgapplication.h     30 Apr 2002 10:18:38 -0000      1.7
***************
*** 451,454 ****
--- 451,464 ----
  
        static PG_Font* DefaultFont;
+       
+       /**
+       Sends an event to the global message queue.
+ 
+       @param event SDL_Event message
+       @return true - the message was processed by the framework
+       */
+ 
+       static bool PumpIntoEventQueue(const SDL_Event* event);
+ 
  
        PG_SignalAppQuit sigAppQuit;
***************
*** 457,460 ****
--- 467,473 ----
        
  protected:
+ 
+       /** */
+       static SDL_Event WaitEvent(Uint32 delay=0);
  
        /**

Index: pglistbox.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pglistbox.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** pglistbox.h 30 Apr 2002 08:46:12 -0000      1.6
--- pglistbox.h 30 Apr 2002 10:18:38 -0000      1.7
***************
*** 90,93 ****
--- 90,95 ----
        void SetIndent(int indent);
  
+       bool RemoveChild(PG_Widget* child);
+       
        PG_SignalSelectItem sigSelectItem;
  

Index: pgmessageobject.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgmessageobject.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** pgmessageobject.h   30 Apr 2002 06:37:04 -0000      1.7
--- pgmessageobject.h   30 Apr 2002 10:18:38 -0000      1.8
***************
*** 102,117 ****
  
        /**
-       Sends an event to the global message queue.
- 
-       @param event SDL_Event message
-       @return true - the message was processed by the framework
-       */
- 
-       static bool PumpIntoEventQueue(const SDL_Event* event);
- 
-       /** */
-       static SDL_Event WaitEvent(Uint32 delay=0);
- 
-       /**
        Translates numeric keypad keys into other keys in dependency of 
NUM_LOCK state.
         Should be called in eventKeyDown() for proper numeric keypad behaviour.
--- 102,105 ----

Index: pgwidget.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgwidget.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** pgwidget.h  29 Apr 2002 11:44:21 -0000      1.7
--- pgwidget.h  30 Apr 2002 10:18:38 -0000      1.8
***************
*** 471,475 ****
  
        /**     */
!       bool RemoveChild(PG_Widget* child);
  
        /**
--- 471,475 ----
  
        /**     */
!       virtual bool RemoveChild(PG_Widget* child);
  
        /**

Index: pgwidgetlist.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgwidgetlist.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** pgwidgetlist.h      28 Apr 2002 16:35:30 -0000      1.7
--- pgwidgetlist.h      30 Apr 2002 10:18:38 -0000      1.8
***************
*** 151,154 ****
--- 151,156 ----
        }
        
+       bool RemoveChild(PG_Widget* child);
+       
  protected:
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]