Allow to run on Windows lacking CreateSymbolicLinkW()
[cygwin-setup.git] / splash.cc
blob67731f57eedbf484a1cb7a7497bb6abbbb88d3ff
1 /*
2 * Copyright (c) 2001, 2002, 2003 Gary R. Van Sickle.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * A copy of the GNU General Public License can be found at
10 * http://www.gnu.org/
12 * Written by Gary R. Van Sickle <g.r.vansickle@worldnet.att.net>
16 /* This is the implementation of the SplashPage class. Since the splash page
17 * has little to do, there's not much here. */
19 #include "setup_version.h"
20 #include "resource.h"
21 #include "splash.h"
22 #include "ini.h"
24 #define SPLASH_URL "https://cygwin.com"
25 #define SPLASH_COPYRIGHT "Copyright 2000-2022"
27 static ControlAdjuster::ControlInfo SplashControlsInfo[] = {
28 { IDC_SPLASH_TEXT, CP_STRETCH, CP_STRETCH },
29 { IDC_SPLASH_ICON, CP_LEFT, CP_TOP },
30 { IDC_VERSION, CP_LEFT, CP_BOTTOM },
31 { IDC_SPLASH_COPYR, CP_LEFT, CP_BOTTOM },
32 { IDC_SPLASH_URL, CP_LEFT, CP_BOTTOM },
33 {0, CP_LEFT, CP_TOP}
36 SplashPage::SplashPage ()
38 sizeProcessor.AddControlInfo (SplashControlsInfo);
41 bool
42 SplashPage::Create ()
44 return PropertyPage::Create (IDD_SPLASH);
47 void
48 SplashPage::OnInit ()
50 std::string ver = "Setup version ";
51 ver += (setup_version[0] ? setup_version : "[unknown]");
52 ver += is_64bit ? " (64 bit)" : " (32 bit)";
53 SetDlgItemFont(IDC_VERSION, "Arial", 10, FW_BOLD);
54 ::SetWindowText (GetDlgItem (IDC_VERSION), ver.c_str());
55 ::SetWindowText (GetDlgItem (IDC_SPLASH_COPYR), SPLASH_COPYRIGHT);
56 ::SetWindowText (GetDlgItem (IDC_SPLASH_URL), SPLASH_URL);
57 makeClickable (IDC_SPLASH_URL, SPLASH_URL);