mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-08 08:07:06 -06:00
84 lines
2.5 KiB
Plaintext
Executable File
84 lines
2.5 KiB
Plaintext
Executable File
#include "ExtractDialogRes.h"
|
|
#include "../../GuiCommon.rc"
|
|
|
|
#define xc 280
|
|
#define yc 128
|
|
|
|
#undef g1xs
|
|
#undef g2x
|
|
#undef g2x2
|
|
#undef g2xs
|
|
#undef g2xs2
|
|
|
|
#define g1xs 128
|
|
|
|
#define gSpace 24
|
|
#define g2x (m + g1xs + gSpace)
|
|
#define g2x2 (g2x + m)
|
|
#define g2xs (xc - g1xs - gSpace)
|
|
#define g2xs2 (g2xs - m - m)
|
|
|
|
IDD_DIALOG_EXTRACT MY_DIALOG
|
|
CAPTION "Extract"
|
|
BEGIN
|
|
LTEXT "E&xtract to:", IDC_STATIC_EXTRACT_EXTRACT_TO, m, m, xc, 8
|
|
COMBOBOX IDC_EXTRACT_COMBO_PATH, m, m + 12, xc - bxsDots - 12, 100, MY_COMBO_WITH_EDIT
|
|
PUSHBUTTON "...", IDC_EXTRACT_BUTTON_SET_PATH, xs - m - bxsDots, m + 12 - 2, bxsDots, bys, WS_GROUP
|
|
|
|
LTEXT "Path mode:", IDC_EXTRACT_PATH_MODE, m, m + 36, g1xs, 8
|
|
COMBOBOX IDC_EXTRACT_COMBO_PATH_MODE, m, m + 48, g1xs, 140, MY_COMBO
|
|
|
|
LTEXT "Overwrite mode:", IDC_EXTRACT_OVERWRITE_MODE, m, m + 68, g1xs, 8
|
|
COMBOBOX IDC_EXTRACT_COMBO_OVERWRITE_MODE, m, m + 80, g1xs, 140, MY_COMBO
|
|
|
|
#ifdef UNDER_CE
|
|
LTEXT "Password", IDC_EXTRACT_PASSWORD, g2x, m + 36, g2xs, 8
|
|
#else
|
|
GROUPBOX "Password", IDC_EXTRACT_PASSWORD, g2x, m + 36, g2xs, 56
|
|
#endif
|
|
EDITTEXT IDC_EXTRACT_EDIT_PASSWORD, g2x2, m + 50, g2xs2, 14, ES_PASSWORD | ES_AUTOHSCROLL
|
|
CONTROL "Show Password", IDC_EXTRACT_CHECK_SHOW_PASSWORD, MY_CHECKBOX, g2x2, m + 72, g2xs2, 10
|
|
|
|
DEFPUSHBUTTON "OK", IDOK, bx3, by, bxs, bys, WS_GROUP
|
|
PUSHBUTTON "Cancel", IDCANCEL, bx2, by, bxs, bys
|
|
PUSHBUTTON "Help", IDHELP, bx1, by, bxs, bys
|
|
END
|
|
|
|
|
|
#ifdef UNDER_CE
|
|
|
|
#undef m
|
|
#define m 4
|
|
|
|
#undef xc
|
|
#undef yc
|
|
|
|
#define xc 152
|
|
#define yc 128
|
|
|
|
#undef g1xs
|
|
|
|
#define g1xs 64
|
|
|
|
IDD_DIALOG_EXTRACT_2 MY_DIALOG
|
|
CAPTION "Extract"
|
|
BEGIN
|
|
LTEXT "E&xtract to:", IDC_STATIC_EXTRACT_EXTRACT_TO, m, m, xc - bxsDots - 8, 8
|
|
COMBOBOX IDC_EXTRACT_COMBO_PATH, m, m + 12, xc - bxsDots - 8, 100, MY_COMBO_WITH_EDIT
|
|
PUSHBUTTON "...", IDC_EXTRACT_BUTTON_SET_PATH, xs - m - bxsDots, m + 12 - 3, bxsDots, bys, WS_GROUP
|
|
|
|
LTEXT "Path mode:", IDC_EXTRACT_PATH_MODE, m, m + 36, g1xs, 8
|
|
COMBOBOX IDC_EXTRACT_COMBO_PATH_MODE, m + g1xs, m + 36, xc - g1xs, 100, MY_COMBO
|
|
|
|
LTEXT "Overwrite mode:", IDC_EXTRACT_OVERWRITE_MODE, m, m + 56, g1xs, 8
|
|
COMBOBOX IDC_EXTRACT_COMBO_OVERWRITE_MODE, m + g1xs, m + 56, xc - g1xs, 100, MY_COMBO
|
|
|
|
LTEXT "Password", IDC_EXTRACT_PASSWORD, m, m + 76, g1xs, 8
|
|
EDITTEXT IDC_EXTRACT_EDIT_PASSWORD, m + g1xs, m + 76, xc - g1xs, 14, ES_PASSWORD | ES_AUTOHSCROLL
|
|
CONTROL "Show Password", IDC_EXTRACT_CHECK_SHOW_PASSWORD, MY_CHECKBOX, m, m + 92, xc, 10
|
|
|
|
OK_CANCEL
|
|
END
|
|
|
|
#endif
|