Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/7zip/FileManager/Resource/SystemPage/resource.rc')
-rwxr-xr-xCPP/7zip/FileManager/Resource/SystemPage/resource.rc31
1 files changed, 31 insertions, 0 deletions
diff --git a/CPP/7zip/FileManager/Resource/SystemPage/resource.rc b/CPP/7zip/FileManager/Resource/SystemPage/resource.rc
new file mode 100755
index 00000000..cf19d11b
--- /dev/null
+++ b/CPP/7zip/FileManager/Resource/SystemPage/resource.rc
@@ -0,0 +1,31 @@
+#include "resource.h"
+#include "../../../GuiCommon.rc"
+
+#define xSize2 238
+#define ySize2 214
+#define xSize (xSize2 + marg + marg)
+#define ySize (ySize2 + marg + marg)
+#define gSpace 30
+#define g0Size 110
+#define gYSize (ySize2 - 20 - bYSize)
+
+
+IDD_SYSTEM DIALOG 0, 0, xSize, ySize MY_PAGE_STYLE
+CAPTION "System"
+MY_FONT
+BEGIN
+ LTEXT "Associate 7-Zip with:", IDC_SYSTEM_STATIC_ASSOCIATE, marg, marg, xSize2, 8
+ CONTROL "List1", IDC_SYSTEM_LIST_ASSOCIATE, "SysListView32",
+ LVS_REPORT | LVS_SHOWSELALWAYS | LVS_SORTASCENDING | WS_BORDER | WS_TABSTOP,
+ marg, 20, g0Size, gYSize
+ CONTROL "List1", IDC_SYSTEM_LIST_PLUGINS, "SysListView32",
+ LVS_REPORT | LVS_SINGLESEL | LVS_SHOWSELALWAYS | NOT WS_VISIBLE | WS_BORDER | WS_TABSTOP,
+ marg + g0Size + gSpace, 20, xSize2 - gSpace - g0Size, gYSize
+ PUSHBUTTON "Select all", IDC_SYSTEM_SELECT_ALL, marg, (ySize - marg - bYSize), 90, bYSize
+
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PLUGIN "Plugin"
+END