-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform1.cpp
199 lines (153 loc) · 4.27 KB
/
form1.cpp
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
/////////////////////////////////////////////////////////////////////////////
// Name: form1.cpp
// Purpose:
// Author: TSN
// Modified by:
// Created: 13/11/2023 10:18:57
// RCS-ID:
// Copyright:
// 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
#include "form2.h"
////@end includes
#include "form1.h"
////@begin XPM images
#include "tsnsoft.xpm"
////@end XPM images
/*
* Form1 type definition
*/
IMPLEMENT_CLASS(Form1, wxFrame)
/*
* Form1 event table definition
*/
BEGIN_EVENT_TABLE(Form1, wxFrame)
////@begin Form1 event table entries
EVT_BUTTON(ID_BUTTON, Form1::OnNext)
////@end Form1 event table entries
END_EVENT_TABLE()
/*
* Form1 constructors
*/
Form1::Form1()
{
Init();
}
Form1::Form1(wxWindow* parent, wxWindowID id, const wxString& caption, const wxPoint& pos, const wxSize& size, long style)
{
Init();
Create(parent, id, caption, pos, size, style);
}
/*
* Form1 creator
*/
bool Form1::Create(wxWindow* parent, wxWindowID id, const wxString& caption, const wxPoint& pos, const wxSize& size, long style)
{
////@begin Form1 creation
wxFrame::Create(parent, id, caption, pos, size, style);
this->SetFont(wxFont(10, wxFONTFAMILY_SWISS, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL, false, wxT("Tahoma")));
CreateControls();
SetIcon(GetIconResource(wxT("tsnsoft.xpm")));
if (GetSizer())
{
GetSizer()->SetSizeHints(this);
}
Centre();
////@end Form1 creation
return true;
}
/*
* Form1 destructor
*/
Form1::~Form1()
{
////@begin Form1 destruction
////@end Form1 destruction
}
/*
* Member initialisation
*/
void Form1::Init()
{
////@begin Form1 member initialisation
dt = "???";
////@end Form1 member initialisation
}
/*
* Control creation for Form1
*/
void Form1::CreateControls()
{
////@begin Form1 content construction
Form1* itemFrame1 = this;
wxBoxSizer* itemBoxSizer1 = new wxBoxSizer(wxVERTICAL);
itemFrame1->SetSizer(itemBoxSizer1);
wxStaticText* itemStaticText2 = new wxStaticText(itemFrame1, wxID_STATIC, wxT("Введите пароль:"), wxDefaultPosition, wxDefaultSize, 0);
itemStaticText2->SetForegroundColour(wxColour(255, 0, 0));
itemStaticText2->SetFont(wxFont(14, wxFONTFAMILY_SWISS, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL, false, wxT("Tahoma")));
itemBoxSizer1->Add(itemStaticText2, 0, wxALIGN_CENTER_HORIZONTAL | wxALL, 5);
wxTextCtrl* itemTextCtrl3 = new wxTextCtrl(itemFrame1, ID_TEXTCTRL_PASSWORD, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_PASSWORD);
itemTextCtrl3->SetFont(wxFont(12, wxFONTFAMILY_SWISS, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL, false, wxT("Tahoma")));
itemBoxSizer1->Add(itemTextCtrl3, 0, wxALIGN_CENTER_HORIZONTAL | wxALL, 5);
wxButton* itemButton1 = new wxButton(itemFrame1, ID_BUTTON, wxT("Войти"), wxDefaultPosition, wxDefaultSize, 0);
itemButton1->SetDefault();
itemBoxSizer1->Add(itemButton1, 0, wxALIGN_CENTER_HORIZONTAL | wxALL, 5);
////@end Form1 content construction
}
/*
* wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_BUTTON
*/
void Form1::OnNext(wxCommandEvent& event)
{
dt = ((wxTextCtrl*)FindWindow(ID_TEXTCTRL_PASSWORD))->GetValue(); // Запись в открытую переменную
if (dt != "TSN") {
wxMessageBox(wxT("Введите правильное имя: TSN !"), wxT("Ошибка"), wxOK | wxICON_ERROR);
return;
}
Form2* window = new Form2(this); // Создание окна 2
window->Show(true); // Показ окна 2
Hide(); // Скрытие родительского окна
}
/*
* Should we show tooltips?
*/
bool Form1::ShowToolTips()
{
return true;
}
/*
* Get bitmap resources
*/
wxBitmap Form1::GetBitmapResource(const wxString& name)
{
// Bitmap retrieval
////@begin Form1 bitmap retrieval
wxUnusedVar(name);
return wxNullBitmap;
////@end Form1 bitmap retrieval
}
/*
* Get icon resources
*/
wxIcon Form1::GetIconResource(const wxString& name)
{
// Icon retrieval
////@begin Form1 icon retrieval
wxUnusedVar(name);
if (name == wxT("tsnsoft.xpm"))
{
wxIcon icon(tsnsoft_xpm);
return icon;
}
return wxNullIcon;
////@end Form1 icon retrieval
}