source: Daodan/MSYS2/mingw32/i686-w64-mingw32/include/font.dlg@ 1175

Last change on this file since 1175 was 1166, checked in by rossy, 3 years ago

Daodan: Replace MinGW build env with an up-to-date MSYS2 env

File size: 1.9 KB
RevLine 
[1166]1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6FORMATDLGORD31 DIALOG 13,54,287,196
7STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU |
8 DS_CONTEXTHELP | DS_3DLOOK
9CAPTION "Font"
10FONT 8,"MS Shell Dlg"
11BEGIN
12 LTEXT "&Font:",stc1,7,7,40,9
13 COMBOBOX cmb1,7,16,98,76,CBS_SIMPLE | CBS_AUTOHSCROLL | CBS_DISABLENOSCROLL |
14 CBS_SORT | WS_VSCROLL | WS_TABSTOP | CBS_HASSTRINGS |
15 CBS_OWNERDRAWFIXED
16
17 LTEXT "Font st&yle:",stc2,110,7,44,9
18 COMBOBOX cmb2,110,16,74,76,CBS_SIMPLE | CBS_AUTOHSCROLL | WS_VSCROLL | WS_TABSTOP
19
20 LTEXT "&Size:",stc3,189,7,30,9
21 COMBOBOX cmb3,190,16,36,76,CBS_SIMPLE | CBS_AUTOHSCROLL | CBS_DISABLENOSCROLL |
22 CBS_SORT | WS_VSCROLL | WS_TABSTOP | CBS_HASSTRINGS |
23 CBS_OWNERDRAWFIXED
24
25 GROUPBOX "Effects",grp1,7,97,98,72,WS_GROUP
26 AUTOCHECKBOX "Stri&keout",chx1,13,110,49,10,WS_TABSTOP
27 AUTOCHECKBOX "&Underline",chx2,13,123,51,10
28
29 LTEXT "&Color:",stc4,13,136,30,9
30 COMBOBOX cmb4,13,146,82,100,CBS_DROPDOWNLIST | CBS_OWNERDRAWFIXED | CBS_AUTOHSCROLL |
31 CBS_HASSTRINGS | WS_BORDER | WS_VSCROLL | WS_TABSTOP
32
33 GROUPBOX "Sample",grp2,110,97,116,43,WS_GROUP
34 CTEXT "AaBbYyZz",stc5,118,111,100,23,SS_NOPREFIX | NOT WS_VISIBLE
35 LTEXT "",stc6,7,172,219,20,SS_NOPREFIX | NOT WS_GROUP
36
37 LTEXT "Sc&ript:",stc7,110,147,30,9
38 COMBOBOX cmb5,110,157,116,30,CBS_DROPDOWNLIST |
39 CBS_OWNERDRAWFIXED | CBS_AUTOHSCROLL | CBS_HASSTRINGS |
40 WS_BORDER | WS_VSCROLL | WS_TABSTOP
41
42 DEFPUSHBUTTON "OK",IDOK,231,16,45,14,WS_GROUP
43 PUSHBUTTON "Cancel",IDCANCEL,231,32,45,14,WS_GROUP
44 PUSHBUTTON "&Apply",psh3,231,48,45,14,WS_GROUP
45 PUSHBUTTON "&Help",pshHelp,231,64,45,14,WS_GROUP
46
47END
Note: See TracBrowser for help on using the repository browser.