mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 04:52:16 +00:00
527d99008b
Renamed all elements still referring to zdoom. removed the frontend specific resource data. fixed startup dialog to accept ANSI date despite building as Unicode. This needed a bit of hackery because the macros in windowsx.h are not character set sensitive.
121 lines
4.7 KiB
C
121 lines
4.7 KiB
C
//-------------------------------------------------------------------------
|
|
/*
|
|
Copyright (C) 2010 EDuke32 developers and contributors
|
|
Copyright (C) 2019 Christoph Oelckers
|
|
|
|
Demolition is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License version 2
|
|
as published by the Free Software Foundation.
|
|
|
|
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, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
//-------------------------------------------------------------------------
|
|
|
|
// resource ids
|
|
#define WIN_STARTWIN 1000
|
|
#define WIN_STARTWINPAGE_CONFIG 2000
|
|
#define WIN_STARTWIN_BITMAP 100 // banner bitmap
|
|
#define WIN_STARTWIN_TABCTL 101
|
|
#define WIN_STARTWIN_CANCEL IDCANCEL
|
|
#define WIN_STARTWIN_START IDOK
|
|
|
|
#define WIN_STARTWIN_MESSAGES 104 // output list box
|
|
#define IDD_CRASHDIALOG 105
|
|
#define IDD_CRASHDETAILS 106
|
|
#define IDD_CRASHOVERVIEW 107
|
|
#define IDD_ERRORPANE 108
|
|
|
|
#define RSRC_ICON 100
|
|
#define RSRC_BMP 200
|
|
|
|
// config page
|
|
#define IDCFULLSCREEN 100
|
|
#define IDCVMODE 101
|
|
#define IDCSOUNDDRV 102
|
|
#define IDCMIDIDEV 103
|
|
#define IDCCDADEV 104
|
|
#define IDCALWAYSSHOW 105
|
|
#define IDCDATA 106
|
|
#define IDCGAMEDIR 107
|
|
#define IDCPOLYMER 108
|
|
#define IDCAUTOLOAD 109
|
|
#define IDCINPUT 110
|
|
|
|
#define IDC_STATIC (-1)
|
|
#define IDC_ERRORMESSAGE 1004
|
|
#define IDQUIT 1005
|
|
#define IDC_IWADLIST 1006
|
|
#define IDC_DONTASKIWAD 1007
|
|
#define IDC_SPIN1 1010
|
|
#define IDC_SPINID1 1010
|
|
#define IDC_CRASHINFO 1011
|
|
#define IDC_SPINID2 1011
|
|
#define IDC_TOOLTIP1 1012
|
|
#define IDCE_ENVIRONMENTSIZE 1025
|
|
#define IDCS_ENVIRONMENTSIZE 1026
|
|
#define IDC_DECAYTIMESCALE 1027
|
|
#define IDC_REFLECTIONSSCALE 1028
|
|
#define IDC_REFLECTIONSDELAYSCALE 1029
|
|
#define IDC_REVERBSCALE 1030
|
|
#define IDC_REVERBDELAYSCALE 1031
|
|
#define IDC_DECAYHFLIMIT 1032
|
|
#define IDC_ECHOTIMESCALE 1033
|
|
#define IDC_MODULATIONTIMESCALE 1034
|
|
#define IDC_DUMMY 1035
|
|
#define IDC_NEW 1036
|
|
#define IDC_SAVE 1037
|
|
#define IDC_REVERT 1038
|
|
#define IDC_CURRENTENVIRONMENT 1039
|
|
#define IDC_ID2 1040
|
|
#define IDC_ID1 1041
|
|
#define IDC_SHOWIDS 1043
|
|
#define IDC_LIST3 1047
|
|
#define IDC_ENVIRONMENTLIST 1047
|
|
#define IDC_SIZEBOX 1048
|
|
#define IDC_EDIT1 1049
|
|
#define IDC_NEWENVNAME 1049
|
|
#define IDC_CRASHFILECONTENTS 1049
|
|
#define IDC_BOINGEDIT 1049
|
|
#define IDC_EDITID1 1050
|
|
#define IDC_EDITID2 1051
|
|
#define IDC_HOTKEY1 1053
|
|
#define IDC_LIST1 1054
|
|
#define IDC_ENVLIST 1054
|
|
#define IDC_CRASHFILES 1054
|
|
#define IDC_SELECTALL 1055
|
|
#define IDC_SELECTNONE 1056
|
|
#define IDC_SAVEGROUP 1057
|
|
#define IDC_TESTEAX 1058
|
|
#define IDC_RICHEDIT21 1059
|
|
#define IDC_CRASHHEADER 1059
|
|
#define IDC_RICHEDIT22 1061
|
|
#define IDC_PLEASETELLUS 1061
|
|
#define IDC_BUTTON2 1062
|
|
#define IDC_CRASHDETAILS 1062
|
|
#define IDC_DEADGUYVIEWER 1063
|
|
#define IDC_CRASHFILESIZE 1066
|
|
#define IDC_BUTTON1 1071
|
|
#define IDC_BOINGSTATUS 1072
|
|
#define IDC_BOINGPROGRESS 1073
|
|
#define IDC_TAB1 1074
|
|
#define IDC_CRASHTAB 1074
|
|
#define IDC_RICHEDIT23 1075
|
|
#define IDC_CRASHSUMMARY 1075
|
|
#define IDC_ERRORTEXT 1076
|
|
#define IDC_ICONPIC 1077
|
|
#define IDC_DIVIDERBAR 1078
|
|
#define IDC_PROGRESS1 1079
|
|
#define IDC_NETSTARTPROGRESS 1079
|
|
#define IDC_NETSTARTMESSAGE 1080
|
|
#define IDC_NETSTARTCOUNT 1081
|
|
#define IDC_STATIC_TITLE 1082
|
|
#define IDC_STATIC_STARTUP 1083
|
|
#define IDC_SAVEREPORT 1084
|