[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[paragui-cvs] CVS: paragui/include paraconfig.h,1.1.1.1,1.2 paragui.h,1.
From: |
Alexander Pipelka <address@hidden> |
Subject: |
[paragui-cvs] CVS: paragui/include paraconfig.h,1.1.1.1,1.2 paragui.h,1.1.1.1,1.2 paragui_types.h,1.1.1.1,1.2 pgapplication.h,1.1.1.1,1.2 pgbutton.h,1.1.1.1,1.2 pgbuttongroup.h,1.1.1.1,1.2 pgcheckbutton.h,1.1.1.1,1.2 pgcolors.h,1.1.1.1,1.2 pgcolumnitem.h,1.1.1.1,1.2 pgcompat.h,1.1.1.1,1.2 pgdatacontainer.h,1.1.1.1,1.2 pgdraw.h,1.1.1.1,1.2 pgdropdown.h,1.1.1.1,1.2 pgeventobject.h,1.1.1.1,1.2 pgfile.h,1.1.1.1,1.2 pgfilearchive.h,1.1.1.1,1.2 pgfont.h,1.1.1.1,1.2 pgimage.h,1.1.1.1,1.2 pginfo.h,1.1.1.1,1.2 pglabel.h,1.1.1.1,1.2 pglayout.h,1.1.1.1,1.2 pglineedit.h,1.1.1.1,1.2 pglistbox.h,1.1.1.1,1.2 pglistboxbaseitem.h,1.1.1.1,1.2 pglistboxitem.h,1.1.1.1,1.2 pglog.h,1.1.1.1,1.2 pgmaskedit.h,1.1.1.1,1.2 pgmenubar.h,1.1.1.1,1.2 pgmessagebox.h,1.1.1.1,1.2 pgmessageobject.h,1.1.1.1,1.2 pgnavigator.h,1.1.1.1,1.2 pgnotebook.h,1.1.1.1,1.2 pgpopupmenu.h,1.1.1.1,1.2 pgprogressbar.h,1.1.1.1,1.2 pgradiobutton.h,1.1.1.1,1.2 pgrect.h,1.1.1.1,1.2 pgrectlist.h,1.1.1.1,1.2 pgrichedit.h,1.1.1.1,1.2 pgscrollbar.h,1.1.1.1,1.2 pgslider.h,1.1.1.1,1.2 pgspinnerbox.h,1.1.1.1,1.2 pgsurfacecache.h,1.1.1.1,1.2 pgtheme.h,1.1.1.1,1.2 pgthemewidget.h,1.1.1.1,1.2 pgwidget.h,1.1.1.1,1.2 pgwidgetdnd.h,1.1.1.1,1.2 pgwidgetlist.h,1.1.1.1,1.2 pgwidgetlistex.h,1.1.1.1,1.2 pgwindow.h,1.1.1.1,1.2 |
Date: |
Mon, 15 Apr 2002 09:31:37 -0400 |
Update of /cvsroot/paragui/paragui/include
In directory subversions:/tmp/cvs-serv21582/include
Modified Files:
paraconfig.h paragui.h paragui_types.h pgapplication.h
pgbutton.h pgbuttongroup.h pgcheckbutton.h pgcolors.h
pgcolumnitem.h pgcompat.h pgdatacontainer.h pgdraw.h
pgdropdown.h pgeventobject.h pgfile.h pgfilearchive.h pgfont.h
pgimage.h pginfo.h pglabel.h pglayout.h pglineedit.h
pglistbox.h pglistboxbaseitem.h pglistboxitem.h pglog.h
pgmaskedit.h pgmenubar.h pgmessagebox.h pgmessageobject.h
pgnavigator.h pgnotebook.h pgpopupmenu.h pgprogressbar.h
pgradiobutton.h pgrect.h pgrectlist.h pgrichedit.h
pgscrollbar.h pgslider.h pgspinnerbox.h pgsurfacecache.h
pgtheme.h pgthemewidget.h pgwidget.h pgwidgetdnd.h
pgwidgetlist.h pgwidgetlistex.h pgwindow.h
Log Message:
imported version 1.0.1
Index: paraconfig.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/paraconfig.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** paraconfig.h 15 Apr 2002 13:22:32 -0000 1.1.1.1
--- paraconfig.h 15 Apr 2002 13:31:30 -0000 1.2
***************
*** 33,37 ****
#undef VERSION
! #if defined(WIN32) && defined(_MSC_VER)
#include "paraconfig_win32.h"
#else // GNU
--- 33,37 ----
#undef VERSION
! #if (defined(WIN32) || defined(__WIN32__)) && (defined(_MSC_VER) ||
defined(__BCPLUSPLUS__))
#include "paraconfig_win32.h"
#else // GNU
Index: paragui.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/paragui.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** paragui.h 15 Apr 2002 13:22:32 -0000 1.1.1.1
--- paragui.h 15 Apr 2002 13:31:30 -0000 1.2
***************
*** 98,101 ****
--- 98,111 ----
/**
+ calculate the minimum of 2 values
+ */
+ #define PG_MAX(a, b) ((a<b) ? b : a)
+
+ /**
+ calculate the maximum of 2 values
+ */
+ #define PG_MIN(a, b) ((a<b) ? a : b)
+
+ /**
default display depth.
this is the default display depth used for PG_Application::InitScreen.
Index: paragui_types.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/paragui_types.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgapplication.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgapplication.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** pgapplication.h 15 Apr 2002 13:22:31 -0000 1.1.1.1
--- pgapplication.h 15 Apr 2002 13:31:30 -0000 1.2
***************
*** 229,235 ****
/**
! Set the application search patch
! @param path the application will search for file (images,...) in
this patch
*/
static void SetApplicationPath(const char* path);
--- 229,236 ----
/**
! Add an application search path
! @param path the application will search for file (images,...) in
this path,
! as well as in
all pathes previously added.
*/
static void SetApplicationPath(const char* path);
***************
*** 355,359 ****
@param name name of the xml file
@param WorkCallback address of the progress callback function
! @param UserSace address of user data with are returned by Processing
instruction etc.
@return returns non-zero on success or 0 if not succes
*/
--- 356,360 ----
@param name name of the xml file
@param WorkCallback address of the progress callback function
! @param UserSpace address of user data with are returned by Processing
instruction etc.
@return returns non-zero on success or 0 if not succes
*/
***************
*** 364,368 ****
/**
Get widget by name
! @param name name of the widget
@return pointer to the requested widget or null if failed
*/
--- 365,369 ----
/**
Get widget by name
! @param Name name of the widget
@return pointer to the requested widget or null if failed
*/
Index: pgbutton.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgbutton.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** pgbutton.h 15 Apr 2002 13:22:31 -0000 1.1.1.1
--- pgbutton.h 15 Apr 2002 13:31:30 -0000 1.2
***************
*** 159,163 ****
/**
! Set the gbackground.
@param state buttonstate to set
@param background pointer to background surface
--- 159,163 ----
/**
! Set the background.
@param state buttonstate to set
@param background pointer to background surface
***************
*** 229,232 ****
--- 229,250 ----
bool GetPressed();
+ /**
+ Set the blend-level of gradient and background image
+ @param blend blend-level
+ @param mode one of BTN_STATE_NORMAL, BTN_STATE_PRESSED, BTN_STATE_HIGH
+ This function sets the blend level of gradient and background image.
+
+ If the blend-level is 0 only the background image is visible.
+ At a level of 255 only the gradient is visible.
+ */
+ void SetBlendLevel(int mode, Uint8 blend);
+
+ /**
+ Get the current blend level.
+ @param mode button mode
+ @return the current blend level
+ */
+ Uint8 GetBlendLevel(int mode);
+
protected:
Index: pgbuttongroup.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgbuttongroup.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgcheckbutton.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgcheckbutton.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgcolors.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgcolors.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** pgcolors.h 15 Apr 2002 13:22:33 -0000 1.1.1.1
--- pgcolors.h 15 Apr 2002 13:31:30 -0000 1.2
***************
*** 556,560 ****
--- 556,562 ----
const SDL_Color VioletRed2 = {238, 58, 140};
const SDL_Color violetred2 = {238, 58, 140};
+ #ifndef __BORLANDC__
const SDL_Color tan = {210, 180, 140};
+ #endif
const SDL_Color SeaGreen2 = {78, 238, 148};
const SDL_Color seagreen2 = {78, 238, 148};
Index: pgcolumnitem.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgcolumnitem.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgcompat.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgcompat.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgdatacontainer.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgdatacontainer.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgdraw.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgdraw.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgdropdown.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgdropdown.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgeventobject.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgeventobject.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgfile.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgfile.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgfilearchive.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgfilearchive.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** pgfilearchive.h 15 Apr 2002 13:22:31 -0000 1.1.1.1
--- pgfilearchive.h 15 Apr 2002 13:31:30 -0000 1.2
***************
*** 252,255 ****
--- 252,266 ----
static bool UnloadSurface(SDL_Surface* surface, bool bDeleteIfNotExists
= true);
+ /**
+ Enable / disable the use of symlinks.
+ By default, the file I/O routines will check if a file is really a
symlink during open
+ calls and fail if it is. Otherwise, the link could take you
outside the
+ write and search paths, and compromise security.
+
+ Symbolic link permission can be enabled or disabled at any
time, and is
+ disabled by default
+ */
+ static void EnableSymlinks(bool followSymlinks);
+
private:
Index: pgfont.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgfont.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgimage.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgimage.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** pgimage.h 15 Apr 2002 13:22:31 -0000 1.1.1.1
--- pgimage.h 15 Apr 2002 13:31:30 -0000 1.2
***************
*** 57,60 ****
--- 57,61 ----
@param p position of the PG_Image widget
@param filename image-file to load
+ @param style widgetstyle to use
This constructor creates the widget and loads the image from a file
*/
***************
*** 67,70 ****
--- 68,72 ----
@param image pointer to imagedata (SDL_Surface)
@param freeimage if true the imagedata is handled by the widget
+ @param style widgetstyle to use
*/
#ifdef SWIG
Index: pginfo.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pginfo.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pglabel.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pglabel.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** pglabel.h 15 Apr 2002 13:22:31 -0000 1.1.1.1
--- pglabel.h 15 Apr 2002 13:31:30 -0000 1.2
***************
*** 95,100 ****
/** Draw event handler
! @param SDL_Surface Surface to draw to.
! @param rect Rectangle to draw in, relative to
surface.
*/
void eventDraw(SDL_Surface* surface, const PG_Rect& rect);
--- 95,100 ----
/** Draw event handler
! @param surface Surface to draw to.
! @param rect Rectangle to draw in, relative to surface.
*/
void eventDraw(SDL_Surface* surface, const PG_Rect& rect);
Index: pglayout.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pglayout.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pglineedit.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pglineedit.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pglistbox.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pglistbox.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pglistboxbaseitem.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pglistboxbaseitem.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pglistboxitem.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pglistboxitem.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pglog.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pglog.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgmaskedit.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgmaskedit.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgmenubar.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgmenubar.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgmessagebox.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgmessagebox.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgmessageobject.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgmessageobject.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** pgmessageobject.h 15 Apr 2002 13:22:31 -0000 1.1.1.1
--- pgmessageobject.h 15 Apr 2002 13:31:30 -0000 1.2
***************
*** 234,238 ****
The default implementation returns 'false' which indicates that this
message is not processed by this object.
! @param quit SDL_QuitEvent message
@return Notifies the message pump if this message is processed by this
object or it should be routed to the next message receiver.
--- 234,240 ----
The default implementation returns 'false' which indicates that this
message is not processed by this object.
! @param id id of the sending widget
! @param widget pointer to the widget
! @param data event specific data
@return Notifies the message pump if this message is processed by this
object or it should be routed to the next message receiver.
***************
*** 244,248 ****
The default implementation returns 'false' which indicates that this
message is not processed by this object.
! @param quit SDL_QuitEvent message
@return Notifies the message pump if this message is processed by this
object or it should be routed to the next message receiver.
--- 246,252 ----
The default implementation returns 'false' which indicates that this
message is not processed by this object.
! @param id id of the sending widget
! @param widget pointer to the widget
! @param data event specific data
@return Notifies the message pump if this message is processed by this
object or it should be routed to the next message receiver.
Index: pgnavigator.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgnavigator.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgnotebook.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgnotebook.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgpopupmenu.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgpopupmenu.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgprogressbar.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgprogressbar.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgradiobutton.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgradiobutton.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgrect.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgrect.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgrectlist.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgrectlist.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgrichedit.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgrichedit.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** pgrichedit.h 15 Apr 2002 13:22:31 -0000 1.1.1.1
--- pgrichedit.h 15 Apr 2002 13:31:30 -0000 1.2
***************
*** 32,36 ****
#include "paragui.h"
#include "pgwidgetlistex.h"
! #include "map"
/**
--- 32,36 ----
#include "paragui.h"
#include "pgwidgetlistex.h"
! #include <map>
/**
***************
*** 83,87 ****
bool my_AutoVerticalResize;
! typedef struct RichWordDescription {
std::string my_Word;
Uint32 my_Width;
--- 83,87 ----
bool my_AutoVerticalResize;
! struct RichWordDescription {
std::string my_Word;
Uint32 my_Width;
***************
*** 100,104 ****
typedef std::vector<size_t> Size_tArray;
! typedef struct RichLinePart {
Uint32 my_Left;
Size_tArray my_WordIndexes;
--- 100,104 ----
typedef std::vector<size_t> Size_tArray;
! struct RichLinePart {
Uint32 my_Left;
Size_tArray my_WordIndexes;
***************
*** 124,128 ****
typedef std::vector<RichLinePart> RichLinePartArray;
! typedef struct RichLine {
Uint32 my_BaseLine;
Uint32 my_LineSpace;
--- 124,128 ----
typedef std::vector<RichLinePart> RichLinePartArray;
! struct RichLine {
Uint32 my_BaseLine;
Uint32 my_LineSpace;
Index: pgscrollbar.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgscrollbar.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgslider.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgslider.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgspinnerbox.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgspinnerbox.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgsurfacecache.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgsurfacecache.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgtheme.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgtheme.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgthemewidget.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgthemewidget.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** pgthemewidget.h 15 Apr 2002 13:22:32 -0000 1.1.1.1
--- pgthemewidget.h 15 Apr 2002 13:31:30 -0000 1.2
***************
*** 140,152 ****
%name(SetBackgroundFile) bool SetBackground(const char* filename, int
mode=BKMODE_TILE);
#else
- /**
- Set the background of the widget
- @param filename name of the image file to load
- @param mode background drawing mode
- @return true on success
- */
bool SetBackground(const char* filename, int mode=BKMODE_TILE);
#endif
/**
--- 140,159 ----
%name(SetBackgroundFile) bool SetBackground(const char* filename, int
mode=BKMODE_TILE);
#else
bool SetBackground(const char* filename, int mode=BKMODE_TILE);
#endif
+
+ /**
+ Load the background image from a file and set the colorkey
+ @param filename path to background image file
+ @param colorkey colorkey (0x00RRGGBB)
+ @param mode BKMODE_TILE | BKMODE_STRETCH
+ */
+ /** */
+ #ifdef SWIG
+ %name(SetBackgroundColorKey) bool SetBackground(const char* filename,
int mode, Uint32 colorkey);
+ #else
+ bool SetBackground(const char* filename, int mode, Uint32 colorkey);
+ #endif
/**
Index: pgwidget.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgwidget.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** pgwidget.h 15 Apr 2002 13:22:30 -0000 1.1.1.1
--- pgwidget.h 15 Apr 2002 13:31:30 -0000 1.2
***************
*** 117,121 ****
@param widgettype name of the widgettype
- @param objectname name of the object
Loads the defined style for a given widgettype
--- 117,120 ----
***************
*** 132,136 ****
Loads the defined style of a given widgettype and objectname.
*/
! virtual void LoadThemeStyle(const char* widgettype, const char*
objectname);
#endif
--- 131,135 ----
Loads the defined style of a given widgettype and objectname.
*/
! virtual void LoadThemeStyle(const char* widgettype, const char*
objectnmae);
#endif
***************
*** 796,799 ****
--- 795,803 ----
*/
virtual int RunModal();
+
+ /**
+ Quit modal mode
+ */
+ void QuitModal();
/**
Index: pgwidgetdnd.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgwidgetdnd.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgwidgetlist.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgwidgetlist.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** pgwidgetlist.h 15 Apr 2002 13:22:32 -0000 1.1.1.1
--- pgwidgetlist.h 15 Apr 2002 13:31:30 -0000 1.2
***************
*** 52,55 ****
--- 52,57 ----
*/
+ struct PG_WidgetListDataInternal;
+
class DECLSPEC PG_WidgetList : public PG_ThemeWidget {
public:
***************
*** 214,218 ****
#endif
! void* my_internaldata;
};
--- 216,220 ----
#endif
! PG_WidgetListDataInternal* my_internaldata;
};
Index: pgwidgetlistex.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgwidgetlistex.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
Index: pgwindow.h
===================================================================
RCS file: /cvsroot/paragui/paragui/include/pgwindow.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [paragui-cvs] CVS: paragui/include paraconfig.h,1.1.1.1,1.2 paragui.h,1.1.1.1,1.2 paragui_types.h,1.1.1.1,1.2 pgapplication.h,1.1.1.1,1.2 pgbutton.h,1.1.1.1,1.2 pgbuttongroup.h,1.1.1.1,1.2 pgcheckbutton.h,1.1.1.1,1.2 pgcolors.h,1.1.1.1,1.2 pgcolumnitem.h,1.1.1.1,1.2 pgcompat.h,1.1.1.1,1.2 pgdatacontainer.h,1.1.1.1,1.2 pgdraw.h,1.1.1.1,1.2 pgdropdown.h,1.1.1.1,1.2 pgeventobject.h,1.1.1.1,1.2 pgfile.h,1.1.1.1,1.2 pgfilearchive.h,1.1.1.1,1.2 pgfont.h,1.1.1.1,1.2 pgimage.h,1.1.1.1,1.2 pginfo.h,1.1.1.1,1.2 pglabel.h,1.1.1.1,1.2 pglayout.h,1.1.1.1,1.2 pglineedit.h,1.1.1.1,1.2 pglistbox.h,1.1.1.1,1.2 pglistboxbaseitem.h,1.1.1.1,1.2 pglistboxitem.h,1.1.1.1,1.2 pglog.h,1.1.1.1,1.2 pgmaskedit.h,1.1.1.1,1.2 pgmenubar.h,1.1.1.1,1.2 pgmessagebox.h,1.1.1.1,1.2 pgmessageobject.h,1.1.1.1,1.2 pgnavigator.h,1.1.1.1,1.2 pgnotebook.h,1.1.1.1,1.2 pgpopupmenu.h,1.1.1.1,1.2 pgprogressbar.h,1.1.1.1,1.2 pgradiobutton.h,1.1.1.1,1.2 pgrect.h,1.1.1.1,1.2 pgrectlist.h,1.1.1.1,1.2 pgrichedit.h,1.1.1.1,1.2 pgscrollbar.h,1.1.1.1,1.2 pgslider.h,1.1.1.1,1.2 pgspinnerbox.h,1.1.1.1,1.2 pgsurfacecache.h,1.1.1.1,1.2 pgtheme.h,1.1.1.1,1.2 pgthemewidget.h,1.1.1.1,1.2 pgwidget.h,1.1.1.1,1.2 pgwidgetdnd.h,1.1.1.1,1.2 pgwidgetlist.h,1.1.1.1,1.2 pgwidgetlistex.h,1.1.1.1,1.2 pgwindow.h,1.1.1.1,1.2,
Alexander Pipelka <address@hidden> <=
- Prev by Date:
[paragui-cvs] CVS: paragui/src/widgets Makefile.am,1.1.1.1,1.2 pgbutton.cpp,1.1.1.1,1.2 pgbuttongroup.cpp,1.1.1.1,1.2 pgcheckbutton.cpp,1.1.1.1,1.2 pgcolumnitem.cpp,1.1.1.1,1.2 pgdropdown.cpp,1.1.1.1,1.2 pgimage.cpp,1.1.1.1,1.2 pglabel.cpp,1.1.1.1,1.2 pglineedit.cpp,1.1.1.1,1.2 pglistbox.cpp,1.1.1.1,1.2 pglistboxbaseitem.cpp,1.1.1.1,1.2 pglistboxitem.cpp,1.1.1.1,1.2 pgmaskedit.cpp,1.1.1.1,1.2 pgmessagebox.cpp,1.1.1.1,1.2 pgnotebook.cpp,1.1.1.1,1.2 pgpopupmenu.cpp,1.1.1.1,1.2 pgprogressbar.cpp,1.1.1.1,1.2 pgradiobutton.cpp,1.1.1.1,1.2 pgrichedit.cpp,1.1.1.1,1.2 pgscrollbar.cpp,1.1.1.1,1.2 pgslider.cpp,1.1.1.1,1.2 pgspinnerbox.cpp,1.1.1.1,1.2 pgthemewidget.cpp,1.1.1.1,1.2 pgwidget.cpp,1.1.1.1,1.2 pgwidgetdnd.cpp,1.1.1.1,1.2 pgwidgetlist.cpp,1.1.1.1,1.2 pgwidgetlistex.cpp,1.1.1.1,1.2 pgwindow.cpp,1.1.1.1,1.2
- Next by Date:
[paragui-cvs] CVS: paragui/bin make_colors.pike,1.2,1.3
- Previous by thread:
[paragui-cvs] CVS: paragui/src/widgets Makefile.am,1.1.1.1,1.2 pgbutton.cpp,1.1.1.1,1.2 pgbuttongroup.cpp,1.1.1.1,1.2 pgcheckbutton.cpp,1.1.1.1,1.2 pgcolumnitem.cpp,1.1.1.1,1.2 pgdropdown.cpp,1.1.1.1,1.2 pgimage.cpp,1.1.1.1,1.2 pglabel.cpp,1.1.1.1,1.2 pglineedit.cpp,1.1.1.1,1.2 pglistbox.cpp,1.1.1.1,1.2 pglistboxbaseitem.cpp,1.1.1.1,1.2 pglistboxitem.cpp,1.1.1.1,1.2 pgmaskedit.cpp,1.1.1.1,1.2 pgmessagebox.cpp,1.1.1.1,1.2 pgnotebook.cpp,1.1.1.1,1.2 pgpopupmenu.cpp,1.1.1.1,1.2 pgprogressbar.cpp,1.1.1.1,1.2 pgradiobutton.cpp,1.1.1.1,1.2 pgrichedit.cpp,1.1.1.1,1.2 pgscrollbar.cpp,1.1.1.1,1.2 pgslider.cpp,1.1.1.1,1.2 pgspinnerbox.cpp,1.1.1.1,1.2 pgthemewidget.cpp,1.1.1.1,1.2 pgwidget.cpp,1.1.1.1,1.2 pgwidgetdnd.cpp,1.1.1.1,1.2 pgwidgetlist.cpp,1.1.1.1,1.2 pgwidgetlistex.cpp,1.1.1.1,1.2 pgwindow.cpp,1.1.1.1,1.2
- Next by thread:
[paragui-cvs] CVS: paragui/bin make_colors.pike,1.2,1.3
- Index(es):