3 Part of the rfx installer (Main program).
5 Copyright (c) 2004-2008 Matthias Kramm <kramm@quiss.org>
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
28 #include "installer.h"
34 static int config_forAllUsers = 0;
35 static int config_createLinks = 0;
36 static int config_createStartmenu = 1;
37 static int config_createDesktop = 1;
38 static int config_deleteextra = 1;
40 static char path_startmenu[MAX_PATH] = "\0";
41 static char path_desktop[MAX_PATH] = "\0";
42 static char path_programfiles[MAX_PATH] = "\0";
44 static char pathBuf[MAX_PATH];
45 static int do_abort = 0;
47 static char* pdf2swf_path;
49 static char registry_path[1024];
51 static char elevated = 0;
53 static char*install_path = "c:\\swftools\\";
54 #define SOFTWARE_DOMAIN "quiss.org"
55 #define SOFTWARE_NAME "SWFTools"
56 #define INSTALLER_NAME "SWFTools Installer"
58 static HBITMAP logo = 0;
62 #define USER_SETMESSAGE 0x7f01
66 extern int crndata_len;
67 extern int crn_decompressed_size;
68 extern char*license_text;
70 #include "background.c"
73 typedef struct _filelist
76 struct _filelist*next;
80 static filelist_t* registerFile(filelist_t*next, const char*filename, char type)
82 filelist_t*file = malloc(sizeof(filelist_t));
83 file->filename = strdup(filename);
89 static filelist_t* readFileList(char*filename)
91 FILE*fi = fopen(filename, "rb");
95 fseek(fi, 0, SEEK_END);
97 fseek(fi, 0, SEEK_SET);
98 char*data = malloc(len+1);
99 fread(data, len, 1, fi);
103 filelist_t*list = 0,*lpos=0;;
105 if(data[t]=='\r' || data[t]=='\n') {
107 if(strchr("DFI", line[0]) && line[1]==' ' && line[2]!=' ') {
108 filelist_t*f = malloc(sizeof(filelist_t));
110 f->filename=strdup(line+2);
119 // skip line- this usually only happens if somebody tampered
122 while(t<len && (data[t]=='\0' || data[t]=='\r' || data[t]=='\n'))
132 static void writeFileList(filelist_t*file, const char*filename)
134 FILE*fi = fopen(filename, "wb");
135 fprintf(fi, "[%s installed files]\r\n", SOFTWARE_NAME);
138 sprintf(buf, "Couldn't write file %s", filename);
139 MessageBox(0, buf, INSTALLER_NAME, MB_OK|MB_ICONERROR);
144 fprintf(fi, "%c %s\r\n", file->type, file->filename);
150 static filelist_t*installedFiles = 0;
152 static void addFile(const char*filename)
154 installedFiles = registerFile(installedFiles, filename, 'F');
156 static void addDir(const char*filename)
158 installedFiles = registerFile(installedFiles, filename, 'D');
161 static void handleTemplateFile(const char*filename)
163 FILE*fi = fopen(filename, "rb");
164 fseek(fi, 0, SEEK_END);
166 fseek(fi, 0, SEEK_SET);
167 char*file = malloc(len+1);
168 fread(file, len, 1, fi);
170 int l = strlen(install_path);
171 fi = fopen(filename, "wb");
175 pos = strstr(pos, "%%PATH%%");
181 fwrite(lastpos, pos-lastpos, 1, fi);
182 fwrite(install_path, l, 1, fi);
183 pos+=8; // length of "%%PATH%%"
186 fwrite(lastpos, pos-lastpos, 1, fi);
191 static int setRegistryEntry(char*key,char*value)
195 int ret1 = -1, ret2= -1;
196 ret1 = RegCreateKey(HKEY_CURRENT_USER, key, &hkey1);
197 if(config_forAllUsers) {
198 ret2 = RegCreateKey(HKEY_LOCAL_MACHINE, key, &hkey2);
202 fprintf(stderr, "registry: CreateKey %s failed\n", key);
206 installedFiles = registerFile(installedFiles, key, 'k');
209 installedFiles = registerFile(installedFiles, key, 'K');
213 ret1 = RegSetValue(hkey1, NULL, REG_SZ, value, strlen(value)+1);
215 ret2 = RegSetValue(hkey2, NULL, REG_SZ, value, strlen(value)+1);
217 fprintf(stderr, "registry: SetValue %s failed\n", key);
224 static char* getRegistryEntry(char*path)
232 rc = RegOpenKeyEx(HKEY_LOCAL_MACHINE, path, 0, KEY_ALL_ACCESS/* KEY_READ*/, &key);
233 if (rc != ERROR_SUCCESS) {
234 fprintf(stderr, "RegOpenKeyEx failed\n");
237 rc = RegQueryValueEx(key, NULL, 0, 0, 0, (LPDWORD)&size) ;
238 if(rc != ERROR_SUCCESS) {
239 fprintf(stderr, "RegQueryValueEx(1) failed: %d\n", rc);
242 buf = (char*)malloc(size+1);
243 rc = RegQueryValueEx(key, NULL, 0, &type, (BYTE*)buf, (LPDWORD)&size);
244 if(rc != ERROR_SUCCESS) {
245 fprintf(stderr, "RegQueryValueEx(2) failed: %d\n", rc);
248 if(type == REG_SZ || type == REG_EXPAND_SZ) {
249 while(size && buf[size-1] == '\0')
254 } else if(type == REG_BINARY) {
259 static int has_full_access = 0;
260 static char hasFullAccess()
262 /* find out whether we can write keys in HKEY_LOCAL_MACHINE */
264 int ret = RegOpenKeyEx(HKEY_LOCAL_MACHINE, "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall", 0,
265 KEY_CREATE_SUB_KEY, &hKey);
274 void processMessages()
277 while(PeekMessage(&msg,NULL,0,0,0))
279 GetMessage(&msg, NULL, 0, 0);
280 TranslateMessage(&msg);
281 DispatchMessage(&msg);
285 int addRegistryEntries(char*install_dir)
288 ret = setRegistryEntry(registry_path, install_dir);
293 int CreateShortcut(char*path, char*description, char*filename, char*arguments, int iconindex, char*iconpath, char*workdir)
295 printf("Creating %s -> %s\n", filename, path);
296 WCHAR wszFilename[MAX_PATH];
297 IShellLink *ps1 = NULL;
298 IPersistFile *pPf = NULL;
300 hr = CoCreateInstance(&CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER, &IID_IShellLink, (void*)&ps1);
301 if(FAILED(hr)) return 0;
302 hr = ps1->lpVtbl->QueryInterface(ps1, &IID_IPersistFile, (void **)&pPf);
303 if(FAILED(hr)) return 0;
304 hr = ps1->lpVtbl->SetPath(ps1, path);
305 if(FAILED(hr)) return 0;
306 hr = ps1->lpVtbl->SetDescription(ps1, description);
309 hr = ps1->lpVtbl->SetArguments(ps1, arguments);
310 if(FAILED(hr)) return 0;
313 hr = ps1->lpVtbl->SetIconLocation(ps1, iconpath, iconindex);
314 if (FAILED(hr)) return 0;
317 hr = ps1->lpVtbl->SetWorkingDirectory(ps1, workdir);
318 if (FAILED(hr)) return 0;
320 MultiByteToWideChar(CP_ACP, 0, filename, -1, wszFilename, MAX_PATH);
321 hr = pPf->lpVtbl->Save(pPf, wszFilename, TRUE);
325 pPf->lpVtbl->Release(pPf);
326 ps1->lpVtbl->Release(ps1);
331 static int CreateURL(const char*url, const char*path)
333 FILE*fi = fopen(path, "wb");
336 fprintf(fi, "[InternetShortcut]\r\n");
337 fprintf(fi, "URL=http://localhost:8081/\r\n");
344 BOOL CALLBACK PropertySheetFuncCommon(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam, int buttons)
348 HWND dialog = GetParent(hwnd);
350 if(message == WM_INITDIALOG) {
352 SendDlgItemMessage(hwnd, IDC_BITMAP, STM_SETIMAGE, IMAGE_BITMAP, (LPARAM)logo);
355 GetWindowRect(dialog, &rc);
356 int width = rc.right - rc.left;
357 int height = rc.bottom - rc.top;
358 MoveWindow(dialog, (GetSystemMetrics(SM_CXSCREEN) - width)/2, (GetSystemMetrics(SM_CYSCREEN) - height)/2, width, height, FALSE);
362 if(message == WM_NOTIFY && (((LPNMHDR)lParam)->code == PSN_SETACTIVE)) {
363 PropSheet_SetWizButtons(dialog, buttons);
370 BOOL CALLBACK PropertySheetFunc1(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) {
371 if(message == WM_INITDIALOG) {
372 SetDlgItemText(hwnd, IDC_LICENSE, license_text);
374 return PropertySheetFuncCommon(hwnd, message, wParam, lParam, PSWIZB_NEXT);
376 BOOL CALLBACK PropertySheetFunc2(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) {
377 if(message == WM_INITDIALOG) {
378 SetDlgItemText(hwnd, IDC_INSTALL_PATH, install_path);
380 SendDlgItemMessage(hwnd, IDC_ALLUSERS, BM_SETCHECK, config_forAllUsers, 0);
381 SendDlgItemMessage(hwnd, IDC_CURRENTUSER, BM_SETCHECK, config_forAllUsers^1, 0);
383 if(message == WM_COMMAND) {
384 if((wParam&0xffff) == IDC_BROWSE) {
386 memset(&browse, 0, sizeof(browse));
387 browse.ulFlags = BIF_EDITBOX | BIF_NEWDIALOGSTYLE | BIF_USENEWUI;// | BIF_RETURNONLYFSDIRS; //BIF_VALIDATE
388 browse.pszDisplayName = (CHAR*)malloc(MAX_PATH);
389 memset(browse.pszDisplayName, 0, MAX_PATH);
390 browse.lpszTitle = "Select installation directory";
391 browse.pidlRoot = SHBrowseForFolder(&browse);
392 if(browse.pszDisplayName) {
393 if(SHGetPathFromIDList(browse.pidlRoot, browse.pszDisplayName)) {
394 install_path = browse.pszDisplayName;
395 int l = strlen(install_path);
396 while(l && install_path[l-1]=='\\') {
401 SendDlgItemMessage(hwnd, IDC_INSTALL_PATH, WM_SETTEXT, 0, (LPARAM)install_path);
405 else if((wParam&0xffff) == IDC_ALLUSERS) {
406 config_forAllUsers = 1;
407 SendDlgItemMessage(hwnd, IDC_ALLUSERS, BM_SETCHECK, config_forAllUsers, 0);
408 SendDlgItemMessage(hwnd, IDC_CURRENTUSER, BM_SETCHECK, config_forAllUsers^1, 0);
410 else if((wParam&0xffff) == IDC_CURRENTUSER) {
411 config_forAllUsers = 0;
412 SendDlgItemMessage(hwnd, IDC_ALLUSERS, BM_SETCHECK, config_forAllUsers, 0);
413 SendDlgItemMessage(hwnd, IDC_CURRENTUSER, BM_SETCHECK, config_forAllUsers^1, 0);
415 else if((wParam&0xffff) == IDC_INSTALL_PATH) {
416 SendDlgItemMessage(hwnd, IDC_INSTALL_PATH, WM_GETTEXT, sizeof(pathBuf), (LPARAM)&(pathBuf[0]));
418 install_path = pathBuf;
419 int l = strlen(install_path);
420 while(l && install_path[l-1]=='\\') {
427 if(message == WM_NOTIFY && (((LPNMHDR)lParam)->code == PSN_SETACTIVE)) {
428 if(!elevated && !has_full_access && config_forAllUsers) {
429 OSVERSIONINFO winverinfo;
430 memset(&winverinfo, 0, sizeof(OSVERSIONINFO));
431 winverinfo.dwOSVersionInfoSize = sizeof(winverinfo);
432 if (GetVersionEx(&winverinfo) && winverinfo.dwMajorVersion >= 5) {
433 /* we're on Vista, were asked to install for all users, but don't have
434 priviledges to do so. Ask to spawn the process elevated. */
435 char exename[MAX_PATH];
436 GetModuleFileName(NULL, exename, sizeof(exename));
437 if((int)ShellExecute(0, "runas", exename, "elevated", NULL, SW_SHOWNORMAL)>32) {
438 /* that worked- the second process will do the work */
444 return PropertySheetFuncCommon(hwnd, message, wParam, lParam, PSWIZB_BACK|PSWIZB_NEXT);
447 static int progress_pos = 0;
449 void PropertyArchiveError(char*text)
452 int ret = MessageBox(0, text, "Error", MB_RETRYCANCEL|MB_ICONERROR);
453 if(ret==IDRETRY) continue;
458 void PropertyArchive_NewFile(char*filename)
463 void PropertyArchive_NewDirectory(char*filename)
469 static int lastlen = 0;
470 void PropertyArchiveStatus(int pos, int len)
473 SendDlgItemMessage(statuswnd, IDC_PROGRESS, PBM_SETRANGE, 0, (LPARAM)MAKELONG(0,len));
476 SendDlgItemMessage(statuswnd, IDC_PROGRESS, PBM_SETPOS, pos, 0);
480 void PropertyArchiveMessage(char*text)
482 if(text && text[0]=='[') {
485 SetDlgItemText(statuswnd, IDC_INFO, strdup(text));
489 void print_space(char*dest, char*msg, ULONGLONG size)
492 sprintf(dest, "%s%d Bytes", msg, size);
493 else if(size < 1048576l)
494 sprintf(dest, "%s%.2f Kb", msg, size/1024.0);
495 else if(size < 1073741824l)
496 sprintf(dest, "%s%.2f Mb", msg, size/1048576.0);
497 else if(size < 1099511627776ll)
498 sprintf(dest, "%s%.2f Gb", msg, size/1073741824.0);
500 sprintf(dest, "%s%.2f Tb", msg, size/1125899906842624.0);
503 BOOL CALLBACK PropertySheetFunc3(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) {
504 HWND dialog = GetParent(hwnd);
505 if(message == WM_INITDIALOG) {
506 SetDlgItemText(hwnd, IDC_INFO, "Ready to install");
509 print_space(buf, "Space required: ", crn_decompressed_size);
510 SetDlgItemText(hwnd, IDC_SPACE1, buf);
511 ULARGE_INTEGER available,total,totalfree;
512 available.QuadPart=0;
514 totalfree.QuadPart=0;
515 if(GetDiskFreeSpaceEx(install_path, &available, &total, &totalfree)) {
516 print_space(buf, "Space available: ", available.QuadPart);
518 sprintf(buf, "Space available: [Error %d]", GetLastError());
519 if((GetLastError() == ERROR_FILE_NOT_FOUND || GetLastError() == ERROR_PATH_NOT_FOUND)
520 && install_path[0] && install_path[1]==':') {
521 /* installation directory does not yet exist */
522 char path[3]={'c',':',0};
523 path[0] = install_path[0];
524 if(GetDiskFreeSpaceEx(path, &available, &total, &totalfree)) {
525 print_space(buf, "Space available: ", available.QuadPart);
529 SetDlgItemText(hwnd, IDC_SPACE2, buf);
531 if(message == WM_NOTIFY && (((LPNMHDR)lParam)->code == PSN_WIZNEXT)) {
532 SetDlgItemText(hwnd, IDC_SPACE1, "");
533 SetDlgItemText(hwnd, IDC_SPACE2, "");
534 PropSheet_SetWizButtons(dialog, 0);
535 SendMessage(dialog, PSM_CANCELTOCLOSE, 0, 0); //makes wine display a warning
536 SetDlgItemText(hwnd, IDC_TITLE, "Installing files...");
539 status.status = PropertyArchiveStatus;
540 status.message = PropertyArchiveMessage;
541 status.error = PropertyArchiveError;
542 status.new_file = PropertyArchive_NewFile;
543 status.new_directory = PropertyArchive_NewDirectory;
544 int success = unpack_archive(crndata, crndata_len, install_path, &status);
545 memset(&status, 0, sizeof(status_t));
547 MessageBox(0, "Couldn't extract all installation files", INSTALLER_NAME, MB_OK|MB_ICONERROR);
553 return PropertySheetFuncCommon(hwnd, message, wParam, lParam, PSWIZB_BACK|PSWIZB_NEXT);
556 static HRESULT (WINAPI *f_SHGetSpecialFolderPath)(HWND hwnd, LPTSTR lpszPath, int nFolder, BOOL fCreate);
558 BOOL CALLBACK PropertySheetFunc4(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) {
559 if(message == WM_INITDIALOG) {
560 pdf2swf_path = concatPaths(install_path, "pdf2swf_gui.exe");
561 FILE*fi = fopen(pdf2swf_path, "rb");
563 printf("a GUI program exists, creating desktop/startmenu links\n");
564 config_createLinks = 1;
567 if(!config_createLinks) {
568 SendDlgItemMessage(hwnd, IDC_STARTMENU, SW_HIDE, 0, 0);
569 SendDlgItemMessage(hwnd, IDC_DESKTOP, SW_HIDE, 0, 0);
572 SendDlgItemMessage(hwnd, IDC_STARTMENU, BM_SETCHECK, config_createStartmenu, 0);
573 SendDlgItemMessage(hwnd, IDC_DESKTOP, BM_SETCHECK, config_createDesktop, 0);
575 if(message == WM_COMMAND) {
576 if((wParam&0xffff) == IDC_STARTMENU) {
577 config_createStartmenu = SendDlgItemMessage(hwnd, IDC_STARTMENU, BM_GETCHECK, 0, 0);
578 config_createStartmenu^=1;
579 SendDlgItemMessage(hwnd, IDC_STARTMENU, BM_SETCHECK, config_createStartmenu, 0);
582 if((wParam&0xffff) == IDC_DESKTOP) {
583 config_createDesktop = SendDlgItemMessage(hwnd, IDC_DESKTOP, BM_GETCHECK, 0, 0);
584 config_createDesktop^=1;
585 SendDlgItemMessage(hwnd, IDC_DESKTOP, BM_SETCHECK, config_createDesktop, 0);
590 if(message == WM_NOTIFY && (((LPNMHDR)lParam)->code == PSN_WIZFINISH)) {
591 if(!addRegistryEntries(install_path)) {
592 MessageBox(0, "Couldn't create Registry Entries", INSTALLER_NAME, MB_OK|MB_ICONERROR);
596 char mypath[MAX_PATH];
597 path_startmenu[0] = 0;
599 if(config_forAllUsers) {
600 f_SHGetSpecialFolderPath(NULL, path_desktop, CSIDL_COMMON_DESKTOPDIRECTORY, 0);
601 f_SHGetSpecialFolderPath(NULL, path_startmenu, CSIDL_COMMON_PROGRAMS, 0);
603 /* get local program/desktop directory- this is both for forAllUsers=0 as well
604 as a fallback if the above didn't return any paths */
605 if(!path_startmenu[0]) {
606 f_SHGetSpecialFolderPath(NULL, path_startmenu, CSIDL_PROGRAMS, 0);
608 if(!path_desktop[0]) {
609 f_SHGetSpecialFolderPath(NULL, path_desktop, CSIDL_DESKTOPDIRECTORY, 0);
612 char*uninstall_path = concatPaths(install_path, "uninstall.exe");
614 if(config_createLinks) {
615 if(config_createDesktop && path_desktop[0]) {
616 char* linkName = concatPaths(path_desktop, "pdf2swf.lnk");
617 printf("Creating desktop link %s -> %s\n", linkName, pdf2swf_path);
618 if(!CreateShortcut(pdf2swf_path, "pdf2swf", linkName, 0, 0, 0, install_path)) {
619 MessageBox(0, "Couldn't create desktop shortcut", INSTALLER_NAME, MB_OK);
623 if(config_createStartmenu && path_startmenu[0]) {
624 char* group = concatPaths(path_startmenu, "pdf2swf");
625 CreateDirectory(group, 0);
627 char* linkName = concatPaths(group, "pdf2swf.lnk");
628 if(!CreateShortcut(pdf2swf_path, "pdf2swf", concatPaths(group, "pdf2swf.lnk"), 0, 0, 0, install_path) ||
629 !CreateShortcut(uninstall_path, "uninstall", concatPaths(group, "uninstall.lnk"), 0, 0, 0, install_path)) {
630 MessageBox(0, "Couldn't create start menu entry", INSTALLER_NAME, MB_OK);
635 printf("not creating desktop/startmenu links\n");
638 char*uninstall_ini = concatPaths(install_path, "uninstall.ini");
639 addFile(uninstall_ini);
640 writeFileList(installedFiles, uninstall_ini);
642 return PropertySheetFuncCommon(hwnd, message, wParam, lParam, PSWIZB_FINISH);
648 void findfiles(char*path, int*pos, char*data, int len, char del)
650 WIN32_FIND_DATA findFileData;
651 HANDLE hFind = FindFirstFile(concatPaths(path, "*"), &findFileData);
652 if(hFind == INVALID_HANDLE_VALUE)
655 if(findFileData.cFileName[0] == '.' &&
656 (findFileData.cFileName[0] == '.' || findFileData.cFileName == '\0'))
658 char*f = concatPaths(path, findFileData.cFileName);
659 if(findFileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
660 findfiles(f, pos, data, len, del);
661 /* always try to remove directories- if they are empty, this
662 will work, and they won't prevent superdirectory deletion later */
667 /* don't list the uninstaller as file- it's going to be removed *after*
668 everything else is done */
669 char*uninstaller="uninstall.exe";
670 int ll = strlen(uninstaller);
672 if(!strcasecmp(&f[l-ll],uninstaller)) {
679 memcpy(&data[*pos], f, l);(*pos)+=l;
680 data[(*pos)++] = '\r';
681 data[(*pos)++] = '\n';
691 } while(FindNextFile(hFind, &findFileData));
695 static char*extrafiles = 0;
697 BOOL CALLBACK PropertySheetFunc5(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) {
698 HWND dialog = GetParent(hwnd);
699 if(message == WM_INITDIALOG) {
700 SetDlgItemText(hwnd, IDC_INFO, "Ready to uninstall");
702 if(message == WM_NOTIFY && (((LPNMHDR)lParam)->code == PSN_WIZNEXT)) {
704 filelist_t* list = readFileList("uninstall.ini");
706 list = readFileList(concatPaths(install_path, "uninstall.ini"));
708 //Don't abort. If there's still something there, it'll be catched by the "extra files"
709 //functionality later
710 //MessageBox(0, "Couldn't determine installed files list- did you run uninstall twice?", INSTALLER_NAME, MB_OK);
714 filelist_t* l = list;
716 while(l) {num++;l=l->next;}
718 PropSheet_SetWizButtons(dialog, 0);
719 SendMessage(dialog, PSM_CANCELTOCLOSE, 0, 0);
720 SetDlgItemText(hwnd, IDC_TITLE, "Uninstalling files...");
721 SendDlgItemMessage(hwnd, IDC_PROGRESS, PBM_SETRANGE, 0, (LPARAM)MAKELONG(0,num));
725 SendDlgItemMessage(hwnd, IDC_PROGRESS, PBM_SETPOS, num, 0);
727 DeleteFile(l->filename);
728 else if(l->type=='D')
729 RemoveDirectory(l->filename);
730 else if(l->type=='I')
731 /* skip- we will remove ourselves later */;
736 findfiles(install_path, &len, 0, 0, 0);
738 extrafiles = malloc(len);
740 findfiles(install_path, &pos, extrafiles, len, 0);
742 PropSheet_RemovePage(dialog, 1, 0);
746 return PropertySheetFuncCommon(hwnd, message, wParam, lParam, PSWIZB_BACK|PSWIZB_NEXT);
749 BOOL CALLBACK PropertySheetFunc6(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) {
750 if(message == WM_INITDIALOG) {
751 SendDlgItemMessage(hwnd, IDC_DELETEEXTRA, BM_SETCHECK, config_deleteextra, 0);
753 SetDlgItemText(hwnd, IDC_FILELIST, extrafiles);
756 if(message == WM_COMMAND) {
757 if((wParam&0xffff) == IDC_DELETEEXTRA) {
758 config_deleteextra = SendDlgItemMessage(hwnd, IDC_DELETEEXTRA, BM_GETCHECK, 0, 0);
759 config_deleteextra ^=1;
760 SendDlgItemMessage(hwnd, IDC_DELETEEXTRA, BM_SETCHECK, config_deleteextra, 0);
764 if(message == WM_NOTIFY && (((LPNMHDR)lParam)->code == PSN_WIZNEXT)) {
765 if(config_deleteextra) {
767 findfiles(install_path, &pos, 0, 0, 1);
770 return PropertySheetFuncCommon(hwnd, message, wParam, lParam, PSWIZB_NEXT);
773 BOOL CALLBACK PropertySheetFunc7(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) {
774 if(message == WM_INITDIALOG) {
777 return PropertySheetFuncCommon(hwnd, message, wParam, lParam, PSWIZB_FINISH);
781 #ifndef PSP_HIDEHEADER
782 #define PSP_HIDEHEADER 2048
785 typedef struct _wizardpage {
790 void runPropertySheet(HWND parent)
792 PROPSHEETHEADER sheet;
794 wizardpage_t wpage[5] = {
796 {PropertySheetFunc1, IDD_LICENSE},
797 {PropertySheetFunc2, IDD_INSTALLDIR},
798 {PropertySheetFunc3, IDD_PROGRESS},
799 {PropertySheetFunc4, IDD_FINISH},
801 {PropertySheetFunc5, IDD_SURE},
802 {PropertySheetFunc6, IDD_EXTRAFILES},
803 {PropertySheetFunc7, IDD_DEINSTALLED},
807 int num = sizeof(wpage)/sizeof(wpage[0]);
812 TODO: remove installdir querying, too (pass installdir
813 to second process) */
816 wpage[t-1] = wpage[t];
822 HPROPSHEETPAGE pages[num];
826 memset(&page, 0, sizeof(PROPSHEETPAGE));
827 page.dwSize = sizeof(PROPSHEETPAGE);
828 page.dwFlags = PSP_DEFAULT|PSP_HIDEHEADER;
830 page.pfnDlgProc = wpage[t].function;
831 page.pszTemplate = MAKEINTRESOURCE(wpage[t].resource);
832 pages[t] = CreatePropertySheetPage(&page);
835 memset(&sheet, 0, sizeof(PROPSHEETHEADER));
836 sheet.dwSize = sizeof(PROPSHEETHEADER);
837 sheet.hInstance = me;
838 sheet.hwndParent = parent;
839 sheet.phpage = pages;
840 sheet.dwFlags = PSH_WIZARD;
842 PropertySheet(&sheet);
847 static void remove_self()
849 char exename[MAX_PATH];
850 char batdir[MAX_PATH];
851 char batfile[MAX_PATH];
855 memset(batdir, 0, sizeof(batdir));
857 GetModuleFileName(NULL, exename, sizeof(exename));
858 GetTempPath(MAX_PATH, batdir);
859 sprintf(batfile, "%08x.bat", rand());
861 batname = concatPaths(batdir, batfile);
863 fp = fopen(batname, "w");
868 fprintf(fp, ":Repeat\n");
869 fprintf(fp, "del \"%s\"\n", exename);
870 fprintf(fp, "if exist \"%s\" goto Repeat\n", exename);
871 fprintf(fp, "rmdir \"%s\"\n", install_path);
872 fprintf(fp, "del \"%s\"\n", batname);
876 PROCESS_INFORMATION pi;
877 memset(&si, 0, sizeof(si));
878 si.dwFlags = STARTF_USESHOWWINDOW;
879 si.wShowWindow = SW_HIDE;
881 if (CreateProcess(NULL, batname, NULL, NULL, FALSE,
882 CREATE_SUSPENDED | IDLE_PRIORITY_CLASS,
883 NULL, "\\", &si, &pi)) {
884 SetThreadPriority(pi.hThread, THREAD_PRIORITY_IDLE);
885 SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_TIME_CRITICAL);
886 SetPriorityClass(GetCurrentProcess(), HIGH_PRIORITY_CLASS);
887 CloseHandle(pi.hProcess);
888 ResumeThread(pi.hThread);
889 CloseHandle(pi.hThread);
894 int WINAPI WinMain(HINSTANCE _me,HINSTANCE hPrevInst,LPSTR lpszArgs, int nWinMode)
897 sprintf(registry_path, "Software\\%s\\%s\\InstallPath", SOFTWARE_DOMAIN, SOFTWARE_NAME);
900 logo = LoadBitmap(me, "LOGO");
902 install_path = getRegistryEntry(registry_path);
903 if(!install_path || !install_path[0]) {
904 MessageBox(0, "Couldn't find software installation directory- did you run the uninstallation twice?", INSTALLER_NAME, MB_OK);
909 InitCommonControls();
911 runPropertySheet(background);
917 int WINAPI WinMain(HINSTANCE _me,HINSTANCE hPrevInst,LPSTR lpszArgs, int nWinMode)
920 WNDCLASSEX wcl_background;
921 wcl_background.hInstance = me;
922 wcl_background.lpfnWndProc = WindowFunc;
923 wcl_background.lpszClassName= INSTALLER_NAME;
924 wcl_background.style = CS_HREDRAW | CS_VREDRAW;
925 wcl_background.hIcon = LoadIcon(NULL, IDI_APPLICATION);
926 wcl_background.hIconSm = LoadIcon(NULL, IDI_APPLICATION);
927 wcl_background.hCursor = LoadCursor(NULL, IDC_ARROW);
928 wcl_background.lpszMenuName = NULL; //no menu
929 wcl_background.cbClsExtra = 0;
930 wcl_background.cbWndExtra = 0;
931 wcl_background.hbrBackground= CreateSolidBrush(RGB(0, 0, 128));
932 wcl_background.cbSize = sizeof(WNDCLASSEX);
934 sprintf(registry_path, "Software\\%s\\%s\\InstallPath", SOFTWARE_DOMAIN, SOFTWARE_NAME);
936 if(lpszArgs && strstr(lpszArgs, "elevated")) {
939 has_full_access = hasFullAccess();
940 config_forAllUsers = has_full_access;
942 HINSTANCE shell32 = LoadLibrary("shell32.dll");
944 MessageBox(0, "Could not load shell32.dll", INSTALLER_NAME, MB_OK);
947 f_SHGetSpecialFolderPath = (HRESULT (WINAPI*)(HWND,LPTSTR,int,BOOL))GetProcAddress(shell32, "SHGetSpecialFolderPathA");
948 if(!f_SHGetSpecialFolderPath) {
949 MessageBox(0, "Could not load shell32.dll", INSTALLER_NAME, MB_OK);
953 HRESULT coret = CoInitialize(NULL);
955 MessageBox(0, "Could not initialize COM interface", INSTALLER_NAME, MB_OK);
959 path_programfiles[0] = 0;
960 f_SHGetSpecialFolderPath(NULL, path_programfiles, CSIDL_PROGRAM_FILES, 0);
962 if(!RegisterClassEx(&wcl_background)) {
963 MessageBox(0, "Could not register window background class", INSTALLER_NAME, MB_OK);
967 HWND background = CreateWindow(wcl_background.lpszClassName, INSTALLER_NAME,
969 GetSystemMetrics(SM_CXFULLSCREEN),
970 GetSystemMetrics(SM_CYFULLSCREEN),
972 (void*)"background");
975 MessageBox(0, "Could not create installation background window", INSTALLER_NAME, MB_OK);
979 ShowWindow(background, SW_SHOWMAXIMIZED);
980 SetForegroundWindow(background);
981 UpdateWindow(background);
983 logo = LoadBitmap(me, "LOGO");
985 install_path = getRegistryEntry(registry_path);
986 if(!install_path || !install_path[0]) {
987 if(path_programfiles[0]) {
988 install_path = concatPaths(path_programfiles, SOFTWARE_NAME);
990 install_path = concatPaths("c:\\", SOFTWARE_NAME);
994 InitCommonControls();
996 runPropertySheet(background);