summaryrefslogtreecommitdiffstats
path: root/other-licenses/7zstub/src/CPP/7zip/GuiCommon.rc
blob: 565ee702ef99fd525daa4926f6510adc8f610cdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#include <windows.h>

// #include <winnt.h>
// #include <WinUser.h>

// for Windows CE:
#include <CommCtrl.h>


LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US

#undef m
#undef bxs
#undef bys
#undef bxsDots
#undef y
#undef xc
#undef yc
#undef xs
#undef ys
#undef bx
#undef bx1
#undef bx2
#undef bx3
#undef by
#undef by1
#undef by2
#undef by3
#undef gSpace
#undef gSize
#undef marg2
#undef marg3

#undef MY_DIALOG
#undef MY_RESIZE_DIALOG
#undef MY_PAGE

#define m 8
#define bxs 64
#define bys 16
#define bxsDots 20

#define xs (xc + m + m)
#define ys (yc + m + m)

#define bx1 (xs - m - bxs)
#define bx2 (bx1 - m - bxs)
#define bx3 (bx2 - m - bxs)
#define bx bx1

#define by1 (ys - m - bys)
#define by2 (by1 - m - bys)
#define by by1


#define MY_MODAL_DIALOG_STYLE  STYLE  DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU

#define MY_MODAL_RESIZE_DIALOG_STYLE  MY_MODAL_DIALOG_STYLE | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_SIZEBOX | WS_THICKFRAME

#define MY_PAGE_STYLE  STYLE  WS_CHILD | WS_DISABLED | WS_CAPTION

#define MY_FONT  FONT 8, "MS Shell Dlg"

#define SMALL_PAGE_SIZE_X 120

// #define MY_DIALOG         DIALOG 0, 0, xs, ys  MY_MODAL_DIALOG_STYLE  MY_FONT
// #define MY_RESIZE_DIALOG  DIALOG 0, 0, xs, ys  MY_MODAL_RESIZE_DIALOG_STYLE  MY_FONT
#define MY_PAGE           DIALOG 0, 0, xs, ys  MY_PAGE_STYLE  MY_FONT

#define OK_CANCEL \
  DEFPUSHBUTTON  "OK",     IDOK,     bx2, by, bxs, bys \
  PUSHBUTTON     "Cancel", IDCANCEL, bx1, by, bxs, bys

#define MY_BUTTON__CLOSE \
  DEFPUSHBUTTON  "&Close", IDCLOSE,  bx1, by, bxs, bys


#define MY_COMBO  CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
#define MY_COMBO_SORTED  MY_COMBO | CBS_SORT
#define MY_COMBO_WITH_EDIT  CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_VSCROLL | WS_TABSTOP 

#define MY_CHECKBOX "Button", BS_AUTOCHECKBOX | WS_TABSTOP

#define MY_TEXT_NOPREFIX 8, SS_NOPREFIX