mirror of
https://github.com/reactos/reactos.git
synced 2025-07-05 19:21:23 +00:00
Added some resources.
svn path=/trunk/; revision=3200
This commit is contained in:
parent
95e5b26b81
commit
b2afb794ec
6 changed files with 320 additions and 208 deletions
|
@ -49,12 +49,6 @@
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
||||||
struct ExecuteDialog {
|
|
||||||
TCHAR cmd[MAX_PATH];
|
|
||||||
int cmdshow;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
BOOL CALLBACK ExecuteDialogWndProg(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
|
BOOL CALLBACK ExecuteDialogWndProg(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
|
||||||
{
|
{
|
||||||
static struct ExecuteDialog* dlg;
|
static struct ExecuteDialog* dlg;
|
||||||
|
|
|
@ -34,9 +34,14 @@ extern "C" {
|
||||||
#include "resource.h"
|
#include "resource.h"
|
||||||
|
|
||||||
|
|
||||||
BOOL CALLBACK ExecuteDialogWndProg(HWND, UINT, WPARAM, LPARAM);
|
struct ExecuteDialog {
|
||||||
|
TCHAR cmd[MAX_PATH];
|
||||||
|
int cmdshow;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
BOOL CALLBACK ExecuteDialogWndProg(HWND, UINT, WPARAM, LPARAM);
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
};
|
};
|
||||||
|
|
|
@ -46,6 +46,7 @@
|
||||||
#include "utils.h"
|
#include "utils.h"
|
||||||
#include "run.h"
|
#include "run.h"
|
||||||
#include "format.h"
|
#include "format.h"
|
||||||
|
#include "dialogs.h"
|
||||||
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
@ -407,11 +408,24 @@ LRESULT _CmdWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
|
||||||
SetErrorMode(OldMode); // Put it back the way it was.
|
SetErrorMode(OldMode); // Put it back the way it was.
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case ID_OPTIONS_CONFIRMATION:
|
case ID_VIEW_BY_FILE_TYPE:
|
||||||
{
|
{
|
||||||
// struct ExecuteDialog dlg = {{0}};
|
struct ExecuteDialog dlg = {{0}};
|
||||||
// if (DialogBoxParam(Globals.hInstance, MAKEINTRESOURCE(IDD_EXECUTE), hWnd, ExecuteDialogWndProg, (LPARAM)&dlg) == IDOK)
|
if (DialogBoxParam(Globals.hInstance, MAKEINTRESOURCE(IDD_DIALOG_VIEW_TYPE), hWnd, ExecuteDialogWndProg, (LPARAM)&dlg) == IDOK) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case ID_OPTIONS_CONFIRMATION:
|
||||||
|
/*
|
||||||
|
#define IDD_DIALOG_DIRECTORY 144
|
||||||
|
#define IDD_DIALOG_VIEW_TYPE 145
|
||||||
|
#define IDD_DIALOG_OPTIONS_CONFIRMATON 146
|
||||||
|
*/
|
||||||
|
{
|
||||||
|
struct ExecuteDialog dlg = {{0}};
|
||||||
|
if (DialogBoxParam(Globals.hInstance, MAKEINTRESOURCE(IDD_DIALOG_OPTIONS_CONFIRMATON), hWnd, ExecuteDialogWndProg, (LPARAM)&dlg) == IDOK) {
|
||||||
// ShellExecute(hWnd, _T("open")/*operation*/, dlg.cmd/*file*/, NULL/*parameters*/, NULL/*dir*/, dlg.cmdshow);
|
// ShellExecute(hWnd, _T("open")/*operation*/, dlg.cmd/*file*/, NULL/*parameters*/, NULL/*dir*/, dlg.cmdshow);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case ID_OPTIONS_FONT:
|
case ID_OPTIONS_FONT:
|
||||||
|
|
|
@ -172,7 +172,7 @@ static HWND CreateListView(HWND hwndParent, int id)
|
||||||
|
|
||||||
void OnGetDispInfo(NMLVDISPINFO* plvdi)
|
void OnGetDispInfo(NMLVDISPINFO* plvdi)
|
||||||
{
|
{
|
||||||
static buffer[200];
|
static char buffer[200];
|
||||||
|
|
||||||
// LVITEM* pItem = &(plvdi->item);
|
// LVITEM* pItem = &(plvdi->item);
|
||||||
// Entry* entry = (Entry*)pItem->lParam;
|
// Entry* entry = (Entry*)pItem->lParam;
|
||||||
|
@ -192,7 +192,7 @@ void OnGetDispInfo(NMLVDISPINFO* plvdi)
|
||||||
|
|
||||||
//entry->bhfi.ftCreationTime
|
//entry->bhfi.ftCreationTime
|
||||||
|
|
||||||
sprintf(buffer, "%u", entry->bhfi.nFileSizeLow);
|
wsprintf(buffer, "%u", entry->bhfi.nFileSizeLow);
|
||||||
plvdi->item.pszText = buffer;
|
plvdi->item.pszText = buffer;
|
||||||
} else {
|
} else {
|
||||||
plvdi->item.pszText = "unknown";
|
plvdi->item.pszText = "unknown";
|
||||||
|
|
|
@ -10,8 +10,6 @@
|
||||||
#define ID_SECURITY_MENU 5
|
#define ID_SECURITY_MENU 5
|
||||||
#define ID_WINDOW_MENU 6
|
#define ID_WINDOW_MENU 6
|
||||||
#define ID_HELP_MENU 7
|
#define ID_HELP_MENU 7
|
||||||
|
|
||||||
|
|
||||||
#define IDS_LIST_COLUMN_FIRST 91
|
#define IDS_LIST_COLUMN_FIRST 91
|
||||||
#define IDS_LIST_COLUMN_NAME 91
|
#define IDS_LIST_COLUMN_NAME 91
|
||||||
#define IDS_LIST_COLUMN_SIZE 92
|
#define IDS_LIST_COLUMN_SIZE 92
|
||||||
|
@ -19,34 +17,39 @@
|
||||||
#define IDS_LIST_COLUMN_ATTRIB 94
|
#define IDS_LIST_COLUMN_ATTRIB 94
|
||||||
#define IDS_LIST_COLUMN_DOSNAME 95
|
#define IDS_LIST_COLUMN_DOSNAME 95
|
||||||
#define IDS_LIST_COLUMN_LAST 95
|
#define IDS_LIST_COLUMN_LAST 95
|
||||||
|
|
||||||
#define IDD_ABOUTBOX 104
|
#define IDD_ABOUTBOX 104
|
||||||
#define IDS_APP_TITLE 105
|
#define IDS_APP_TITLE 105
|
||||||
#define IDI_WINFILE 107
|
#define IDI_WINFILE 107
|
||||||
#define IDI_SMALL 108
|
#define IDI_SMALL 108
|
||||||
#define IDC_WINFILE 109
|
#define IDC_WINFILE 109
|
||||||
#define IDC_WINFILE_CHILD 110
|
#define IDC_WINFILE_CHILD 110
|
||||||
//#define IDR_WINFILE_MENU 130
|
|
||||||
#define IDD_DIALOG1 131
|
#define IDD_DIALOG1 131
|
||||||
|
#define IDD_DIALOG_FILE_MOVE 131
|
||||||
#define IDB_FOLDER 132
|
#define IDB_FOLDER 132
|
||||||
#define IDB_FOLDER_RED 133
|
#define IDB_FOLDER_RED 133
|
||||||
#define IDB_FOLDER_OPEN 134
|
#define IDB_FOLDER_OPEN 134
|
||||||
|
|
||||||
#define IDB_ROOT 135
|
#define IDB_ROOT 135
|
||||||
#define IDB_TOOLBAR 136
|
#define IDB_TOOLBAR 136
|
||||||
#define IDB_DRIVEBAR 137
|
#define IDB_DRIVEBAR 137
|
||||||
#define IDB_IMAGES 138
|
#define IDB_IMAGES 138
|
||||||
|
#define IDD_DIALOG_DIRECTORY 144
|
||||||
//#define IDB_FOLDER_PLUS 139
|
#define IDD_DIALOG_VIEW_TYPE 145
|
||||||
//#define IDB_FOLDER_MINUS 140
|
#define IDD_DIALOG_OPTIONS_CONFIRMATON 146
|
||||||
//#define IDB_FOLDER_OPEN_PLUS 142
|
|
||||||
//#define IDB_FOLDER_OPEN_MINUS 143
|
|
||||||
|
|
||||||
|
|
||||||
#define ID_WINDOW_CLOSE 798
|
#define ID_WINDOW_CLOSE 798
|
||||||
#define ID_WINDOW_CLOSEALL 799
|
#define ID_WINDOW_CLOSEALL 799
|
||||||
|
#define IDC_EDIT1 1000
|
||||||
|
#define IDC_VIEW_TYPE_DIRECTORIES 1001
|
||||||
|
#define IDC_EDIT2 1001
|
||||||
|
#define IDC_VIEW_TYPE_PROGRAMS 1002
|
||||||
|
#define IDC_VIEW_TYPE_DOCUMENTS 1003
|
||||||
|
#define IDC_VIEW_TYPE_OTHERS 1004
|
||||||
|
#define IDC_VIEW_TYPE_SYSFILES 1005
|
||||||
|
#define IDC_CONFIRMATION_FILE_DELETE 1006
|
||||||
|
#define IDC_CONFIRMATION_DIR_DELETE 1007
|
||||||
|
#define IDC_CONFIRMATION_FILE_REPLACE 1008
|
||||||
|
#define IDC_CONFIRMATION_MOUSE_ACTIONS 1009
|
||||||
|
#define IDC_CONFIRMATION_DISK_COMMANDS 1010
|
||||||
|
#define IDC_CONFIRMATION_MODIFY_SYSTEM 1011
|
||||||
#define ID_FILE_OPEN 32769
|
#define ID_FILE_OPEN 32769
|
||||||
#define ID_FILE_MOVE 32770
|
#define ID_FILE_MOVE 32770
|
||||||
#define ID_FILE_COPY 32771
|
#define ID_FILE_COPY 32771
|
||||||
|
@ -63,7 +66,6 @@
|
||||||
#define ID_FILE_SEARCH 32782
|
#define ID_FILE_SEARCH 32782
|
||||||
#define ID_FILE_SELECT_FILES 32783
|
#define ID_FILE_SELECT_FILES 32783
|
||||||
#define ID_FILE_EXIT 32784
|
#define ID_FILE_EXIT 32784
|
||||||
|
|
||||||
#define ID_DISK_COPY_DISK 32785
|
#define ID_DISK_COPY_DISK 32785
|
||||||
#define ID_DISK_LABEL_DISK 32786
|
#define ID_DISK_LABEL_DISK 32786
|
||||||
#define ID_DISK_FORMAT_DISK 32787
|
#define ID_DISK_FORMAT_DISK 32787
|
||||||
|
@ -72,12 +74,10 @@
|
||||||
#define ID_DISK_SHARE_AS 32790
|
#define ID_DISK_SHARE_AS 32790
|
||||||
#define ID_DISK_STOP_SHARING 32791
|
#define ID_DISK_STOP_SHARING 32791
|
||||||
#define ID_DISK_SELECT_DRIVE 32792
|
#define ID_DISK_SELECT_DRIVE 32792
|
||||||
|
|
||||||
#define ID_TREE_EXPAND_ONE_LEVEL 32793
|
#define ID_TREE_EXPAND_ONE_LEVEL 32793
|
||||||
#define ID_TREE_EXPAND_BRANCH 32794
|
#define ID_TREE_EXPAND_BRANCH 32794
|
||||||
#define ID_TREE_EXPAND_ALL 32795
|
#define ID_TREE_EXPAND_ALL 32795
|
||||||
#define ID_TREE_INDICATE_EXPANDABLE_BRANCHES 32796
|
#define ID_TREE_INDICATE_EXPANDABLE_BRANCHES 32796
|
||||||
|
|
||||||
#define ID_VIEW_TREE_DIRECTORY 32797
|
#define ID_VIEW_TREE_DIRECTORY 32797
|
||||||
#define ID_VIEW_TREE_ONLY 32798
|
#define ID_VIEW_TREE_ONLY 32798
|
||||||
#define ID_VIEW_DIRECTORY_ONLY 32799
|
#define ID_VIEW_DIRECTORY_ONLY 32799
|
||||||
|
@ -90,7 +90,6 @@
|
||||||
#define ID_VIEW_SORT_BY_SIZE 32806
|
#define ID_VIEW_SORT_BY_SIZE 32806
|
||||||
#define ID_VIEW_SORT_BY_DATE 32807
|
#define ID_VIEW_SORT_BY_DATE 32807
|
||||||
#define ID_VIEW_BY_FILE_TYPE 32808
|
#define ID_VIEW_BY_FILE_TYPE 32808
|
||||||
|
|
||||||
#define ID_OPTIONS_CONFIRMATION 32809
|
#define ID_OPTIONS_CONFIRMATION 32809
|
||||||
#define ID_OPTIONS_FONT 32810
|
#define ID_OPTIONS_FONT 32810
|
||||||
#define ID_OPTIONS_CUSTOMISE_TOOLBAR 32811
|
#define ID_OPTIONS_CUSTOMISE_TOOLBAR 32811
|
||||||
|
@ -100,36 +99,30 @@
|
||||||
#define ID_OPTIONS_OPEN_NEW_WINDOW_ON_CONNECT 32815
|
#define ID_OPTIONS_OPEN_NEW_WINDOW_ON_CONNECT 32815
|
||||||
#define ID_OPTIONS_MINIMISE_ON_USE 32816
|
#define ID_OPTIONS_MINIMISE_ON_USE 32816
|
||||||
#define ID_OPTIONS_SAVE_ON_EXIT 32817
|
#define ID_OPTIONS_SAVE_ON_EXIT 32817
|
||||||
|
|
||||||
#define ID_SECURITY_PERMISSIONS 32818
|
#define ID_SECURITY_PERMISSIONS 32818
|
||||||
#define ID_SECURITY_AUDITING 32819
|
#define ID_SECURITY_AUDITING 32819
|
||||||
#define ID_SECURITY_OWNER 32820
|
#define ID_SECURITY_OWNER 32820
|
||||||
|
|
||||||
#define ID_WINDOW_NEW_WINDOW 32821
|
#define ID_WINDOW_NEW_WINDOW 32821
|
||||||
#define ID_WINDOW_CASCADE 32822
|
#define ID_WINDOW_CASCADE 32822
|
||||||
#define ID_WINDOW_TILE_HORZ 32823
|
#define ID_WINDOW_TILE_HORZ 32823
|
||||||
#define ID_WINDOW_TILE_VERT 32824
|
#define ID_WINDOW_TILE_VERT 32824
|
||||||
#define ID_WINDOW_ARRANGE_ICONS 32825
|
#define ID_WINDOW_ARRANGE_ICONS 32825
|
||||||
#define ID_WINDOW_REFRESH 32826
|
#define ID_WINDOW_REFRESH 32826
|
||||||
|
|
||||||
#define ID_HELP_CONTENTS 32827
|
#define ID_HELP_CONTENTS 32827
|
||||||
#define ID_HELP_SEARCH_HELP 32828
|
#define ID_HELP_SEARCH_HELP 32828
|
||||||
#define ID_HELP_HOW_TO_USE_HELP 32829
|
#define ID_HELP_HOW_TO_USE_HELP 32829
|
||||||
#define ID_HELP_ABOUT 32830
|
#define ID_HELP_ABOUT 32830
|
||||||
|
|
||||||
#define IDC_LICENSE_EDIT 32831
|
#define IDC_LICENSE_EDIT 32831
|
||||||
#define IDS_LICENSE 32832
|
#define IDS_LICENSE 32832
|
||||||
|
|
||||||
|
|
||||||
#define IDC_STATIC -1
|
#define IDC_STATIC -1
|
||||||
|
|
||||||
// Next default values for new objects
|
// Next default values for new objects
|
||||||
//
|
//
|
||||||
#ifdef APSTUDIO_INVOKED
|
#ifdef APSTUDIO_INVOKED
|
||||||
#ifndef APSTUDIO_READONLY_SYMBOLS
|
#ifndef APSTUDIO_READONLY_SYMBOLS
|
||||||
#define _APS_NEXT_RESOURCE_VALUE 144
|
#define _APS_NEXT_RESOURCE_VALUE 147
|
||||||
#define _APS_NEXT_COMMAND_VALUE 32832
|
#define _APS_NEXT_COMMAND_VALUE 32832
|
||||||
#define _APS_NEXT_CONTROL_VALUE 1000
|
#define _APS_NEXT_CONTROL_VALUE 1007
|
||||||
#define _APS_NEXT_SYMED_VALUE 110
|
#define _APS_NEXT_SYMED_VALUE 110
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -34,21 +34,15 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
||||||
IDI_WINFILE ICON DISCARDABLE "res/winfile.ico"
|
IDI_WINFILE ICON DISCARDABLE "res/winfile.ico"
|
||||||
IDI_SMALL ICON DISCARDABLE "res/small.ico"
|
IDI_SMALL ICON DISCARDABLE "res/small.ico"
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Bitmaps
|
//
|
||||||
|
// Bitmap
|
||||||
//
|
//
|
||||||
|
|
||||||
//IDB_FOLDER_PLUS BITMAP DISCARDABLE "res/folder_plus.bmp"
|
|
||||||
//IDB_FOLDER_MINUS BITMAP DISCARDABLE "res/folder_minus.bmp"
|
|
||||||
//IDB_FOLDER_OPEN_PLUS BITMAP DISCARDABLE "res/folder_open_plus.bmp"
|
|
||||||
//IDB_FOLDER_OPEN_MINUS BITMAP DISCARDABLE "res/folder_open_minus.bmp"
|
|
||||||
|
|
||||||
IDB_FOLDER BITMAP DISCARDABLE "res/folder1.bmp"
|
IDB_FOLDER BITMAP DISCARDABLE "res/folder1.bmp"
|
||||||
IDB_FOLDER_RED BITMAP DISCARDABLE "res/folder3.bmp"
|
IDB_FOLDER_RED BITMAP DISCARDABLE "res/folder3.bmp"
|
||||||
IDB_FOLDER_OPEN BITMAP DISCARDABLE "res/folder_open.bmp"
|
IDB_FOLDER_OPEN BITMAP DISCARDABLE "res/folder_open.bmp"
|
||||||
|
|
||||||
IDB_ROOT BITMAP DISCARDABLE "res/folder2.bmp"
|
IDB_ROOT BITMAP DISCARDABLE "res/folder2.bmp"
|
||||||
|
|
||||||
IDB_TOOLBAR BITMAP DISCARDABLE "res/toolbar.bmp"
|
IDB_TOOLBAR BITMAP DISCARDABLE "res/toolbar.bmp"
|
||||||
IDB_DRIVEBAR BITMAP DISCARDABLE "res/drivebar.bmp"
|
IDB_DRIVEBAR BITMAP DISCARDABLE "res/drivebar.bmp"
|
||||||
IDB_IMAGES BITMAP DISCARDABLE "res/images.bmp"
|
IDB_IMAGES BITMAP DISCARDABLE "res/images.bmp"
|
||||||
|
@ -63,9 +57,10 @@ BEGIN
|
||||||
POPUP "&File"
|
POPUP "&File"
|
||||||
BEGIN
|
BEGIN
|
||||||
MENUITEM "&Open\tEnter", ID_FILE_OPEN, GRAYED
|
MENUITEM "&Open\tEnter", ID_FILE_OPEN, GRAYED
|
||||||
MENUITEM "&Move...\tF8", ID_FILE_MOVE, GRAYED
|
MENUITEM "&Move...\tF8", ID_FILE_MOVE
|
||||||
MENUITEM "&Copy...\tF9", ID_FILE_COPY, GRAYED
|
MENUITEM "&Copy...\tF9", ID_FILE_COPY, GRAYED
|
||||||
MENUITEM "Copy to Clip&board...\tF9", ID_FILE_COPY_CLIPBOARD, GRAYED
|
MENUITEM "Copy to Clip&board...\tF9", ID_FILE_COPY_CLIPBOARD
|
||||||
|
, GRAYED
|
||||||
MENUITEM "&Delete...\tDel", ID_FILE_DELETE, GRAYED
|
MENUITEM "&Delete...\tDel", ID_FILE_DELETE, GRAYED
|
||||||
MENUITEM "Re&name...\t", ID_FILE_RENAME, GRAYED
|
MENUITEM "Re&name...\t", ID_FILE_RENAME, GRAYED
|
||||||
MENUITEM "Proper&ties...\tAlt+Enter", ID_FILE_PROPERTIES, GRAYED
|
MENUITEM "Proper&ties...\tAlt+Enter", ID_FILE_PROPERTIES, GRAYED
|
||||||
|
@ -77,7 +72,8 @@ BEGIN
|
||||||
MENUITEM "&Print...\t", ID_FILE_PRINT, GRAYED
|
MENUITEM "&Print...\t", ID_FILE_PRINT, GRAYED
|
||||||
MENUITEM "&Associate...\t", ID_FILE_ASSOCIATE, GRAYED
|
MENUITEM "&Associate...\t", ID_FILE_ASSOCIATE, GRAYED
|
||||||
MENUITEM SEPARATOR
|
MENUITEM SEPARATOR
|
||||||
MENUITEM "Cr&eate directory...\t", ID_FILE_CREATE_DIRECTORY, GRAYED
|
MENUITEM "Cr&eate directory...\t", ID_FILE_CREATE_DIRECTORY
|
||||||
|
, GRAYED
|
||||||
MENUITEM "Searc&h...\t", ID_FILE_SEARCH, GRAYED
|
MENUITEM "Searc&h...\t", ID_FILE_SEARCH, GRAYED
|
||||||
MENUITEM "Select &Files...\t", ID_FILE_SELECT_FILES, GRAYED
|
MENUITEM "Select &Files...\t", ID_FILE_SELECT_FILES, GRAYED
|
||||||
MENUITEM SEPARATOR
|
MENUITEM SEPARATOR
|
||||||
|
@ -90,8 +86,11 @@ BEGIN
|
||||||
MENUITEM SEPARATOR
|
MENUITEM SEPARATOR
|
||||||
MENUITEM "&Format Disk..\t", ID_DISK_FORMAT_DISK
|
MENUITEM "&Format Disk..\t", ID_DISK_FORMAT_DISK
|
||||||
MENUITEM SEPARATOR
|
MENUITEM SEPARATOR
|
||||||
MENUITEM "Connect &Network Drive...", ID_DISK_CONNECT_NETWORK_DRIVE, GRAYED
|
MENUITEM "Connect &Network Drive...", ID_DISK_CONNECT_NETWORK_DRIVE
|
||||||
MENUITEM "&Disconnect Network Drive...",ID_DISK_DISCONNECT_NETWORK_DRIVE, GRAYED
|
, GRAYED
|
||||||
|
MENUITEM "&Disconnect Network Drive...",
|
||||||
|
ID_DISK_DISCONNECT_NETWORK_DRIVE
|
||||||
|
, GRAYED
|
||||||
MENUITEM SEPARATOR
|
MENUITEM SEPARATOR
|
||||||
MENUITEM "Share &As...", ID_DISK_SHARE_AS, GRAYED
|
MENUITEM "Share &As...", ID_DISK_SHARE_AS, GRAYED
|
||||||
MENUITEM "S&top Sharing...", ID_DISK_STOP_SHARING, GRAYED
|
MENUITEM "S&top Sharing...", ID_DISK_STOP_SHARING, GRAYED
|
||||||
|
@ -104,44 +103,52 @@ BEGIN
|
||||||
MENUITEM "Expand &Branch\t*", ID_TREE_EXPAND_BRANCH
|
MENUITEM "Expand &Branch\t*", ID_TREE_EXPAND_BRANCH
|
||||||
MENUITEM "Expand &All\tCtrl+*", ID_TREE_EXPAND_ALL
|
MENUITEM "Expand &All\tCtrl+*", ID_TREE_EXPAND_ALL
|
||||||
MENUITEM SEPARATOR
|
MENUITEM SEPARATOR
|
||||||
MENUITEM "&Indicate Expandable Branches",ID_TREE_INDICATE_EXPANDABLE_BRANCHES
|
MENUITEM "&Indicate Expandable Branches",
|
||||||
|
ID_TREE_INDICATE_EXPANDABLE_BRANCHES
|
||||||
|
|
||||||
END
|
END
|
||||||
POPUP "&View"
|
POPUP "&View"
|
||||||
BEGIN
|
BEGIN
|
||||||
MENUITEM "T&ree and Directory", ID_VIEW_TREE_DIRECTORY, GRAYED
|
MENUITEM "T&ree and Directory", ID_VIEW_TREE_DIRECTORY
|
||||||
|
, GRAYED
|
||||||
MENUITEM "Tr&ee Only", ID_VIEW_TREE_ONLY, GRAYED
|
MENUITEM "Tr&ee Only", ID_VIEW_TREE_ONLY, GRAYED
|
||||||
MENUITEM "Directory &Only", ID_VIEW_DIRECTORY_ONLY, GRAYED
|
MENUITEM "Directory &Only", ID_VIEW_DIRECTORY_ONLY
|
||||||
|
, GRAYED
|
||||||
MENUITEM SEPARATOR
|
MENUITEM SEPARATOR
|
||||||
MENUITEM "Sp&lit", ID_VIEW_SPLIT, GRAYED
|
MENUITEM "Sp&lit", ID_VIEW_SPLIT, GRAYED
|
||||||
MENUITEM SEPARATOR
|
MENUITEM SEPARATOR
|
||||||
MENUITEM "&Name", ID_VIEW_NAME
|
MENUITEM "&Name", ID_VIEW_NAME
|
||||||
MENUITEM "&All File Details", ID_VIEW_ALL_FILE_DETAILS
|
MENUITEM "&All File Details", ID_VIEW_ALL_FILE_DETAILS
|
||||||
MENUITEM "&Partial Details...", ID_VIEW_PARTIAL_DETAILS, GRAYED
|
MENUITEM "&Partial Details...", ID_VIEW_PARTIAL_DETAILS
|
||||||
|
, GRAYED
|
||||||
MENUITEM SEPARATOR
|
MENUITEM SEPARATOR
|
||||||
MENUITEM "&Sort by Name", ID_VIEW_SORT_BY_NAME
|
MENUITEM "&Sort by Name", ID_VIEW_SORT_BY_NAME
|
||||||
MENUITEM "Sort &by Type", ID_VIEW_SORT_BY_TYPE
|
MENUITEM "Sort &by Type", ID_VIEW_SORT_BY_TYPE
|
||||||
MENUITEM "Sort by Si&ze", ID_VIEW_SORT_BY_SIZE
|
MENUITEM "Sort by Si&ze", ID_VIEW_SORT_BY_SIZE
|
||||||
MENUITEM "Sort by &Date", ID_VIEW_SORT_BY_DATE
|
MENUITEM "Sort by &Date", ID_VIEW_SORT_BY_DATE
|
||||||
MENUITEM SEPARATOR
|
MENUITEM SEPARATOR
|
||||||
MENUITEM "By File &Type...", ID_VIEW_BY_FILE_TYPE, GRAYED
|
MENUITEM "By File &Type...", ID_VIEW_BY_FILE_TYPE
|
||||||
END
|
END
|
||||||
POPUP "&Options"
|
POPUP "&Options"
|
||||||
BEGIN
|
BEGIN
|
||||||
MENUITEM "&Confirmation...", ID_OPTIONS_CONFIRMATION, GRAYED
|
MENUITEM "&Confirmation...", ID_OPTIONS_CONFIRMATION
|
||||||
MENUITEM "&Font...", ID_OPTIONS_FONT, GRAYED
|
MENUITEM "&Font...", ID_OPTIONS_FONT, GRAYED
|
||||||
MENUITEM "Customise Tool&bar...", ID_OPTIONS_CUSTOMISE_TOOLBAR, GRAYED
|
MENUITEM "Customise Tool&bar...", ID_OPTIONS_CUSTOMISE_TOOLBAR
|
||||||
|
, GRAYED
|
||||||
MENUITEM SEPARATOR
|
MENUITEM SEPARATOR
|
||||||
MENUITEM "&Toolbar", ID_OPTIONS_TOOLBAR
|
MENUITEM "&Toolbar", ID_OPTIONS_TOOLBAR
|
||||||
MENUITEM "&Drivebar", ID_OPTIONS_DRIVEBAR
|
MENUITEM "&Drivebar", ID_OPTIONS_DRIVEBAR
|
||||||
MENUITEM "&Statusbar", ID_OPTIONS_STATUSBAR
|
MENUITEM "&Statusbar", ID_OPTIONS_STATUSBAR
|
||||||
MENUITEM SEPARATOR
|
MENUITEM SEPARATOR
|
||||||
MENUITEM "&Open New Window on Connect", ID_OPTIONS_OPEN_NEW_WINDOW_ON_CONNECT
|
MENUITEM "&Open New Window on Connect", ID_OPTIONS_OPEN_NEW_WINDOW_ON_CONNECT
|
||||||
|
|
||||||
MENUITEM "&Minimise on Use", ID_OPTIONS_MINIMISE_ON_USE
|
MENUITEM "&Minimise on Use", ID_OPTIONS_MINIMISE_ON_USE
|
||||||
MENUITEM "&Save Settings on Exit", ID_OPTIONS_SAVE_ON_EXIT
|
MENUITEM "&Save Settings on Exit", ID_OPTIONS_SAVE_ON_EXIT
|
||||||
END
|
END
|
||||||
POPUP "&Security"
|
POPUP "&Security"
|
||||||
BEGIN
|
BEGIN
|
||||||
MENUITEM "&Permissions...", ID_SECURITY_PERMISSIONS, GRAYED
|
MENUITEM "&Permissions...", ID_SECURITY_PERMISSIONS
|
||||||
|
, GRAYED
|
||||||
MENUITEM "&Auditing...", ID_SECURITY_AUDITING, GRAYED
|
MENUITEM "&Auditing...", ID_SECURITY_AUDITING, GRAYED
|
||||||
MENUITEM "&Owner...", ID_SECURITY_OWNER, GRAYED
|
MENUITEM "&Owner...", ID_SECURITY_OWNER, GRAYED
|
||||||
END
|
END
|
||||||
|
@ -153,13 +160,13 @@ BEGIN
|
||||||
MENUITEM "&Tile Vertically\tShift+F4", ID_WINDOW_TILE_VERT
|
MENUITEM "&Tile Vertically\tShift+F4", ID_WINDOW_TILE_VERT
|
||||||
MENUITEM "&Arrange Icons", ID_WINDOW_ARRANGE_ICONS
|
MENUITEM "&Arrange Icons", ID_WINDOW_ARRANGE_ICONS
|
||||||
MENUITEM "&Refresh\tF5", ID_WINDOW_REFRESH
|
MENUITEM "&Refresh\tF5", ID_WINDOW_REFRESH
|
||||||
// MENUITEM SEPARATOR
|
|
||||||
END
|
END
|
||||||
POPUP "&Help"
|
POPUP "&Help"
|
||||||
BEGIN
|
BEGIN
|
||||||
MENUITEM "&Contents", ID_HELP_CONTENTS, GRAYED
|
MENUITEM "&Contents", ID_HELP_CONTENTS, GRAYED
|
||||||
MENUITEM "&Search for Help on...", ID_HELP_SEARCH_HELP, GRAYED
|
MENUITEM "&Search for Help on...", ID_HELP_SEARCH_HELP, GRAYED
|
||||||
MENUITEM "&How to Use Help", ID_HELP_HOW_TO_USE_HELP, GRAYED
|
MENUITEM "&How to Use Help", ID_HELP_HOW_TO_USE_HELP
|
||||||
|
, GRAYED
|
||||||
MENUITEM SEPARATOR
|
MENUITEM SEPARATOR
|
||||||
MENUITEM "&About File Manager", ID_HELP_ABOUT
|
MENUITEM "&About File Manager", ID_HELP_ABOUT
|
||||||
END
|
END
|
||||||
|
@ -216,7 +223,12 @@ END
|
||||||
STRINGTABLE DISCARDABLE
|
STRINGTABLE DISCARDABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
IDS_APP_TITLE "ReactOS File Manager"
|
IDS_APP_TITLE "ReactOS File Manager"
|
||||||
|
IDC_WINFILE "ROSFILE"
|
||||||
|
IDC_WINFILE_CHILD "ROSFILE_CHILD"
|
||||||
|
END
|
||||||
|
|
||||||
|
STRINGTABLE DISCARDABLE
|
||||||
|
BEGIN
|
||||||
ID_FILE_MENU "Commands for working with files"
|
ID_FILE_MENU "Commands for working with files"
|
||||||
ID_DISK_MENU "Commands for working with disk"
|
ID_DISK_MENU "Commands for working with disk"
|
||||||
ID_TREE_MENU "Commands for working in the tree window"
|
ID_TREE_MENU "Commands for working in the tree window"
|
||||||
|
@ -225,7 +237,10 @@ BEGIN
|
||||||
ID_SECURITY_MENU "Commands for manipulating file and directory security"
|
ID_SECURITY_MENU "Commands for manipulating file and directory security"
|
||||||
ID_WINDOW_MENU "Commands for manipulating windows"
|
ID_WINDOW_MENU "Commands for manipulating windows"
|
||||||
ID_HELP_MENU "Commands for displaying help and information about file manager"
|
ID_HELP_MENU "Commands for displaying help and information about file manager"
|
||||||
|
END
|
||||||
|
|
||||||
|
STRINGTABLE DISCARDABLE
|
||||||
|
BEGIN
|
||||||
ID_FILE_OPEN "Opens selected item"
|
ID_FILE_OPEN "Opens selected item"
|
||||||
ID_FILE_MOVE "Moves selected item"
|
ID_FILE_MOVE "Moves selected item"
|
||||||
ID_FILE_COPY "Copies files and directories"
|
ID_FILE_COPY "Copies files and directories"
|
||||||
|
@ -241,8 +256,11 @@ BEGIN
|
||||||
ID_FILE_CREATE_DIRECTORY "Creates a directory"
|
ID_FILE_CREATE_DIRECTORY "Creates a directory"
|
||||||
ID_FILE_SEARCH "Searches for files and directories"
|
ID_FILE_SEARCH "Searches for files and directories"
|
||||||
ID_FILE_SELECT_FILES "Selects files and directories"
|
ID_FILE_SELECT_FILES "Selects files and directories"
|
||||||
ID_FILE_EXIT "Quits the file manager"
|
END
|
||||||
|
|
||||||
|
STRINGTABLE DISCARDABLE
|
||||||
|
BEGIN
|
||||||
|
ID_FILE_EXIT "Quits the file manager"
|
||||||
ID_DISK_COPY_DISK "Copies a floppy disk"
|
ID_DISK_COPY_DISK "Copies a floppy disk"
|
||||||
ID_DISK_LABEL_DISK "Assigns or changes the volume lable of the disk"
|
ID_DISK_LABEL_DISK "Assigns or changes the volume lable of the disk"
|
||||||
ID_DISK_FORMAT_DISK "Formats a floppy disk"
|
ID_DISK_FORMAT_DISK "Formats a floppy disk"
|
||||||
|
@ -251,15 +269,18 @@ BEGIN
|
||||||
ID_DISK_SHARE_AS "Shares a directory"
|
ID_DISK_SHARE_AS "Shares a directory"
|
||||||
ID_DISK_STOP_SHARING "Stops sharing a directory"
|
ID_DISK_STOP_SHARING "Stops sharing a directory"
|
||||||
ID_DISK_SELECT_DRIVE "Selects a different drive or volume"
|
ID_DISK_SELECT_DRIVE "Selects a different drive or volume"
|
||||||
|
|
||||||
ID_TREE_EXPAND_ONE_LEVEL "Displays another level of a directory"
|
ID_TREE_EXPAND_ONE_LEVEL "Displays another level of a directory"
|
||||||
ID_TREE_EXPAND_BRANCH "Displays all levels of a directory"
|
ID_TREE_EXPAND_BRANCH "Displays all levels of a directory"
|
||||||
ID_TREE_EXPAND_ALL "Displays all levels of all directories"
|
ID_TREE_EXPAND_ALL "Displays all levels of all directories"
|
||||||
ID_TREE_INDICATE_EXPANDABLE_BRANCHES "Indicates directories that have sub-directories"
|
ID_TREE_INDICATE_EXPANDABLE_BRANCHES
|
||||||
|
"Indicates directories that have sub-directories"
|
||||||
ID_VIEW_TREE_DIRECTORY "Displays the directory tree and the contents of the current directory"
|
ID_VIEW_TREE_DIRECTORY "Displays the directory tree and the contents of the current directory"
|
||||||
ID_VIEW_TREE_ONLY "Displays the directory tree"
|
ID_VIEW_TREE_ONLY "Displays the directory tree"
|
||||||
ID_VIEW_DIRECTORY_ONLY "Displays the contents of the current directory"
|
ID_VIEW_DIRECTORY_ONLY "Displays the contents of the current directory"
|
||||||
|
END
|
||||||
|
|
||||||
|
STRINGTABLE DISCARDABLE
|
||||||
|
BEGIN
|
||||||
ID_VIEW_SPLIT "Splits a directory window or moves the split bar"
|
ID_VIEW_SPLIT "Splits a directory window or moves the split bar"
|
||||||
ID_VIEW_NAME "Show filenames only"
|
ID_VIEW_NAME "Show filenames only"
|
||||||
ID_VIEW_ALL_FILE_DETAILS "Show all file details"
|
ID_VIEW_ALL_FILE_DETAILS "Show all file details"
|
||||||
|
@ -269,36 +290,37 @@ BEGIN
|
||||||
ID_VIEW_SORT_BY_SIZE "Sorts files by size"
|
ID_VIEW_SORT_BY_SIZE "Sorts files by size"
|
||||||
ID_VIEW_SORT_BY_DATE "Sorts files by date"
|
ID_VIEW_SORT_BY_DATE "Sorts files by date"
|
||||||
ID_VIEW_BY_FILE_TYPE "Shows files of a specified type and filters filenames"
|
ID_VIEW_BY_FILE_TYPE "Shows files of a specified type and filters filenames"
|
||||||
|
|
||||||
ID_OPTIONS_CONFIRMATION "Controls confirmation messages..."
|
ID_OPTIONS_CONFIRMATION "Controls confirmation messages..."
|
||||||
ID_OPTIONS_FONT "Changes the File Manager Font..."
|
ID_OPTIONS_FONT "Changes the File Manager Font..."
|
||||||
ID_OPTIONS_CUSTOMISE_TOOLBAR "Customises the toolbar..."
|
ID_OPTIONS_CUSTOMISE_TOOLBAR "Customises the toolbar..."
|
||||||
ID_OPTIONS_TOOLBAR "Shows or hides the tool bar"
|
ID_OPTIONS_TOOLBAR "Shows or hides the tool bar"
|
||||||
ID_OPTIONS_DRIVEBAR "Shows or hides the drive bar"
|
ID_OPTIONS_DRIVEBAR "Shows or hides the drive bar"
|
||||||
ID_OPTIONS_STATUSBAR "Shows or hides the status bar"
|
ID_OPTIONS_STATUSBAR "Shows or hides the status bar"
|
||||||
ID_OPTIONS_OPEN_NEW_WINDOW_ON_CONNECT "Opens a new window when connnecting"
|
ID_OPTIONS_OPEN_NEW_WINDOW_ON_CONNECT
|
||||||
|
"Opens a new window when connnecting"
|
||||||
|
END
|
||||||
|
|
||||||
|
STRINGTABLE DISCARDABLE
|
||||||
|
BEGIN
|
||||||
ID_OPTIONS_MINIMISE_ON_USE "Reduces File Manager to an icon at startup"
|
ID_OPTIONS_MINIMISE_ON_USE "Reduces File Manager to an icon at startup"
|
||||||
ID_OPTIONS_SAVE_ON_EXIT "Saves settings when exiting File Manager"
|
ID_OPTIONS_SAVE_ON_EXIT "Saves settings when exiting File Manager"
|
||||||
|
|
||||||
ID_SECURITY_PERMISSIONS "View or set permission information on the selected items"
|
ID_SECURITY_PERMISSIONS "View or set permission information on the selected items"
|
||||||
ID_SECURITY_AUDITING "View or set auditing information on the selected items"
|
ID_SECURITY_AUDITING "View or set auditing information on the selected items"
|
||||||
ID_SECURITY_OWNER "View or take ownership of the selected items"
|
ID_SECURITY_OWNER "View or take ownership of the selected items"
|
||||||
|
|
||||||
ID_WINDOW_NEW_WINDOW "Opens a new window"
|
ID_WINDOW_NEW_WINDOW "Opens a new window"
|
||||||
ID_WINDOW_CASCADE "Cascades windows"
|
ID_WINDOW_CASCADE "Cascades windows"
|
||||||
ID_WINDOW_TILE_HORZ "Tiles windows horizontally"
|
ID_WINDOW_TILE_HORZ "Tiles windows horizontally"
|
||||||
ID_WINDOW_TILE_VERT "Tiles windows vertically"
|
ID_WINDOW_TILE_VERT "Tiles windows vertically"
|
||||||
ID_WINDOW_ARRANGE_ICONS "Arranges icons"
|
ID_WINDOW_ARRANGE_ICONS "Arranges icons"
|
||||||
ID_WINDOW_REFRESH "Updates the contents of a window"
|
ID_WINDOW_REFRESH "Updates the contents of a window"
|
||||||
|
|
||||||
ID_HELP_CONTENTS "Displays contents for File Manager Help"
|
ID_HELP_CONTENTS "Displays contents for File Manager Help"
|
||||||
ID_HELP_SEARCH_HELP "Searches for a topic in File Manager Help"
|
ID_HELP_SEARCH_HELP "Searches for a topic in File Manager Help"
|
||||||
ID_HELP_HOW_TO_USE_HELP "Displays information about using help"
|
ID_HELP_HOW_TO_USE_HELP "Displays information about using help"
|
||||||
ID_HELP_ABOUT "Displays program information, version number and copyright"
|
ID_HELP_ABOUT "Displays program information, version number and copyright"
|
||||||
|
END
|
||||||
|
|
||||||
IDC_WINFILE "ROSFILE"
|
STRINGTABLE DISCARDABLE
|
||||||
IDC_WINFILE_CHILD "ROSFILE_CHILD"
|
BEGIN
|
||||||
|
|
||||||
IDS_LIST_COLUMN_NAME "Name"
|
IDS_LIST_COLUMN_NAME "Name"
|
||||||
IDS_LIST_COLUMN_SIZE "Size"
|
IDS_LIST_COLUMN_SIZE "Size"
|
||||||
IDS_LIST_COLUMN_DATE "Date"
|
IDS_LIST_COLUMN_DATE "Date"
|
||||||
|
@ -324,13 +346,73 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_AUS
|
||||||
// Dialog
|
// Dialog
|
||||||
//
|
//
|
||||||
|
|
||||||
IDD_DIALOG1 DIALOG DISCARDABLE 0, 0, 186, 95
|
IDD_DIALOG_FILE_MOVE DIALOG DISCARDABLE 0, 0, 268, 64
|
||||||
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
CAPTION "Move"
|
||||||
|
FONT 8, "MS Sans Serif"
|
||||||
|
BEGIN
|
||||||
|
DEFPUSHBUTTON "OK",IDOK,211,7,50,14
|
||||||
|
PUSHBUTTON "Cancel",IDCANCEL,211,24,50,14
|
||||||
|
LTEXT "Current Directory:",IDC_STATIC,7,7,54,10
|
||||||
|
EDITTEXT IDC_EDIT1,36,26,168,13,ES_AUTOHSCROLL
|
||||||
|
EDITTEXT IDC_EDIT2,36,44,168,13,ES_AUTOHSCROLL
|
||||||
|
LTEXT "From:",IDC_STATIC,7,28,27,9
|
||||||
|
LTEXT "To:",IDC_STATIC,7,48,23,9
|
||||||
|
LTEXT "",IDC_STATIC,65,7,139,12
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_DIALOG_DIRECTORY DIALOG DISCARDABLE 0, 0, 187, 95
|
||||||
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
CAPTION "Dialog"
|
CAPTION "Dialog"
|
||||||
FONT 8, "MS Sans Serif"
|
FONT 8, "MS Sans Serif"
|
||||||
BEGIN
|
BEGIN
|
||||||
DEFPUSHBUTTON "OK",IDOK,129,7,50,14
|
DEFPUSHBUTTON "OK",IDOK,130,7,50,14
|
||||||
PUSHBUTTON "Cancel",IDCANCEL,129,24,50,14
|
PUSHBUTTON "Cancel",IDCANCEL,130,24,50,14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_DIALOG_VIEW_TYPE DIALOG DISCARDABLE 0, 0, 161, 97
|
||||||
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
CAPTION "By File Type"
|
||||||
|
FONT 8, "MS Sans Serif"
|
||||||
|
BEGIN
|
||||||
|
DEFPUSHBUTTON "OK",IDOK,104,7,50,14
|
||||||
|
PUSHBUTTON "Cancel",IDCANCEL,104,24,50,14
|
||||||
|
EDITTEXT IDC_EDIT1,31,7,63,12,ES_AUTOHSCROLL
|
||||||
|
GROUPBOX "File Type",IDC_STATIC,7,23,87,56
|
||||||
|
CONTROL "&Directories",IDC_VIEW_TYPE_DIRECTORIES,"Button",
|
||||||
|
BS_AUTOCHECKBOX | WS_TABSTOP,13,32,70,10
|
||||||
|
CONTROL "&Programs",IDC_VIEW_TYPE_PROGRAMS,"Button",
|
||||||
|
BS_AUTOCHECKBOX | WS_TABSTOP,13,43,70,10
|
||||||
|
CONTROL "Docu&ments",IDC_VIEW_TYPE_DOCUMENTS,"Button",
|
||||||
|
BS_AUTOCHECKBOX | WS_TABSTOP,13,54,70,10
|
||||||
|
CONTROL "&Other files",IDC_VIEW_TYPE_OTHERS,"Button",
|
||||||
|
BS_AUTOCHECKBOX | WS_TABSTOP,13,65,70,10
|
||||||
|
CONTROL "Show Hidden/&System Files",IDC_VIEW_TYPE_SYSFILES,
|
||||||
|
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,81,106,9
|
||||||
|
LTEXT "&Name:",IDC_STATIC,7,8,22,10
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_DIALOG_OPTIONS_CONFIRMATON DIALOG DISCARDABLE 0, 0, 221, 89
|
||||||
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
CAPTION "Confirmation"
|
||||||
|
FONT 8, "MS Sans Serif"
|
||||||
|
BEGIN
|
||||||
|
DEFPUSHBUTTON "OK",IDOK,164,7,50,14
|
||||||
|
PUSHBUTTON "Cancel",IDCANCEL,164,24,50,14
|
||||||
|
GROUPBOX "Confirm On",IDC_STATIC,7,7,152,75
|
||||||
|
CONTROL "File &Delete",IDC_CONFIRMATION_FILE_DELETE,"Button",
|
||||||
|
BS_AUTOCHECKBOX | WS_TABSTOP,13,18,132,8
|
||||||
|
CONTROL "D&irectory Delete",IDC_CONFIRMATION_DIR_DELETE,"Button",
|
||||||
|
BS_AUTOCHECKBOX | WS_TABSTOP,13,29,132,8
|
||||||
|
CONTROL "File &Replace",IDC_CONFIRMATION_FILE_REPLACE,"Button",
|
||||||
|
BS_AUTOCHECKBOX | WS_TABSTOP,13,40,132,8
|
||||||
|
CONTROL "&Mouse Actions",IDC_CONFIRMATION_MOUSE_ACTIONS,"Button",
|
||||||
|
BS_AUTOCHECKBOX | WS_TABSTOP,13,50,132,8
|
||||||
|
CONTROL "Dis&k Commands",IDC_CONFIRMATION_DISK_COMMANDS,"Button",
|
||||||
|
BS_AUTOCHECKBOX | WS_TABSTOP,13,60,132,8
|
||||||
|
CONTROL "Modify &System, Hidden, Read Only files",
|
||||||
|
IDC_CONFIRMATION_MODIFY_SYSTEM,"Button",BS_AUTOCHECKBOX |
|
||||||
|
WS_TABSTOP,13,71,132,8
|
||||||
END
|
END
|
||||||
|
|
||||||
|
|
||||||
|
@ -356,13 +438,37 @@ END
|
||||||
#ifdef APSTUDIO_INVOKED
|
#ifdef APSTUDIO_INVOKED
|
||||||
GUIDELINES DESIGNINFO DISCARDABLE
|
GUIDELINES DESIGNINFO DISCARDABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
IDD_DIALOG1, DIALOG
|
IDD_DIALOG_FILE_MOVE, DIALOG
|
||||||
BEGIN
|
BEGIN
|
||||||
LEFTMARGIN, 7
|
LEFTMARGIN, 7
|
||||||
RIGHTMARGIN, 179
|
RIGHTMARGIN, 261
|
||||||
|
TOPMARGIN, 7
|
||||||
|
BOTTOMMARGIN, 57
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_DIALOG_DIRECTORY, DIALOG
|
||||||
|
BEGIN
|
||||||
|
LEFTMARGIN, 7
|
||||||
|
RIGHTMARGIN, 180
|
||||||
TOPMARGIN, 7
|
TOPMARGIN, 7
|
||||||
BOTTOMMARGIN, 88
|
BOTTOMMARGIN, 88
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_DIALOG_VIEW_TYPE, DIALOG
|
||||||
|
BEGIN
|
||||||
|
LEFTMARGIN, 7
|
||||||
|
RIGHTMARGIN, 154
|
||||||
|
TOPMARGIN, 7
|
||||||
|
BOTTOMMARGIN, 90
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_DIALOG_OPTIONS_CONFIRMATON, DIALOG
|
||||||
|
BEGIN
|
||||||
|
LEFTMARGIN, 7
|
||||||
|
RIGHTMARGIN, 214
|
||||||
|
TOPMARGIN, 7
|
||||||
|
BOTTOMMARGIN, 82
|
||||||
|
END
|
||||||
END
|
END
|
||||||
#endif // APSTUDIO_INVOKED
|
#endif // APSTUDIO_INVOKED
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue