forked from AlbertBall/railway-dot-exe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAboutUnit.cpp
173 lines (153 loc) · 6.18 KB
/
AboutUnit.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
//AboutUnit.cpp
/*
BEWARE OF COMMENTS in .cpp files: they were accurate when written but have
sometimes been overtaken by changes and not updated
Comments in .h files are believed to be accurate and up to date
This is a source code file for "railway.exe", a railway operation
simulator, written originally in Borland C++ Builder 4 Professional with
later updates in Embarcadero C++Builder 10.2.
Copyright (C) 2010 Albert Ball [original development]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Buttons.hpp>
#include <ExtCtrls.hpp>
#include <Menus.hpp>
#include <Dialogs.hpp>
#include <Graphics.hpp>
#include <ComCtrls.hpp>
#include <fstream>
#include <vector>
#include <vcl.h>
#pragma hdrstop
#include "AboutUnit.h"
#include "InterfaceUnit.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TAboutForm *AboutForm;
//---------------------------------------------------------------------------
__fastcall TAboutForm::TAboutForm(TComponent* Owner) : TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TAboutForm::FormCreate(TObject *Sender)
{
AboutForm->SetAboutCaption();
AboutForm->Hide();
}
//---------------------------------------------------------------------------
void __fastcall TAboutForm::AboutFormButtonClick(TObject *Sender)
{
AboutForm->Close();
}
//---------------------------------------------------------------------------
void __fastcall TAboutForm::FormClose(TObject *Sender,
TCloseAction &Action)
{
if(Interface->Level1Mode == TInterface::OperMode)
{
Interface->MasterClock->Enabled = true;
}
}
//---------------------------------------------------------------------------
void __fastcall TAboutForm::SetAboutCaption()
{
DWORD VersionHandle;
DWORD VersionSize;
LPBYTE pBuffer;
UnicodeString strVersion = L"N/A";
UnicodeString NL = '\n';
VersionSize = GetFileVersionInfoSizeW(Application->ExeName.c_str(), &VersionHandle);
if(VersionSize)
{
pBuffer = new BYTE[VersionSize];
if(GetFileVersionInfoW(Application->ExeName.c_str(), VersionHandle, VersionSize, pBuffer))
{
VS_FIXEDFILEINFO *fi;
UINT buflen;
//uncomment strVersion and HIWORD alternates below when future CI implemented: [email protected]
if(VerQueryValueW(pBuffer, L"\\", (void** )&fi, &buflen))
{
//strVersion.sprintf(L"%d.%d.%d (Build %d)",
strVersion.sprintf(L"%d.%d.%d",
HIWORD(fi->dwFileVersionMS), LOWORD(fi->dwFileVersionMS),
HIWORD(fi->dwFileVersionLS)
//HIWORD(fi->dwFileVersionLS), LOWORD(fi->dwFileVersionLS)
);
}
}
delete[] pBuffer;
}
AboutLabelCaption->Caption = L"All the tools to design, build and operate your own railway" + NL + NL +
L"Release: " + Interface->ProgramVersion + NL + NL +
L"Copyright (c) 2010 - 2025 Albert Ball\nwith contributions from Stephen A Smith and Kristian Zarębski";
}
//---------------------------------------------------------------------------
void __fastcall TAboutForm::WebsiteLinkLabelLinkClick(TObject *Sender, const UnicodeString Link,
TSysLinkType LinkType)
{
if(LinkType == sltURL)
{
::ShellExecute(Handle, NULL, Link.c_str(), NULL, NULL, SW_SHOWNORMAL);
}
}
//---------------------------------------------------------------------------
void __fastcall TAboutForm::Attribution1LinkLabelLinkClick(TObject *Sender, const UnicodeString Link,
TSysLinkType LinkType)
{
if(LinkType == sltURL)
{
::ShellExecute(Handle, NULL, Link.c_str(), NULL, NULL, SW_SHOWNORMAL);
}
}
//---------------------------------------------------------------------------
void __fastcall TAboutForm::Attribution2LinkLabelLinkClick(TObject *Sender, const UnicodeString Link,
TSysLinkType LinkType)
{
if(LinkType == sltURL)
{
::ShellExecute(Handle, NULL, Link.c_str(), NULL, NULL, SW_SHOWNORMAL);
}
}
//---------------------------------------------------------------------------
void __fastcall TAboutForm::Attribution3LinkLabelLinkClick(TObject *Sender, const UnicodeString Link,
TSysLinkType LinkType)
{
if(LinkType == sltURL)
{
::ShellExecute(Handle, NULL, Link.c_str(), NULL, NULL, SW_SHOWNORMAL);
}
}
//---------------------------------------------------------------------------
void __fastcall TAboutForm::AttributionLinkLabel4LinkClick(TObject *Sender, const UnicodeString Link,
TSysLinkType LinkType)
{
if(LinkType == sltURL)
{
::ShellExecute(Handle, NULL, Link.c_str(), NULL, NULL, SW_SHOWNORMAL);
}
}
//---------------------------------------------------------------------------
void __fastcall TAboutForm::LinkLabel1LinkClick(TObject *Sender, const UnicodeString Link,
TSysLinkType LinkType)
{
if(LinkType == sltURL)
{
::ShellExecute(Handle, NULL, Link.c_str(), NULL, NULL, SW_SHOWNORMAL);
}
}
//---------------------------------------------------------------------------