paragui-cvs
[Top][All Lists]
Advanced

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

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


From: Alexander Pipelka <address@hidden>
Subject: [paragui-cvs] CVS: paragui/include pgcheckbutton.h,1.5,1.6 pgdropdown.h,1.6,1.7 pgimage.h,1.4,1.5 pglineedit.h,1.5,1.6 pglistbox.h,1.8,1.9 pgmaskedit.h,1.4,1.5 pgmenubar.h,1.4,1.5 pgmessagebox.h,1.6,1.7 pgnotebook.h,1.7,1.8 pgpopupmenu.h,1.7,1.8 pgprogressbar.h,1.4,1.5 pgradiobutton.h,1.6,1.7 pgrichedit.h,1.3,1.4 pgscrollbar.h,1.6,1.7 pgslider.h,1.5,1.6 pgspinnerbox.h,1.6,1.7 pgtabbar.h,1.4,1.5 pgwidgetlist.h,1.9,1.10 pgwidgetlistex.h,1.4,1.5
Date: Wed, 26 Jun 2002 12:26:42 -0400

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

Modified Files:
        pgcheckbutton.h pgdropdown.h pgimage.h pglineedit.h 
        pglistbox.h pgmaskedit.h pgmenubar.h pgmessagebox.h 
        pgnotebook.h pgpopupmenu.h pgprogressbar.h pgradiobutton.h 
        pgrichedit.h pgscrollbar.h pgslider.h pgspinnerbox.h 
        pgtabbar.h pgwidgetlist.h pgwidgetlistex.h 
Log Message:
added default params for widget constructors



Index: pgcheckbutton.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgcheckbutton.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** pgcheckbutton.h     27 Apr 2002 15:36:54 -0000      1.5
--- pgcheckbutton.h     26 Jun 2002 16:26:39 -0000      1.6
***************
*** 53,57 ****
        @param style widget style (loaded from theme) to use
        */
!       PG_CheckButton(PG_Widget* parent, int id, const PG_Rect& r, const char* 
text, const char* style="CheckButton");
  
        /** */
--- 53,57 ----
        @param style widget style (loaded from theme) to use
        */
!       PG_CheckButton(PG_Widget* parent, int id=-1, const PG_Rect& 
r=PG_Rect(), const char* text="", const char* style="CheckButton");
  
        /** */

Index: pgdropdown.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgdropdown.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** pgdropdown.h        2 May 2002 09:50:38 -0000       1.6
--- pgdropdown.h        26 Jun 2002 16:26:39 -0000      1.7
***************
*** 58,62 ****
        @param style style of the widget (loaded from the theme)
        */
!       PG_DropDown(PG_Widget* parent, int id, const PG_Rect& r, const char* 
style="DropDown");
  
        /**  */
--- 58,62 ----
        @param style style of the widget (loaded from the theme)
        */
!       PG_DropDown(PG_Widget* parent, int id=-1, const PG_Rect& r=PG_Rect(), 
const char* style="DropDown");
  
        /**  */

Index: pgimage.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgimage.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** pgimage.h   27 Apr 2002 15:36:54 -0000      1.4
--- pgimage.h   26 Jun 2002 16:26:39 -0000      1.5
***************
*** 52,56 ****
        This constructor creates the widget and loads the image from a file
        */
!       PG_Image(PG_Widget* parent, const PG_Point& p, const char* filename, 
const char* style = "ThemeWidget");
  
        /**
--- 52,56 ----
        This constructor creates the widget and loads the image from a file
        */
!       PG_Image(PG_Widget* parent, const PG_Point& p = PG_Point(0,0), const 
char* filename=NULL, const char* style = "ThemeWidget");
  
        /**

Index: pglineedit.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pglineedit.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** pglineedit.h        27 Apr 2002 15:36:54 -0000      1.5
--- pglineedit.h        26 Jun 2002 16:26:39 -0000      1.6
***************
*** 49,53 ****
  
        /** */
!       PG_LineEdit(PG_Widget* parent, const PG_Rect& r, const char* 
style="LineEdit", int maximumLength = 1000000);
  
        /** */
--- 49,53 ----
  
        /** */
!       PG_LineEdit(PG_Widget* parent, const PG_Rect& r=PG_Rect(), const char* 
style="LineEdit", int maximumLength = 1000000);
  
        /** */

Index: pglistbox.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pglistbox.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** pglistbox.h 26 Jun 2002 16:00:20 -0000      1.8
--- pglistbox.h 26 Jun 2002 16:26:39 -0000      1.9
***************
*** 43,47 ****
  
        /** */
!       PG_ListBox(PG_Widget* parent, const PG_Rect& r, const char* 
style="ListBox");
  
        /** */
--- 43,47 ----
  
        /** */
!       PG_ListBox(PG_Widget* parent, const PG_Rect& r=PG_Rect(), const char* 
style="ListBox");
  
        /** */

Index: pgmaskedit.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgmaskedit.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** pgmaskedit.h        27 Apr 2002 15:36:54 -0000      1.4
--- pgmaskedit.h        26 Jun 2002 16:26:39 -0000      1.5
***************
*** 38,42 ****
  
        /** */
!       PG_MaskEdit(PG_Widget* parent, const PG_Rect& r, const char* 
style="LineEdit");
  
        /**
--- 38,42 ----
  
        /** */
!       PG_MaskEdit(PG_Widget* parent, const PG_Rect& r=PG_Rect(), const char* 
style="LineEdit");
  
        /**

Index: pgmenubar.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgmenubar.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** pgmenubar.h 27 Apr 2002 11:57:22 -0000      1.4
--- pgmenubar.h 26 Jun 2002 16:26:39 -0000      1.5
***************
*** 54,58 ****
                Use the Add member function to insert PG_PopupMenu objects.
        */
!       PG_MenuBar(PG_Widget* parent, const PG_Rect& rect, const char* style = 
"MenuBar");
  
        /**
--- 54,58 ----
                Use the Add member function to insert PG_PopupMenu objects.
        */
!       PG_MenuBar(PG_Widget* parent, const PG_Rect& rect=PG_Rect(), const 
char* style = "MenuBar");
  
        /**

Index: pgmessagebox.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgmessagebox.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** pgmessagebox.h      2 May 2002 09:50:38 -0000       1.6
--- pgmessagebox.h      26 Jun 2002 16:26:39 -0000      1.7
***************
*** 55,59 ****
        @param textalign                                                
Alignment for windowtext
        */
!       PG_MessageBox(PG_Widget* parent, const PG_Rect& r, const char* 
windowtitle, const char* windowtext, const PG_Rect& btn1, const char* btn1text, 
const PG_Rect& btn2, const char* btn2text, int textalign=PG_TA_CENTER, const 
char* style="MessageBox");
  
        /**
--- 55,59 ----
        @param textalign                                                
Alignment for windowtext
        */
!       PG_MessageBox(PG_Widget* parent, const PG_Rect& r=PG_Rect(), const 
char* windowtitle="", const char* windowtext="", const PG_Rect& btn1=PG_Rect(), 
const char* btn1text="", const PG_Rect& btn2=PG_Rect(), const char* 
btn2text="", int textalign=PG_TA_CENTER, const char* style="MessageBox");
  
        /**
***************
*** 68,72 ****
        @param textalign                                                
Alignment for windowtext
        */
!       PG_MessageBox(PG_Widget* parent, const PG_Rect& r, const char* 
windowtitle, const char* windowtext, const PG_Rect& btn1, const char* btn1text, 
int textalign=PG_TA_CENTER, const char* style="MessageBox");
  
        /**
--- 68,72 ----
        @param textalign                                                
Alignment for windowtext
        */
!       PG_MessageBox(PG_Widget* parent, const PG_Rect& r=PG_Rect(), const 
char* windowtitle="", const char* windowtext="", const PG_Rect& btn1=PG_Rect(), 
const char* btn1text="", int textalign=PG_TA_CENTER, const char* 
style="MessageBox");
  
        /**

Index: pgnotebook.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgnotebook.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** pgnotebook.h        2 May 2002 09:50:38 -0000       1.7
--- pgnotebook.h        26 Jun 2002 16:26:39 -0000      1.8
***************
*** 14,18 ****
        } TabBarPos;
        
!       PG_NoteBook(PG_Widget* parent, const PG_Rect& r, TabBarPos pos = top, 
int BarHeight = 33, const char* style="TabBar");
        
        ~PG_NoteBook();
--- 14,18 ----
        } TabBarPos;
        
!       PG_NoteBook(PG_Widget* parent, const PG_Rect& r=PG_Rect(), TabBarPos 
pos = top, int BarHeight = 33, const char* style="TabBar");
        
        ~PG_NoteBook();

Index: pgpopupmenu.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgpopupmenu.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** pgpopupmenu.h       7 May 2002 12:47:43 -0000       1.7
--- pgpopupmenu.h       26 Jun 2002 16:26:39 -0000      1.8
***************
*** 184,189 ****
  
        PG_PopupMenu(PG_Widget *parent,
!                    int x, int y,
!                    char *caption,
                     char *style = "PopupMenu");
  
--- 184,189 ----
  
        PG_PopupMenu(PG_Widget *parent,
!                    int x=0, int y=0,
!                    char *caption="",
                     char *style = "PopupMenu");
  

Index: pgprogressbar.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgprogressbar.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** pgprogressbar.h     27 Apr 2002 15:36:55 -0000      1.4
--- pgprogressbar.h     26 Jun 2002 16:26:39 -0000      1.5
***************
*** 47,51 ****
  
        /** */
!       PG_ProgressBar(PG_Widget* parent, const PG_Rect& r, const char* 
style="Progressbar");
  
        /** */
--- 47,51 ----
  
        /** */
!       PG_ProgressBar(PG_Widget* parent, const PG_Rect& r=PG_Rect(), const 
char* style="Progressbar");
  
        /** */

Index: pgradiobutton.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgradiobutton.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** pgradiobutton.h     2 May 2002 09:50:38 -0000       1.6
--- pgradiobutton.h     26 Jun 2002 16:26:39 -0000      1.7
***************
*** 53,57 ****
  
        /** */
!       PG_RadioButton(PG_Widget* parent, int id, const PG_Rect& r, const char* 
text, PG_RadioButton* firstOfGroup = NULL, const char* style="RadioButton");
  
        /** */
--- 53,57 ----
  
        /** */
!       PG_RadioButton(PG_Widget* parent, int id=-1, const PG_Rect& 
r=PG_Rect(), const char* text="", PG_RadioButton* firstOfGroup = NULL, const 
char* style="RadioButton");
  
        /** */

Index: pgrichedit.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgrichedit.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** pgrichedit.h        15 Apr 2002 13:35:35 -0000      1.3
--- pgrichedit.h        26 Jun 2002 16:26:39 -0000      1.4
***************
*** 47,51 ****
        Constructor of the PG_WidgetListEx class
        */
!       PG_RichEdit(PG_Widget* parent, const PG_Rect& r, bool 
autoVerticalResize = false, Uint32 linewidth = 0, Uint32 tabSize = 30, Uint32 
childsborderwidth = 8, const char* style="WidgetList");
  
        /**
--- 47,51 ----
        Constructor of the PG_WidgetListEx class
        */
!       PG_RichEdit(PG_Widget* parent, const PG_Rect& r=PG_Rect(), bool 
autoVerticalResize = false, Uint32 linewidth = 0, Uint32 tabSize = 30, Uint32 
childsborderwidth = 8, const char* style="WidgetList");
  
        /**

Index: pgscrollbar.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgscrollbar.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** pgscrollbar.h       2 May 2002 09:50:38 -0000       1.6
--- pgscrollbar.h       26 Jun 2002 16:26:39 -0000      1.7
***************
*** 85,89 ****
  
        /**  */
!       PG_ScrollBar(PG_Widget* parent, int id, const PG_Rect& r, int direction 
= PG_SB_VERTICAL, const char* style="Scrollbar");
  
        /**  */
--- 85,89 ----
  
        /**  */
!       PG_ScrollBar(PG_Widget* parent, int id, const PG_Rect& r=PG_Rect(), int 
direction = PG_SB_VERTICAL, const char* style="Scrollbar");
  
        /**  */

Index: pgslider.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgslider.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** pgslider.h  27 Apr 2002 15:36:55 -0000      1.5
--- pgslider.h  26 Jun 2002 16:26:39 -0000      1.6
***************
*** 38,42 ****
  
        /** */
!       PG_Slider(PG_Widget* parent, int id, const PG_Rect& r, int direction = 
PG_SB_VERTICAL, const char* style="Slider");
  
        /** */
--- 38,42 ----
  
        /** */
!       PG_Slider(PG_Widget* parent, int id, const PG_Rect& r=PG_Rect(), int 
direction = PG_SB_VERTICAL, const char* style="Slider");
  
        /** */

Index: pgspinnerbox.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgspinnerbox.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** pgspinnerbox.h      2 May 2002 09:50:38 -0000       1.6
--- pgspinnerbox.h      26 Jun 2002 16:26:39 -0000      1.7
***************
*** 58,62 ****
        /**
        */
!       PG_SpinnerBox(PG_Widget *parent, const PG_Rect& r, const char* style = 
"SpinnerBox");
  
        /**
--- 58,62 ----
        /**
        */
!       PG_SpinnerBox(PG_Widget *parent, const PG_Rect& r=PG_Rect(), const 
char* style = "SpinnerBox");
  
        /**

Index: pgtabbar.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgtabbar.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** pgtabbar.h  28 Apr 2002 16:35:30 -0000      1.4
--- pgtabbar.h  26 Jun 2002 16:26:39 -0000      1.5
***************
*** 12,16 ****
  public:
        
!       PG_TabBar(PG_Widget* parent, const PG_Rect r, const char* style = 
"TabBar");
        ~PG_TabBar();
        
--- 12,16 ----
  public:
        
!       PG_TabBar(PG_Widget* parent, const PG_Rect r=PG_Rect(), const char* 
style = "TabBar");
        ~PG_TabBar();
        

Index: pgwidgetlist.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgwidgetlist.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** pgwidgetlist.h      26 Jun 2002 16:00:20 -0000      1.9
--- pgwidgetlist.h      26 Jun 2002 16:26:39 -0000      1.10
***************
*** 52,56 ****
        Constructor of the PG_Widget class
        */
!       PG_WidgetList(PG_Widget* parent, const PG_Rect& r, const char* 
style="WidgetList");
  
        /**
--- 52,56 ----
        Constructor of the PG_Widget class
        */
!       PG_WidgetList(PG_Widget* parent, const PG_Rect& r=PG_Rect(), const 
char* style="WidgetList");
  
        /**

Index: pgwidgetlistex.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgwidgetlistex.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** pgwidgetlistex.h    26 Jun 2002 16:00:20 -0000      1.4
--- pgwidgetlistex.h    26 Jun 2002 16:26:39 -0000      1.5
***************
*** 46,50 ****
        Constructor of the PG_WidgetListEx class
        */
!       PG_WidgetListEx(PG_Widget* parent, const PG_Rect& r, const char* 
style="WidgetList");
  
        /**
--- 46,50 ----
        Constructor of the PG_WidgetListEx class
        */
!       PG_WidgetListEx(PG_Widget* parent, const PG_Rect& r=PG_Rect(), const 
char* style="WidgetList");
  
        /**




reply via email to

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