|
From: <sr...@us...> - 2003-10-26 09:51:13
|
Update of /cvsroot/aedgui/aedGUI/themes
In directory sc8-pr-cvs1:/tmp/cvs-serv17813/themes
Modified Files:
gtk.cpp industrial.cpp
Log Message:
Small changes to the test programs so they now compile.
Index: gtk.cpp
===================================================================
RCS file: /cvsroot/aedgui/aedGUI/themes/gtk.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** gtk.cpp 15 Sep 2003 09:16:18 -0000 1.3
--- gtk.cpp 26 Oct 2003 08:50:59 -0000 1.4
***************
*** 10,15 ****
public:
gtkStyle();
! void drawBox(aedWindow * widget, SDL_Surface * screen);
! void drawBorder(aedWindow * widget, SDL_Surface * screen);
void drawButton(aedButton * widget, SDL_Surface * screen);
};
--- 10,15 ----
public:
gtkStyle();
! void drawBox(aedWidget * widget, SDL_Surface * screen);
! void drawBorder(aedWidget * widget, SDL_Surface * screen);
void drawButton(aedButton * widget, SDL_Surface * screen);
};
***************
*** 127,131 ****
void
! gtkStyle::drawBorder(aedWindow * widget, SDL_Surface * screen)
{
DrawLine(screen, 0, 0, screen->w, 0,
--- 127,131 ----
void
! gtkStyle::drawBorder(aedWidget * widget, SDL_Surface * screen)
{
DrawLine(screen, 0, 0, screen->w, 0,
***************
*** 167,171 ****
void
! gtkStyle::drawBox(aedWindow * widget, SDL_Surface * screen)
{
--- 167,171 ----
void
! gtkStyle::drawBox(aedWidget * widget, SDL_Surface * screen)
{
Index: industrial.cpp
===================================================================
RCS file: /cvsroot/aedgui/aedGUI/themes/industrial.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** industrial.cpp 15 Sep 2003 09:16:18 -0000 1.2
--- industrial.cpp 26 Oct 2003 08:50:59 -0000 1.3
***************
*** 35,39 ****
defaultTextColor.setAllColors(0, 0, 0, 255);
! colorDefaultWindowBackground.setAllColors(246, 246, 246, 255);
colorBoxBackground.setAllColors(255, 255, 255, 255);
colorButtonNormal1.setAllColors(246, 246, 246, 255);
--- 35,39 ----
defaultTextColor.setAllColors(0, 0, 0, 255);
! colorDefaultWidgetBackground.setAllColors(246, 246, 246, 255);
colorBoxBackground.setAllColors(255, 255, 255, 255);
colorButtonNormal1.setAllColors(246, 246, 246, 255);
|