]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/app.h
Rotated text patch from Hans-Joachim Baader (with some corrections)
[wxWidgets.git] / include / wx / mac / app.h
CommitLineData
0dbd6262
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: app.h
3// Purpose: wxApp class
4// Author: AUTHOR
5// Modified by:
6// Created: ??/??/98
7// RCS-ID: $Id$
8// Copyright: (c) AUTHOR
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_APP_H_
13#define _WX_APP_H_
14
15#ifdef __GNUG__
16#pragma interface "app.h"
17#endif
18
19#include "wx/defs.h"
20#include "wx/object.h"
21#include "wx/gdicmn.h"
22#include "wx/event.h"
23
24class WXDLLEXPORT wxFrame;
25class WXDLLEXPORT wxWindow;
26class WXDLLEXPORT wxApp ;
27class WXDLLEXPORT wxKeyEvent;
28class WXDLLEXPORT wxLog;
29
30#define wxPRINT_WINDOWS 1
31#define wxPRINT_POSTSCRIPT 2
32
33WXDLLEXPORT_DATA(extern wxApp*) wxTheApp;
34
35// Force an exit from main loop
36void WXDLLEXPORT wxExit();
37
38// Yield to other apps/messages
39bool WXDLLEXPORT wxYield();
40
41// Represents the application. Derive OnInit and declare
42// a new App object to start application
43class WXDLLEXPORT wxApp: public wxEvtHandler
44{
45 DECLARE_DYNAMIC_CLASS(wxApp)
46 wxApp();
47 inline ~wxApp() {}
48
49 static void SetInitializerFunction(wxAppInitializerFunction fn) { m_appInitFn = fn; }
50 static wxAppInitializerFunction GetInitializerFunction() { return m_appInitFn; }
51
52 virtual int MainLoop();
53 void ExitMainLoop();
54 bool Initialized();
55 virtual bool Pending() ;
56 virtual void Dispatch() ;
57
58 void OnIdle(wxIdleEvent& event);
59
60// Generic
61 virtual bool OnInit() { return FALSE; };
62
63 // No specific tasks to do here.
64 virtual bool OnInitGui() { return TRUE; }
65
66 // Called to set off the main loop
67 virtual int OnRun() { return MainLoop(); };
68 virtual int OnExit() { return 0; }
69
70 inline void SetPrintMode(int mode) { m_printMode = mode; }
71 inline int GetPrintMode() const { return m_printMode; }
72
73 inline void SetExitOnFrameDelete(bool flag) { m_exitOnFrameDelete = flag; }
74 inline bool GetExitOnFrameDelete() const { return m_exitOnFrameDelete; }
75
76 inline wxString GetAppName() const {
77 if (m_appName != "")
78 return m_appName;
79 else return m_className;
80 }
81
82 inline void SetAppName(const wxString& name) { m_appName = name; };
83 inline wxString GetClassName() const { return m_className; }
84 inline void SetClassName(const wxString& name) { m_className = name; }
85
86 void SetVendorName(const wxString& vendorName) { m_vendorName = vendorName; }
87 const wxString& GetVendorName() const { return m_vendorName; }
88
89 wxWindow *GetTopWindow() const ;
90 inline void SetTopWindow(wxWindow *win) { m_topWindow = win; }
91
92 inline void SetWantDebugOutput(bool flag) { m_wantDebugOutput = flag; }
93 inline bool GetWantDebugOutput() { return m_wantDebugOutput; }
94
95 // Send idle event to all top-level windows.
96 // Returns TRUE if more idle time is requested.
97 bool SendIdleEvents();
98
99 // Send idle event to window and all subwindows
100 // Returns TRUE if more idle time is requested.
101 bool SendIdleEvents(wxWindow* win);
102
103 // Windows only, but for compatibility...
104 inline void SetAuto3D(bool flag) { m_auto3D = flag; }
105 inline bool GetAuto3D() const { return m_auto3D; }
106
107 // Creates a log object
108 virtual wxLog* CreateLogTarget();
109
110public:
111 // Will always be set to the appropriate, main-style values.
112 int argc;
113 char ** argv;
114
115protected:
116 bool m_wantDebugOutput ;
117 wxString m_className;
118 wxString m_appName,
119 m_vendorName;
120 wxWindow * m_topWindow;
121 bool m_exitOnFrameDelete;
122 bool m_showOnInit;
123 int m_printMode; // wxPRINT_WINDOWS, wxPRINT_POSTSCRIPT
124 bool m_auto3D ; // Always use 3D controls, except
125 // where overriden
126 static wxAppInitializerFunction m_appInitFn;
127
128public:
129
130 // Implementation
131 static bool Initialize();
132 static void CleanUp();
133
134 void DeletePendingObjects();
135 bool ProcessIdle();
136
137public:
138 static long sm_lastMessageTime;
519cb848
SC
139 static wxWindow* s_captureWindow ;
140 static int s_lastMouseDown ; // 0 = none , 1 = left , 2 = right
141 static RgnHandle s_macCursorRgn ;
142 EventRecord* m_macCurrentEvent ;
143
0dbd6262
SC
144 int m_nCmdShow;
145
146protected:
147 bool m_keepGoing ;
148
8be97d65
SC
149// mac specifics
150
151public :
519cb848
SC
152 static bool s_macDefaultEncodingIsPC ;
153 static bool s_macSupportPCMenuShortcuts ;
154 static long s_macAboutMenuItemId ;
155 static wxString s_macHelpMenuTitleName ;
156
157 static bool s_macHasAppearance ;
158 static long s_macAppearanceVersion ;
159 static bool s_macHasNavigation ;
160 static bool s_macNavigationVersion ;
161 static bool s_macHasWindowManager ;
162 static long s_macWindowManagerVersion ;
163 static bool s_macHasMenuManager ;
164 static long s_macMenuManagerVersion ;
165 static bool s_macHasDialogManager ;
166 static long s_macDialogManagerVersion ;
167
168 RgnHandle m_macCursorRgn ;
169 RgnHandle m_macSleepRgn ;
170 RgnHandle m_macHelpRgn ;
8be97d65 171
519cb848
SC
172 virtual void MacSuspend( bool convertClipboard ) ;
173 virtual void MacResume( bool convertClipboard ) ;
8be97d65 174
519cb848
SC
175 virtual void MacConvertPrivateToPublicScrap() ;
176 virtual void MacConvertPublicToPrivateScrap() ;
177
178 // event main methods
179
180 void MacDoOneEvent() ;
181 void MacHandleOneEvent( EventRecord *ev ) ;
182 EventRecord* MacGetCurrentEvent() { return m_macCurrentEvent ; }
183 // primary events
8be97d65 184
519cb848
SC
185 virtual void MacHandleMouseDownEvent( EventRecord *ev ) ;
186 virtual void MacHandleMouseUpEvent( EventRecord *ev ) ;
187 virtual void MacHandleActivateEvent( EventRecord *ev ) ;
188 virtual void MacHandleUpdateEvent( EventRecord *ev ) ;
189 virtual void MacHandleKeyDownEvent( EventRecord *ev ) ;
190 virtual void MacHandleKeyUpEvent( EventRecord *ev ) ;
191 virtual void MacHandleDiskEvent( EventRecord *ev ) ;
192 virtual void MacHandleOSEvent( EventRecord *ev ) ;
193 virtual void MacHandleHighLevelEvent( EventRecord *ev ) ;
194 virtual void MacHandleMenuSelect( int menuid , int menuitem ) ;
195
196 virtual OSErr MacHandleAEODoc(AppleEvent *event , AppleEvent *reply) ;
197 virtual OSErr MacHandleAEPDoc(AppleEvent *event , AppleEvent *reply) ;
198 virtual OSErr MacHandleAEOApp(AppleEvent *event , AppleEvent *reply) ;
199 virtual OSErr MacHandleAEQuit(AppleEvent *event , AppleEvent *reply) ;
8be97d65 200
0dbd6262
SC
201DECLARE_EVENT_TABLE()
202};
203
204// TODO: add platform-specific arguments
205int WXDLLEXPORT wxEntry( int argc, char *argv[] );
206
519cb848
SC
207void wxMacConvertFromPCForControls( char * p ) ;
208
209void wxMacConvertToPC( const char *from , char *to , int len ) ;
210void wxMacConvertFromPC( const char *from , char *to , int len ) ;
211void wxMacConvertToPC( const char *from , char *to , int len ) ;
212void wxMacConvertFromPC( char * p ) ;
213void wxMacConvertFromPC( unsigned char *p ) ;
214wxString wxMacMakeMacStringFromPC( const char * p ) ;
215void wxMacConvertToPC( char * p ) ;
216void wxMacConvertToPC( unsigned char *p ) ;
217wxString wxMacMakePCStringFromMac( const char * p ) ;
218
0dbd6262
SC
219#endif
220 // _WX_APP_H_
221