]> git.saurik.com Git - wxWidgets.git/blame - include/wx/cocoa/app.h
Always return NO for applicationShouldTerminateAfterLastWindowClosed
[wxWidgets.git] / include / wx / cocoa / app.h
CommitLineData
fb896a32
DE
1/////////////////////////////////////////////////////////////////////////////
2// Name: cocoa/app.h
3// Purpose: wxApp class
4// Author: David Elliott
5// Modified by:
6// Created: 2002/11/27
cdd0a08f 7// RCS-ID: $Id$
fb896a32 8// Copyright: (c) 2002 David Elliott
cdd0a08f 9// Licence: wxWindows licence
fb896a32
DE
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_COCOA_APP_H_
13#define _WX_COCOA_APP_H_
14
cdd0a08f
DE
15// ========================================================================
16// wxApp
17// ========================================================================
fb896a32
DE
18// Represents the application. Derive OnInit and declare
19// a new App object to start application
20class WXDLLEXPORT wxApp: public wxAppBase
21{
22 DECLARE_DYNAMIC_CLASS(wxApp)
23 DECLARE_EVENT_TABLE()
24// ------------------------------------------------------------------------
25// initialization
26// ------------------------------------------------------------------------
27public:
28 wxApp();
29 virtual ~wxApp() {}
30
31// ------------------------------------------------------------------------
32// Cocoa specifics
33// ------------------------------------------------------------------------
34public:
35 inline WX_NSApplication GetNSApplication() { return m_cocoaApp; }
36 void CocoaInstallRequestedIdleHandler() { if(m_isIdle) CocoaInstallIdleHandler(); }
37 inline void CocoaRequestIdle() { m_isIdle = true; }
38protected:
39 WX_NSApplication m_cocoaApp;
14fc7eb4 40 WX_NSThread m_cocoaMainThread;
fb896a32
DE
41 void CocoaInstallIdleHandler();
42 bool m_isIdle;
43
44// ------------------------------------------------------------------------
45// Implementation
46// ------------------------------------------------------------------------
47public:
48 // Implement wxAppBase pure virtuals
e2478fde
VZ
49 virtual void Exit();
50
fb896a32 51 virtual bool Yield(bool onlyIfNeeded = FALSE);
bf252640 52 virtual void WakeUpIdle() { CocoaRequestIdle(); }
fb896a32 53
05e2b077 54 virtual bool Initialize(int& argc, wxChar **argv);
94826170 55 virtual void CleanUp();
47f1ad6a
DE
56 virtual bool CallOnInit();
57
fb896a32
DE
58
59 virtual bool OnInit();
60 virtual bool OnInitGui();
b93d8cc4
DE
61
62#ifdef __WXDEBUG__
63 virtual void OnAssert(const wxChar *file, int line, const wxChar *cond, const wxChar *msg);
64 bool IsInAssert() const { return m_isInAssert; }
65#endif // __WXDEBUG__
66
67private:
68#ifdef __WXDEBUG__
69 bool m_isInAssert;
70#endif // __WXDEBUG__
fb896a32
DE
71};
72
73#endif // _WX_COCOA_APP_H_