source: AE/Installer/trunk/source/aeinstallerapp.h@ 462

Last change on this file since 462 was 423, checked in by gumby, 15 years ago

Fixed windows bug with window during globalization
Fixed bug with improper install order.

File size: 1.6 KB
RevLine 
[356]1/////////////////////////////////////////////////////////////////////////////
2// Name: main.h
3// Purpose:
4// Author:
5// Modified by:
6// Created: 07/05/2009 17:23:39
7// RCS-ID:
8// Copyright:
9// Licence:
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _AEINSTALLERAPP_H_
13#define _AEINSTALLERAPP_H_
14
15
16/*!
17 * Includes
18 */
19
20////@begin includes
21#include "wx/image.h"
22#include "main_window.h"
23////@end includes
24
[393]25string escapePath(string input);
[379]26
[356]27/*!
28 * Forward declarations
29 */
30
31////@begin forward declarations
32////@end forward declarations
33
34/*!
35 * Control identifiers
36 */
37
38////@begin control identifiers
39////@end control identifiers
40
41/*!
42 * AEInstallerApp class declaration
43 */
44
45class AEInstallerApp: public wxApp
46{
47 DECLARE_CLASS( AEInstallerApp )
48 DECLARE_EVENT_TABLE()
49
50public:
51 /// Constructor
52 AEInstallerApp();
53
54 void Init();
55
56 /// Initialises the application
57 virtual bool OnInit();
58
59 /// Called on exit
60 virtual int OnExit();
61
62////@begin AEInstallerApp event handler declarations
63
64////@end AEInstallerApp event handler declarations
65
66////@begin AEInstallerApp member function declarations
67
68////@end AEInstallerApp member function declarations
69
70////@begin AEInstallerApp member variables
71////@end AEInstallerApp member variables
72};
73
74/*!
75 * Application instance declaration
76 */
77
78////@begin declare app
79DECLARE_APP(AEInstallerApp)
80////@end declare app
81
82#endif
83 // _AEINSTALLERAPP_H_
84int globalizeData(void);
[423]85void globalize2(void);
[356]86MainWindow* TheWindow;
Note: See TracBrowser for help on using the repository browser.