-
Notifications
You must be signed in to change notification settings - Fork 85
/
sws_about.cpp
220 lines (198 loc) · 6.17 KB
/
sws_about.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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
/******************************************************************************
/ sws_about.cpp
/
/ Copyright (c) 2013 and later Tim Payne (SWS), Jeffos
/
/
/ Permission is hereby granted, free of charge, to any person obtaining a copy
/ of this software and associated documentation files (the "Software"), to deal
/ in the Software without restriction, including without limitation the rights to
/ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
/ of the Software, and to permit persons to whom the Software is furnished to
/ do so, subject to the following conditions:
/
/ The above copyright notice and this permission notice shall be included in all
/ copies or substantial portions of the Software.
/
/ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
/ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
/ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
/ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
/ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
/ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
/ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
/ OTHER DEALINGS IN THE SOFTWARE.
/
******************************************************************************/
#include "stdafx.h"
#include "SnM/SnM_Dlg.h"
#include "SnM/SnM_Util.h"
#include "Breeder/BR_Update.h"
#include "version.h"
#include "license.h"
#include "url.h"
#include "Prompt.h"
#include <WDL/localize/localize.h>
static HWND s_hwndAbout;
static bool s_isPackaged;
bool IsOfficialVersion()
{
return (_stricmp(SWS_VERSION_TYPE, "Featured") == 0); // otherwise: pre-release, beta, etc
}
void WhatsNew(COMMAND_T*)
{
ShellExecute(GetMainHwnd(), "open", IsOfficialVersion() ? SWS_URL_WHATSNEW : SWS_URL_BETA_WHATSNEW, NULL, NULL, SW_SHOWNORMAL);
}
INT_PTR WINAPI doAbout(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
if (INT_PTR r = SNM_HookThemeColorsMessage(hwndDlg, uMsg, wParam, lParam))
return r;
switch(uMsg)
{
case WM_INITDIALOG:
{
char cVersion[256];
snprintf(cVersion, sizeof(cVersion),
#ifdef GIT_BRANCH
"%s %d.%d.%d.%d %s (%s)",
#else
"%s %d.%d.%d.%d %s",
#endif
__LOCALIZE("Version","sws_DLG_109"), SWS_VERSION, GIT_COMMIT
#ifdef GIT_BRANCH
, GIT_BRANCH
#endif
);
char *p=strstr(cVersion, " #0");
if (p) *p=0;
char cVersionDate[256];
snprintf(cVersionDate, sizeof(cVersionDate), __LOCALIZE_VERFMT("%s built on %s","sws_DLG_109"), cVersion, __DATE__);
SetWindowText(GetDlgItem(hwndDlg, IDC_VERSION), cVersionDate);
SetWindowText(GetDlgItem(hwndDlg, IDC_WEBSITE), SWS_URL);
SetWindowText(GetDlgItem(hwndDlg, IDC_EDIT), LICENSE_AUTHORS "\r\n" LICENSE_TEXT);
if (s_isPackaged)
{
constexpr int controls[] { IDC_CHECK1, IDC_CHECK2, IDC_FILTERGROUP, IDC_UPDATE };
for (const int control : controls)
ShowWindow(GetDlgItem(hwndDlg, control), SW_HIDE);
RECT wndRect, groupBoxRect;
GetWindowRect(hwndDlg, &wndRect);
GetClientRect(GetDlgItem(hwndDlg, IDC_FILTERGROUP), &groupBoxRect);
SetWindowPos(hwndDlg, nullptr, 0, 0, wndRect.right - wndRect.left,
(wndRect.bottom - wndRect.top) - (groupBoxRect.bottom - groupBoxRect.top),
SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOZORDER);
}
else
{
bool official, beta; GetStartupSearchOptions(&official, &beta, NULL);
CheckDlgButton(hwndDlg, IDC_CHECK1, official);
CheckDlgButton(hwndDlg, IDC_CHECK2, beta);
}
s_hwndAbout = hwndDlg;
ShowWindow(hwndDlg, SW_SHOW);
break;
}
case WM_DESTROY:
s_hwndAbout = NULL;
break;
case WM_DRAWITEM:
{
DRAWITEMSTRUCT *di = (DRAWITEMSTRUCT *)lParam;
if (di->CtlType == ODT_BUTTON)
{
if (SWS_THEMING)
{
if (di->itemState & ODS_SELECTED)
SetTextColor(di->hDC, RGB(0,0,0));
}
else
SetTextColor(di->hDC, (di->itemState & ODS_SELECTED) ? RGB(0,0,0) : RGB(0,0,220));
RECT r = di->rcItem;
char buf[512];
GetWindowText(di->hwndItem, buf, sizeof(buf));
DrawText(di->hDC, buf, -1, &r, DT_NOPREFIX | DT_LEFT | DT_VCENTER);
}
break;
}
case WM_COMMAND:
{
if (wParam == IDC_WEBSITE)
{
char cLink[512];
GetDlgItemText(hwndDlg, (int)wParam, cLink, 512);
ShellExecute(hwndDlg, "open", cLink , NULL, NULL, SW_SHOWNORMAL);
}
else if (wParam == IDC_INFO)
WhatsNew(NULL);
else if (wParam == IDC_UPDATE)
VersionCheckDialog(hwndDlg);
else if (wParam == IDCANCEL) {
SetStartupSearchOptions(!!IsDlgButtonChecked(hwndDlg, IDC_CHECK1), !!IsDlgButtonChecked(hwndDlg, IDC_CHECK2), 0);
DestroyWindow(hwndDlg);
}
break;
}
}
return 0;
}
void OpenAboutBox(COMMAND_T*)
{
if (s_hwndAbout)
DestroyWindow(s_hwndAbout);
else
CreateDialog(g_hInst, MAKEINTRESOURCE(IDD_ABOUT), g_hwndParent, doAbout);
}
int IsAboutBoxOpen(COMMAND_T*) {
return (s_hwndAbout != NULL);
}
//!WANT_LOCALIZE_1ST_STRING_BEGIN:sws_actions
static COMMAND_T g_commandTable[] =
{
{ { DEFACCEL, "SWS: About" }, "SWS_ABOUT", OpenAboutBox, "About SWS Extensions", 0, IsAboutBoxOpen, },
{ { DEFACCEL, "SWS/S&M: What's new..." }, "S&M_WHATSNEW", WhatsNew, },
{ {}, LAST_COMMAND, }, // Denote end of table
};
static COMMAND_T g_legacyInstallCmds[] =
{
{ { DEFACCEL, "SWS/BR: Check for new SWS version..." }, "BR_VERSION_CHECK", VersionCheckAction, },
{ {}, LAST_COMMAND, },
};
//!WANT_LOCALIZE_1ST_STRING_END
int AboutBoxInit()
{
SWSRegisterCommands(g_commandTable);
return 1;
}
static bool IsFromReaPack()
{
#ifdef _WIN32
HMODULE dll;
if (!GetModuleHandleExW(
GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS |
GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT,
reinterpret_cast<LPCWSTR>(&PackageInit), &dll))
return false;
char filename[MAX_PATH];
GetModuleFileNameUTF8(dll, filename, sizeof(filename));
#else
Dl_info info;
if (!dladdr(reinterpret_cast<const void *>(&PackageInit), &info))
return false;
const char *filename { info.dli_fname };
#endif
// v1 API
ReaPack_PackageEntry *entry;
if (ReaPack_GetOwner && ReaPack_FreeEntry && (entry = ReaPack_GetOwner(filename, nullptr, 0)))
{
ReaPack_FreeEntry(entry);
return true;
}
return false;
}
void PackageInit()
{
if ((s_isPackaged = IsFromReaPack()))
return;
SWSRegisterCommands(g_legacyInstallCmds);
VersionCheckInitExit(true);
}