paragui-cvs
[Top][All Lists]
Advanced

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

[paragui-cvs] CVS: paragui/include pgdropdown.h,1.5,1.6 pgmessagebox.h,1


From: Alexander Pipelka <address@hidden>
Subject: [paragui-cvs] CVS: paragui/include pgdropdown.h,1.5,1.6 pgmessagebox.h,1.5,1.6 pgnotebook.h,1.6,1.7 pgradiobutton.h,1.5,1.6 pgscrollbar.h,1.5,1.6 pgsignals.h,1.3,1.4 pgspinnerbox.h,1.5,1.6 pgwidget.h,1.10,1.11 pgwindow.h,1.6,1.7
Date: Thu, 02 May 2002 05:50:42 -0400

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

Modified Files:
        pgdropdown.h pgmessagebox.h pgnotebook.h pgradiobutton.h 
        pgscrollbar.h pgsignals.h pgspinnerbox.h pgwidget.h pgwindow.h 
Log Message:
signal cleanup



Index: pgdropdown.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgdropdown.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** pgdropdown.h        27 Apr 2002 15:36:54 -0000      1.5
--- pgdropdown.h        2 May 2002 09:50:38 -0000       1.6
***************
*** 120,127 ****
  
        /** */
!       virtual bool handleButtonClick(PG_Button* widget, PG_Pointer* data);
  
        /** */
!       virtual bool handleSelectItem(PG_ListBoxItem* item, PG_Pointer* data);
  
        /** */
--- 120,127 ----
  
        /** */
!       virtual bool handleButtonClick(PG_Button* widget);
  
        /** */
!       virtual bool handleSelectItem(PG_ListBoxItem* item);
  
        /** */

Index: pgmessagebox.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgmessagebox.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** pgmessagebox.h      27 Apr 2002 15:36:54 -0000      1.5
--- pgmessagebox.h      2 May 2002 09:50:38 -0000       1.6
***************
*** 90,94 ****
        @param widget                                                           
        widget for Evenet
        */
!       bool handleButtonClick(PG_Button* widget, PG_Pointer* data);
  
        /**
--- 90,94 ----
        @param widget                                                           
        widget for Evenet
        */
!       bool handleButtonClick(PG_Button* widget);
  
        /**

Index: pgnotebook.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgnotebook.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** pgnotebook.h        28 Apr 2002 16:35:30 -0000      1.6
--- pgnotebook.h        2 May 2002 09:50:38 -0000       1.7
***************
*** 6,14 ****
  #include <map>
  
- class PG_NoteBook;
- 
- typedef PG_Signal2<PG_NoteBook*, PG_Widget*> PG_PageSelect;
- typedef Slot1<bool, PG_Widget*> PG_PageSelectSlot;
- 
  class PG_NoteBook : public PG_Widget {
  public:
--- 6,9 ----

Index: pgradiobutton.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgradiobutton.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** pgradiobutton.h     27 Apr 2002 15:36:55 -0000      1.5
--- pgradiobutton.h     2 May 2002 09:50:38 -0000       1.6
***************
*** 92,96 ****
  
        /** */
!       virtual bool handleButtonClick(PG_Button* widget, PG_Pointer* data);
  
        PG_RadioButton* my_groupFirst;
--- 92,96 ----
  
        /** */
!       virtual bool handleButtonClick(PG_Button* widget);
  
        PG_RadioButton* my_groupFirst;

Index: pgscrollbar.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgscrollbar.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** pgscrollbar.h       27 Apr 2002 15:36:55 -0000      1.5
--- pgscrollbar.h       2 May 2002 09:50:38 -0000       1.6
***************
*** 131,135 ****
  
        /**  */
!       virtual bool handleButtonClick(PG_Button* button, PG_Pointer* data);
  
        /**  */
--- 131,135 ----
  
        /**  */
!       virtual bool handleButtonClick(PG_Button* button);
  
        /**  */

Index: pgsignals.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgsignals.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** pgsignals.h 27 Apr 2002 23:43:39 -0000      1.3
--- pgsignals.h 2 May 2002 09:50:38 -0000       1.4
***************
*** 49,52 ****
--- 49,53 ----
  class PG_MessageObject;
  class PG_TabBar;
+ class PG_NoteBook;
  
  using namespace SigC;
***************
*** 123,132 ****
        };
        
!       virtual Connection connect(const Slot2<bool, P1, PG_Pointer*>& s, 
PG_Pointer* _data = NULL) {
                data = _data;
                return Signal2<bool, P1, PG_Pointer*>::connect(s);
        };
  
!       virtual Connection connect(const Slot1<bool, PG_Pointer*>& s, 
PG_Pointer* _data = NULL) {
                data = _data;
                return Signal1<bool, PG_Pointer*>::connect(s);
--- 124,133 ----
        };
        
!       virtual Connection connect(const Slot2<bool, P1, PG_Pointer*>& s, 
PG_Pointer* _data) {
                data = _data;
                return Signal2<bool, P1, PG_Pointer*>::connect(s);
        };
  
!       virtual Connection connect(const Slot1<bool, PG_Pointer*>& s, 
PG_Pointer* _data) {
                data = _data;
                return Signal1<bool, PG_Pointer*>::connect(s);
***************
*** 137,145 ****
        }
  
-       virtual Connection connect(const Slot0<bool>& s, PG_Pointer* _data) {
-               data = _data;
-               return Signal0<bool>::connect(s);
-       };
- 
        virtual Connection connect(const Slot0<bool>& s) {
                return Signal0<bool>::connect(s);
--- 138,141 ----
***************
*** 228,236 ****
        }
  
-       /*virtual Connection connect(const Slot2<bool, P2, PG_Pointer*>& s, 
PG_Pointer* _data) {
-               data = _data;
-               return Signal2<bool, P2, PG_Pointer*>::connect(s);
-       }*/
- 
        virtual Connection connect(const Slot1<bool, P2>& s) {
                return Signal1<bool, P2>::connect(s);
--- 224,227 ----
***************
*** 251,259 ****
        }
  
-       virtual Connection connect(const Slot0<bool>& s, PG_Pointer* _data) {
-               data = _data;
-               return Signal0<bool>::connect(s);
-       };
- 
        virtual Connection connect(const Slot0<bool>& s) {
                return Signal0<bool>::connect(s);
--- 242,245 ----
***************
*** 307,310 ****
--- 293,300 ----
  
  typedef Slot1<bool, PG_Button*> PG_TabSelectSlot;
+ 
+ typedef PG_Signal2<PG_NoteBook*, PG_Widget*> PG_PageSelect;
+ 
+ typedef Slot1<bool, PG_Widget*> PG_PageSelectSlot;
  
  #endif // PG_SIGNALS_H

Index: pgspinnerbox.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgspinnerbox.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** pgspinnerbox.h      27 Apr 2002 15:36:55 -0000      1.5
--- pgspinnerbox.h      2 May 2002 09:50:38 -0000       1.6
***************
*** 97,101 ****
  protected:
  
!       virtual bool handleButtonClick(PG_Button* widget, PG_Pointer* data);
        virtual bool handleEditEnd(PG_LineEdit* edit);
  
--- 97,101 ----
  protected:
  
!       virtual bool handleButtonClick(PG_Button* widget);
        virtual bool handleEditEnd(PG_LineEdit* edit);
  

Index: pgwidget.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgwidget.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** pgwidget.h  30 Apr 2002 14:51:13 -0000      1.10
--- pgwidget.h  2 May 2002 09:50:38 -0000       1.11
***************
*** 664,668 ****
        @return                                         true / false
        */
!       bool IsClippingEnabled();
  
        /**  */
--- 664,668 ----
        @return                                         true / false
        */
!       //bool IsClippingEnabled();
  
        /**  */

Index: pgwindow.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgwindow.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** pgwindow.h  28 Apr 2002 16:35:30 -0000      1.6
--- pgwindow.h  2 May 2002 09:50:38 -0000       1.7
***************
*** 86,90 ****
  
        /** */
!       virtual bool handleButtonClick(PG_Button* widget, PG_Pointer* data);
  
        /** */
--- 86,90 ----
  
        /** */
!       virtual bool handleButtonClick(PG_Button* widget);
  
        /** */




reply via email to

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