Home | History | Annotate | Download | only in cybergfx
      1 /*
      2     SDL - Simple DirectMedia Layer
      3     Copyright (C) 1997-2006 Sam Lantinga
      4 
      5     This library is free software; you can redistribute it and/or
      6     modify it under the terms of the GNU Lesser General Public
      7     License as published by the Free Software Foundation; either
      8     version 2.1 of the License, or (at your option) any later version.
      9 
     10     This library is distributed in the hope that it will be useful,
     11     but WITHOUT ANY WARRANTY; without even the implied warranty of
     12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     13     Lesser General Public License for more details.
     14 
     15     You should have received a copy of the GNU Lesser General Public
     16     License along with this library; if not, write to the Free Software
     17     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
     18 
     19     Sam Lantinga
     20     slouken (at) libsdl.org
     21 */
     22 #include "SDL_config.h"
     23 
     24 #include "SDL_version.h"
     25 #include "SDL_timer.h"
     26 #include "SDL_video.h"
     27 #include "SDL_syswm.h"
     28 #include "../../events/SDL_events_c.h"
     29 #include "../SDL_pixels_c.h"
     30 #include "SDL_cgxmodes_c.h"
     31 #include "SDL_cgxwm_c.h"
     32 
     33 /* This is necessary for working properly with Enlightenment, etc. */
     34 #define USE_ICON_WINDOW
     35 
     36 void CGX_SetIcon(_THIS, SDL_Surface *icon, Uint8 *mask)
     37 {
     38 /* Not yet implemented */
     39 }
     40 
     41 void CGX_SetCaption(_THIS, const char *title, const char *icon)
     42 {
     43 	if(SDL_Window)
     44 		SetWindowTitles(SDL_Window,(char *)title,NULL);
     45 }
     46 
     47 /* Iconify the window */
     48 int CGX_IconifyWindow(_THIS)
     49 {
     50 /* Not yet implemented */
     51 	return 0;
     52 }
     53 
     54 int CGX_GetWMInfo(_THIS, SDL_SysWMinfo *info)
     55 {
     56 	if ( info->version.major <= SDL_MAJOR_VERSION ) {
     57 		return(1);
     58 	} else {
     59 		SDL_SetError("Application not compiled with SDL %d.%d\n",
     60 					SDL_MAJOR_VERSION, SDL_MINOR_VERSION);
     61 		return(-1);
     62 	}
     63 }
     64