~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/gameengine/GamePlayer/ghost/GPG_Application.h

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
 
 * $Id: GPG_Application.h,v 1.7 2004/05/02 23:45:03 kester Exp $
 
2
 * $Id: GPG_Application.h,v 1.8 2004/12/01 08:35:38 kester Exp $
3
3
 *
4
4
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
5
5
 *
34
34
#include "GHOST_IEventConsumer.h"
35
35
#include "STR_String.h"
36
36
 
 
37
#ifdef WIN32
 
38
#include <wtypes.h>
 
39
#endif
 
40
 
37
41
class KX_KetsjiEngine;
38
42
class KX_ISceneConverter;
39
43
class NG_LoopBackNetworkDeviceInterface;
60
64
                        bool startWindow(STR_String& title, int windowLeft, int windowTop, int windowWidth, int windowHeight,
61
65
                        const bool stereoVisual, const int stereoMode);
62
66
                        bool startFullScreen(int width, int height, int bpp, int frequency, const bool stereoVisual, const int stereoMode);
 
67
#ifdef WIN32
 
68
                        bool startScreenSaverFullScreen(int width, int height, int bpp, int frequency, const bool stereoVisual, const int stereoMode);
 
69
                        bool startScreenSaverPreview(HWND parentWindow, const bool stereoVisual, const int stereoMode);
 
70
#endif
 
71
 
63
72
        virtual bool processEvent(GHOST_IEvent* event);
64
73
                        int getExitRequested(void);
65
74
                        const STR_String& getExitString(void);