2015-05-30 13:33:23 -05:00
|
|
|
// 30 may 2015
|
2015-05-31 10:12:29 -05:00
|
|
|
#include "winapi.h"
|
2015-05-30 14:01:21 -05:00
|
|
|
#include "resources.h"
|
2015-05-30 13:33:23 -05:00
|
|
|
|
|
|
|
// this is a UTF-8 file
|
|
|
|
#pragma code_page(65001)
|
|
|
|
|
2015-11-27 12:35:24 -06:00
|
|
|
// this is the Common Controls 6 manifest
|
2015-11-28 15:36:08 -06:00
|
|
|
// TODO set up the string values here
|
2015-11-27 12:35:24 -06:00
|
|
|
ISOLATIONAWARE_MANIFEST_RESOURCE_ID RT_MANIFEST "libui.manifest"
|
|
|
|
|
2015-05-30 14:01:21 -05:00
|
|
|
// this is the dialog template used by tab pages; see windows/tabpage.c for details
|
2015-05-30 13:33:23 -05:00
|
|
|
rcTabPageDialog DIALOGEX 0, 0, 100, 100
|
2015-06-07 21:21:08 -05:00
|
|
|
STYLE DS_CONTROL | WS_CHILD | WS_VISIBLE
|
2015-05-30 14:01:21 -05:00
|
|
|
EXSTYLE WS_EX_CONTROLPARENT
|
2015-05-30 13:33:23 -05:00
|
|
|
BEGIN
|
|
|
|
// nothing
|
|
|
|
END
|
2016-04-14 20:35:50 -05:00
|
|
|
|
|
|
|
// this is for our custom DirectWrite-based font dialog (see fontdialog.cpp)
|
|
|
|
// this is based on the "New Font Dialog with Syslink" in Microsoft's font.dlg
|
|
|
|
// TODO look at localization
|
2016-04-16 16:58:45 -05:00
|
|
|
// TODO make it look tighter and nicer like the real one, including the actual heights of the font family and style comboboxes
|
|
|
|
rcFontDialog DIALOGEX 13, 54, 243, 200
|
2016-04-14 20:35:50 -05:00
|
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU | DS_3DLOOK
|
|
|
|
CAPTION "Font"
|
|
|
|
FONT 9, "Segoe UI"
|
|
|
|
BEGIN
|
|
|
|
LTEXT "&Font:", -1, 7, 7, 98, 9
|
|
|
|
COMBOBOX rcFontFamilyCombobox, 7, 16, 98, 76,
|
|
|
|
CBS_SIMPLE | CBS_AUTOHSCROLL | CBS_DISABLENOSCROLL |
|
|
|
|
CBS_SORT | WS_VSCROLL | WS_TABSTOP | CBS_HASSTRINGS
|
|
|
|
|
|
|
|
LTEXT "Font st&yle:", -1, 114, 7, 74, 9
|
|
|
|
COMBOBOX rcFontStyleCombobox, 114, 16, 74, 76,
|
|
|
|
CBS_SIMPLE | CBS_AUTOHSCROLL | CBS_DISABLENOSCROLL |
|
|
|
|
WS_VSCROLL | WS_TABSTOP | CBS_HASSTRINGS
|
|
|
|
|
|
|
|
LTEXT "&Size:", -1, 198, 7, 36, 9
|
|
|
|
COMBOBOX rcFontSizeCombobox, 198, 16, 36, 76,
|
|
|
|
CBS_SIMPLE | CBS_AUTOHSCROLL | CBS_DISABLENOSCROLL |
|
|
|
|
CBS_SORT | WS_VSCROLL | WS_TABSTOP | CBS_HASSTRINGS
|
|
|
|
|
2016-04-16 16:58:45 -05:00
|
|
|
GROUPBOX "Sample", -1, 7, 97, 227, 70, WS_GROUP
|
|
|
|
CTEXT "AaBbYyZz", rcFontSamplePlacement, 9, 106, 224, 60, SS_NOPREFIX | NOT WS_VISIBLE
|
2016-04-14 20:35:50 -05:00
|
|
|
|
2016-04-16 16:58:45 -05:00
|
|
|
DEFPUSHBUTTON "OK", IDOK, 141, 181, 45, 14, WS_GROUP
|
|
|
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 181, 45, 14, WS_GROUP
|
2016-04-14 20:35:50 -05:00
|
|
|
END
|