-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlauncher.cpp
More file actions
121 lines (89 loc) · 1.99 KB
/
launcher.cpp
File metadata and controls
121 lines (89 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/////////////////////////////////////////////////////////////////////////////
// Name: launcher.cpp
// Purpose:
// Author: Sergey Talipov
// Modified by:
// Created: 24.04.2025 21:40:57
// RCS-ID:
// Copyright: 15681627-3C745D8E-630127F2
// Licence:
/////////////////////////////////////////////////////////////////////////////
// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif
////@begin includes
////@end includes
#include "launcher.h"
////@begin XPM images
////@end XPM images
/*
* Application instance implementation
*/
////@begin implement app
IMPLEMENT_APP( PVV_TEST_6 )
////@end implement app
/*
* PVV_TEST_6 type definition
*/
IMPLEMENT_CLASS( PVV_TEST_6, wxApp )
/*
* PVV_TEST_6 event table definition
*/
BEGIN_EVENT_TABLE( PVV_TEST_6, wxApp )
////@begin PVV_TEST_6 event table entries
////@end PVV_TEST_6 event table entries
END_EVENT_TABLE()
/*
* Constructor for PVV_TEST_6
*/
PVV_TEST_6::PVV_TEST_6()
{
Init();
}
/*
* Member initialisation
*/
void PVV_TEST_6::Init()
{
////@begin PVV_TEST_6 member initialisation
////@end PVV_TEST_6 member initialisation
}
/*
* Initialisation for PVV_TEST_6
*/
bool PVV_TEST_6::OnInit()
{
////@begin PVV_TEST_6 initialisation
// Remove the comment markers above and below this block
// to make permanent changes to the code.
#if wxUSE_XPM
wxImage::AddHandler(new wxXPMHandler);
#endif
#if wxUSE_LIBPNG
wxImage::AddHandler(new wxPNGHandler);
#endif
#if wxUSE_LIBJPEG
wxImage::AddHandler(new wxJPEGHandler);
#endif
#if wxUSE_GIF
wxImage::AddHandler(new wxGIFHandler);
#endif
MainForm* mainWindow = new MainForm( NULL );
mainWindow->Show(true);
////@end PVV_TEST_6 initialisation
return true;
}
/*
* Cleanup for PVV_TEST_6
*/
int PVV_TEST_6::OnExit()
{
////@begin PVV_TEST_6 cleanup
return wxApp::OnExit();
////@end PVV_TEST_6 cleanup
}