mirror of
https://github.com/fadden/ciderpress.git
synced 2024-12-20 23:29:17 +00:00
Update fonts in MDC dialogs
The About box needed some adjusting -- apparently the 10-point MS Shell Dlg doesn't have the same metrics as the 10-point MS Sans Serif.
This commit is contained in:
parent
0861b7ead4
commit
650434f06b
30
mdc/mdc.rc
30
mdc/mdc.rc
@ -68,31 +68,31 @@ END
|
|||||||
// Dialog
|
// Dialog
|
||||||
//
|
//
|
||||||
|
|
||||||
IDD_ABOUTBOX DIALOG 22, 17, 156, 111
|
IDD_ABOUTBOX DIALOGEX 22, 17, 178, 111
|
||||||
STYLE DS_SETFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
|
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_CAPTION | WS_SYSMENU
|
||||||
CAPTION "About"
|
CAPTION "About"
|
||||||
FONT 10, "MS Sans Serif"
|
FONT 10, "MS Shell Dlg", 400, 0, 0x0
|
||||||
BEGIN
|
BEGIN
|
||||||
ICON IDI_MDC,IDC_MYICON,7,7,20,20
|
ICON IDI_MDC,IDC_MYICON,7,7,18,16
|
||||||
LTEXT "MDC version %d.%d.%d",IDC_ABOUT_VERS,33,7,116,8,SS_NOPREFIX
|
LTEXT "MDC version %d.%d.%d",IDC_ABOUT_VERS,33,7,138,8,SS_NOPREFIX
|
||||||
LTEXT "Copyright © 2009 by CiderPress project authors.\rAll Rights Reserved.",IDC_STATIC,7,31,142,19
|
LTEXT "Copyright © 2015 by CiderPress project authors.\rAll Rights Reserved.",IDC_STATIC,7,31,164,19
|
||||||
DEFPUSHBUTTON "OK",IDOK,53,90,50,14
|
DEFPUSHBUTTON "OK",IDOK,64,90,50,14
|
||||||
LTEXT "This utility scans Apple II disk images and creates formatted listings of the files in them.",IDC_STATIC,7,58,142,26
|
LTEXT "This utility scans Apple II disk images and creates formatted listings of the files in them.",IDC_STATIC,7,58,164,26
|
||||||
LTEXT "Multi-Disk Catalog",IDC_STATIC,33,15,55,8
|
LTEXT "Multi-Disk Catalog",IDC_STATIC,33,15,138,8
|
||||||
END
|
END
|
||||||
|
|
||||||
IDD_CHOOSE_FILES DIALOGEX 0, 0, 270, 112
|
IDD_CHOOSE_FILES DIALOGEX 0, 0, 270, 112
|
||||||
STYLE DS_SETFONT | DS_3DLOOK | DS_CONTROL | WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS | WS_CLIPCHILDREN
|
STYLE DS_SETFONT | DS_3DLOOK | DS_FIXEDSYS | DS_CONTROL | WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS | WS_CLIPCHILDREN
|
||||||
FONT 8, "MS Sans Serif", 0, 0, 0x1
|
FONT 8, "MS Shell Dlg", 0, 0, 0x1
|
||||||
BEGIN
|
BEGIN
|
||||||
LTEXT "",1119,0,0,270,87,NOT WS_GROUP
|
LTEXT "",1119,0,0,270,87,NOT WS_GROUP
|
||||||
LTEXT "Select the disk images to scan. If you select a folder, all files in that folder will be processed. Use Ctrl-click and Shift-click to select multiple items.",IDC_CHOOSEFILES_STATIC1,7,87,263,17
|
LTEXT "Select the disk images to scan. If you select a folder, all files in that folder will be processed. Use Ctrl-click and Shift-click to select multiple items.",IDC_CHOOSEFILES_STATIC1,7,87,263,17
|
||||||
END
|
END
|
||||||
|
|
||||||
IDD_PROGRESS DIALOG 0, 0, 250, 66
|
IDD_PROGRESS DIALOGEX 0, 0, 250, 66
|
||||||
STYLE DS_SETFONT | DS_MODALFRAME | DS_3DLOOK | WS_POPUP | WS_VISIBLE | WS_CAPTION
|
STYLE DS_SETFONT | DS_MODALFRAME | DS_3DLOOK | DS_FIXEDSYS | WS_POPUP | WS_VISIBLE | WS_CAPTION
|
||||||
CAPTION "Progress..."
|
CAPTION "Progress..."
|
||||||
FONT 8, "MS Sans Serif"
|
FONT 8, "MS Shell Dlg", 0, 0, 0x0
|
||||||
BEGIN
|
BEGIN
|
||||||
PUSHBUTTON "Cancel",IDCANCEL,99,45,50,14
|
PUSHBUTTON "Cancel",IDCANCEL,99,45,50,14
|
||||||
LTEXT "Now scanning:",IDC_STATIC,7,7,96,8
|
LTEXT "Now scanning:",IDC_STATIC,7,7,96,8
|
||||||
@ -140,7 +140,7 @@ BEGIN
|
|||||||
IDD_ABOUTBOX, DIALOG
|
IDD_ABOUTBOX, DIALOG
|
||||||
BEGIN
|
BEGIN
|
||||||
LEFTMARGIN, 7
|
LEFTMARGIN, 7
|
||||||
RIGHTMARGIN, 149
|
RIGHTMARGIN, 171
|
||||||
VERTGUIDE, 33
|
VERTGUIDE, 33
|
||||||
TOPMARGIN, 7
|
TOPMARGIN, 7
|
||||||
BOTTOMMARGIN, 104
|
BOTTOMMARGIN, 104
|
||||||
|
Loading…
Reference in New Issue
Block a user