1370b324cSopenharmony_ci#include "../../MyVersionInfo.rc"
2370b324cSopenharmony_ci#include "../../GuiCommon.rc"
3370b324cSopenharmony_ci#include "../../UI/GUI/ExtractDialogRes.h"
4370b324cSopenharmony_ci#include "../../UI/FileManager/PropertyNameRes.h"
5370b324cSopenharmony_ci
6370b324cSopenharmony_ci#include "resource.h"
7370b324cSopenharmony_ci
8370b324cSopenharmony_ciMY_VERSION_INFO_APP("7z SFX", "7z.sfx")
9370b324cSopenharmony_ci
10370b324cSopenharmony_ci#define xc 240
11370b324cSopenharmony_ci#define yc 64
12370b324cSopenharmony_ci
13370b324cSopenharmony_ciIDI_ICON ICON "7z.ico"
14370b324cSopenharmony_ci
15370b324cSopenharmony_ciIDD_EXTRACT  DIALOG  0, 0, xs, ys  MY_MODAL_DIALOG_STYLE  MY_FONT
16370b324cSopenharmony_ciCAPTION "7-Zip self-extracting archive"
17370b324cSopenharmony_ciBEGIN
18370b324cSopenharmony_ci  LTEXT          "E&xtract to:", IDT_EXTRACT_EXTRACT_TO, m, m, xc, 8
19370b324cSopenharmony_ci  EDITTEXT       IDC_EXTRACT_PATH, m, 21, xc - bxsDots - 12, 14, ES_AUTOHSCROLL
20370b324cSopenharmony_ci  PUSHBUTTON     "...", IDB_EXTRACT_SET_PATH, xs - m - bxsDots, 20, bxsDots, bys, WS_GROUP
21370b324cSopenharmony_ci  DEFPUSHBUTTON  "Extract", IDOK,     bx2, by, bxs, bys, WS_GROUP
22370b324cSopenharmony_ci  PUSHBUTTON     "Cancel",  IDCANCEL, bx1, by, bxs, bys
23370b324cSopenharmony_ciEND
24370b324cSopenharmony_ci
25370b324cSopenharmony_ci#ifdef UNDER_CE
26370b324cSopenharmony_ci
27370b324cSopenharmony_ci#undef xc
28370b324cSopenharmony_ci#define xc 144
29370b324cSopenharmony_ci
30370b324cSopenharmony_ciIDD_EXTRACT_2  DIALOG  0, 0, xs, ys  MY_MODAL_DIALOG_STYLE  MY_FONT
31370b324cSopenharmony_ciCAPTION "7-Zip self-extracting archive"
32370b324cSopenharmony_ciBEGIN
33370b324cSopenharmony_ci  LTEXT          "E&xtract to:", IDT_EXTRACT_EXTRACT_TO, m, m, xc - bxsDots - 12, 8
34370b324cSopenharmony_ci  EDITTEXT       IDC_EXTRACT_PATH, m, m + bys + 4, xc, 14, ES_AUTOHSCROLL
35370b324cSopenharmony_ci  PUSHBUTTON     "...", IDB_EXTRACT_SET_PATH, xs - m - bxsDots, m, bxsDots, bys, WS_GROUP
36370b324cSopenharmony_ci  DEFPUSHBUTTON  "Extract", IDOK,     bx2, by, bxs, bys, WS_GROUP
37370b324cSopenharmony_ci  PUSHBUTTON     "Cancel",  IDCANCEL, bx1, by, bxs, bys
38370b324cSopenharmony_ciEND
39370b324cSopenharmony_ci
40370b324cSopenharmony_ci#endif
41370b324cSopenharmony_ci
42370b324cSopenharmony_ci#include "../../UI/FileManager/OverwriteDialog.rc"
43370b324cSopenharmony_ci#include "../../UI/FileManager/PasswordDialog.rc"
44370b324cSopenharmony_ci#include "../../UI/FileManager/ProgressDialog2.rc"
45370b324cSopenharmony_ci#include "../../UI/GUI/Extract.rc"
46370b324cSopenharmony_ci
47370b324cSopenharmony_ciSTRINGTABLE DISCARDABLE
48370b324cSopenharmony_ciBEGIN
49370b324cSopenharmony_ci  IDS_PROP_MTIME        "Modified"
50370b324cSopenharmony_ciEND
51370b324cSopenharmony_ci
52370b324cSopenharmony_ci
53370b324cSopenharmony_ci#ifndef UNDER_CE
54370b324cSopenharmony_ci1 24 MOVEABLE PURE "../../UI/GUI/7zG.exe.manifest"
55370b324cSopenharmony_ci#endif
56