Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Aleksandr Isakov
wine-fonts
Commits
623694a6
Commit
623694a6
authored
May 08, 2017
by
Michael Müller
Committed by
Vitaly Lipatov
Jul 30, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Add security property tab.
parent
723a2b5c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
55 additions
and
1 deletion
+55
-1
Makefile.in
dlls/shell32/Makefile.in
+1
-1
shell32.rc
dlls/shell32/shell32.rc
+27
-0
shlview_cmenu.c
dlls/shell32/shlview_cmenu.c
+0
-0
shresdef.h
dlls/shell32/shresdef.h
+27
-0
No files found.
dlls/shell32/Makefile.in
View file @
623694a6
MODULE
=
shell32.dll
IMPORTLIB
=
shell32
IMPORTS
=
uuid shlwapi user32 gdi32 advapi32
IMPORTS
=
uuid shlwapi user32 gdi32 advapi32
aclui
DELAYIMPORTS
=
ole32 oleaut32 shdocvw version comctl32 gdiplus
C_SRCS
=
\
...
...
dlls/shell32/shell32.rc
View file @
623694a6
...
...
@@ -202,6 +202,33 @@ the folder?"
IDS_RUNDLG_BROWSE_FILTER_EXE "Executable files (*.exe)"
IDS_RUNDLG_BROWSE_FILTER_ALL "All files (*.*)"
/* Security dialog - General */
IDS_SECURITY_ALL_ACCESS "Full Control"
IDS_SECURITY_MODIFY "Modify"
IDS_SECURITY_READ_EXEC "Read & Execute"
IDS_SECURITY_READ "Read"
IDS_SECURITY_WRITE "Write"
IDS_SECURITY_DIR_LIST "List Folder Contents"
/* Security dialog - Advanced */
IDS_SECURITY_TRAVERSE "Traverse Folder"
IDS_SECURITY_EXECUTE "Execute File"
IDS_SECURITY_LIST_FOLDER "List Folder"
IDS_SECURITY_READ_DATA "Read Data"
IDS_SECURITY_READ_ATTR "Read Attributes"
IDS_SECURITY_READ_EX_ATTR "Read Extended Attributes"
IDS_SECURITY_CREATE_FILES "Create Files"
IDS_SECURITY_WRITE_DATA "Write Data"
IDS_SEUCRITY_CREATE_FOLDER "Create Folders"
IDS_SECURITY_APPEND_DATA "Append Data"
IDS_SECURITY_WRITE_ATTR "Write Attributes"
IDS_SECURITY_WRITE_EX_ATTR "Write Extended Attributes"
IDS_SECURITY_DELETE_CHILD "Delete Subfolders and Files"
IDS_SECURITY_DELETE "Delete"
IDS_SECURITY_READ_PERM "Read Permissions"
IDS_SECURITY_CHANGE_PERM "Change Permissions"
IDS_SECURITY_CHANGE_OWNER "Take Ownership"
/* shell folder path default values */
/* FIXME: Some will be unused until desktop.ini support is implemented */
IDS_PROGRAMS "Programs"
...
...
dlls/shell32/shlview_cmenu.c
View file @
623694a6
This diff is collapsed.
Click to expand it.
dlls/shell32/shresdef.h
View file @
623694a6
...
...
@@ -155,6 +155,33 @@
#define IDS_FILEOP_FROM 337
#define IDS_FILEOP_PREFLIGHT 338
/* Strings for security dialog - General */
#define IDS_SECURITY_ALL_ACCESS 340
#define IDS_SECURITY_MODIFY 341
#define IDS_SECURITY_READ_EXEC 342
#define IDS_SECURITY_READ 343
#define IDS_SECURITY_WRITE 344
#define IDS_SECURITY_DIR_LIST 345
/* Strings for security dialog - Advanced */
#define IDS_SECURITY_TRAVERSE 346
#define IDS_SECURITY_EXECUTE 347
#define IDS_SECURITY_LIST_FOLDER 348
#define IDS_SECURITY_READ_DATA 349
#define IDS_SECURITY_READ_ATTR 350
#define IDS_SECURITY_READ_EX_ATTR 351
#define IDS_SECURITY_CREATE_FILES 352
#define IDS_SECURITY_WRITE_DATA 353
#define IDS_SEUCRITY_CREATE_FOLDER 354
#define IDS_SECURITY_APPEND_DATA 355
#define IDS_SECURITY_WRITE_ATTR 356
#define IDS_SECURITY_WRITE_EX_ATTR 357
#define IDS_SECURITY_DELETE_CHILD 358
#define IDS_SECURITY_DELETE 359
#define IDS_SECURITY_READ_PERM 360
#define IDS_SECURITY_CHANGE_PERM 361
#define IDS_SECURITY_CHANGE_OWNER 362
/* Note: this string is referenced from the registry*/
#define IDS_RECYCLEBIN_FOLDER_NAME 8964
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment