1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
|
unit VirtualResources;
interface
// Version 1.2.0
// The contents of this file are subject to the Mozilla Public License
// Version 1.1 (the "License"); you may not use this file except
// in compliance with the License. You may obtain a copy of the
// License at
//
// http://www.mozilla.org/MPL/
//
// Software distributed under the License is distributed on an
// " AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either expressed or
// implied. See the License for the specific language governing rights
// and limitations under the License.
//
//
// Alternatively, the contents of this file may be used under
// the terms of the GNU General Public License Version 2 or later
// (the "GPL"), in which case the provisions of the GPL are applicable
// instead of those above. If you wish to allow use of your version of
// this file only under the terms of the GPL and not to allow others to
// use your version of this file under the MPL, indicate your decision
// by deleting the provisions above and replace them with the notice and
// other provisions required by the GPL. If you do not delete the provisions
// above, a recipient may use your version of this file under either the
// MPL or the GPL.
//
// The initial developer of this code is Jim Kueneman <jimdk@mindspring.com>
//
//----------------------------------------------------------------------------
uses
Messages;
{$include ..\Include\Compilers.inc}
{$IFNDEF T2H}
const
WM_SHELLNOTIFY = WM_APP + 51; // Change in the Shell occured
WM_VTSETICONINDEX = WM_SHELLNOTIFY + 1; // Threaded Icons
WM_INVALIDFILENAME = WM_SHELLNOTIFY + 2; // VET
WM_SHELLNOTIFYTHREADQUIT = WM_SHELLNOTIFY + 3; // ShellNotifier
WM_CHANGENOTIFY_NT = WM_SHELLNOTIFY + 4; // ShellNotifier
WM_CHANGENOTIFY = WM_SHELLNOTIFY + 5; // ShellNotifier
WM_SHELLNOTIFYTHREADEVENT = WM_SHELLNOTIFY + 6; // ShellNotifier
WM_SHELLNOTIFYRELEASE = WM_SHELLNOTIFY + 7; // ShellNotifier
WM_REMOVEBUTTON = WM_APP + 8; // VirtualShellToolbar
WM_CHANGENOTIFY_CUSTOM = WM_APP + 9;
WM_UPDATESCROLLBAR = WM_APP + 10; // Signal TDropDownWnd to update scrollbar
const
S_WARNING = 'Warning';
S_OPEN = 'Open';
// Names shown in column headers if toShellColumnDetails is not used. In that
// case the shell handles the names based on local.
VET_COLUMN_NAMES: array[0..9] of WideString = (
'Name',
'Size',
'Type',
'Modified',
'Attributes',
'Created',
'Accessed',
'Path',
'DOS Name',
'Custom'
);
// Error given when the root of VET is set to a path that does not exist. The
// end user should never see this message.
STR_ERR_INVALID_CUSTOMPATH = 'Invalid pathname for Custom Root Path';
// Menu item text shown when the column popup menu has more than a specified
// number of items or the column has told VET it should not be shown in the
// menu but only show it in the dialog box.
STR_COLUMNMENU_MORE = 'More ...';
// --------------------------------------------------------------------------
// TExplorerComboBox messages
// --------------------------------------------------------------------------
S_PATH_ERROR: WideString = 'Invalid Path';
S_COMBOEDIT_DEFAULT_ERROR1: WideString = 'Windows can not find "';
S_COMBOEDIT_DEFAULT_ERROR2: WideString = '" Please check the spelling and try again.';
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// VirtualShellNewMenu strings
// --------------------------------------------------------------------------
// The string used as a prefix to the new file being created based on the file type
// of the extension. For example a Notepad TXT file will create a new file named
// New Text Document.txt, where the "New " string is this constant.
S_NEW = 'New ';
// These are the strings that will be appended to New when the additional menu
// item "New Folder" and "New ShortCut" are requested in the menu.
S_FOLDER = 'Folder';
S_SHORTCUT = 'Shortcut';
// This is the string that is shown in the Messagebox if the new file will
// overwrite an existing file.
S_OVERWRITE_EXISTING_FILE = 'File exists. Overwrite existing file?';
// SHOULD NOT HAVE TO EDIT THESE STRINGS
// applet launcher file, should never have to change this
S_RUNDLL32 = '\rundll32.exe';
// The dll launched by RunDll32.exe for the Briefcase with the necessary mods
// Do not Modify!
// The %1 seems to be Boolean for create on desktop on not (not being true)
S_BRIEFCASE_HACK_STRING = 'syncui.dll,Briefcase_Create 1!d! ';
// Test string to match up with Command string to see if the menu item will
// create a new Briefcase or Link. Do not Modify!
S_BRIEFCASE_IDENTIFIER = ',Briefcase_Create';
S_CREATELINK_IDENTIFIER = ',NewLinkHere';
S_NULLFILE = 'NullFile';
S_FILENAME = 'FileName';
S_COMMAND = 'Command';
S_DATA = 'Data';
S_SHELLNEW_PATH = '\ShellNew';
// --------------------------------------------------------------------------
// Literal translations of TShellNotifyEvent type. Useful when using the
// OnShellNotify event to print out what event occured. VirtualShellUtilities.pas
// has a helper function ShellNotifyEventToStr that uses these.
VET_NOTIFY_EVENTS: array[0..19] of WideString = (
'Assocciation Changed',
'Attributes',
'Item Create',
'Item Delete',
'Drive Add',
'Drive Add GUI',
'Drive Removed',
'Free Space',
'Media Inserted',
'Media Removed',
'Make Directory',
'Network Share',
'Network Unshare',
'Folder Rename',
'Item Rename',
'Remove Directory',
'Server Disconnect',
'Update Directory',
'Update Image',
'Update Item'
);
const
// General Error message
S_ERROR = 'Error';
// Strings that format the Details view in KB. Only applies if toShellColumnDetails
// is not used.
STR_FILE_SIZE_IN_KB = '%.0n KB';
STR_ZERO_KB = '0 KB';
STR_ONE_KB = '1 KB';
// Strings that are used to show the attributes of a file in Details view. Only
// applies if toShellColumnDetails is not used.
STR_ARCHIVE = 'A';
STR_HIDDEN = 'H';
STR_READONLY = 'R';
STR_SYSTEM = 'S';
STR_COMPRESS = 'C';
// What is displayed in the FileType column if VET could not get the information
// the normal way and it had determined that the item is a system folder.
STR_SYSTEMFOLDER = 'System Folder';
STR_FILE = ' File'; // NT is lax in the FileType column if the file is not registered
// it returns nothing. This is tacked on the end of the file extension
// for example 'PAS Files', BAK Files, ZIP Files and so on.
// The verb sent to the context menu notification events if the selected context
// menu item is a non standard verb.
STR_UNKNOWNCOMMAN = 'Unknown Command';
// Shown when an operation in the TNamspace is being done on item that are not the
// direct children of the TNamespace. This is only a debugging aid, if the tree
// is set up right this should never occur, i.e. restricted multiselect to one level
STR_ERR_BAD_PIDL_RELATIONSHIP = 'PIDLs to operate on are not siblings of the Namespace doing the operation.';
// The name given a new folder when CreateNewFolder is called.
STR_NEWFOLDER = 'New Folder';
STR_DRIVELETTER_A = 'a';
// --------------------------------------------------------------------------
// VirtualShellLink strings
// --------------------------------------------------------------------------
// Message shown if an attempt to create a new link is made with no target defined
S_NOTARGETDEFINED = 'No target application defined';
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// Common strings
// --------------------------------------------------------------------------
S_PRINT = 'print';
S_PROPERTIES = 'properties';
// --------------------------------------------------------------------------
// ASSERT Strings
S_KERNELNOTIFERREGISTERED = 'A KernelChangeNotifier is still registered with a Control';
S_SHELLNOTIFERREGISTERED = 'A ShellChangeThread is still registered with a Control';
S_SHELLNOTIFERDISPATCHTHREAD = 'ChangeDispatchThread is still registered';
S_KERNELSPECIALFOLDERWATCH = 'A control must be registered with ' +
'the VirtualChangeNotifier using RegisterShellChangeNotify before this ' +
'method may be used.';
{$ENDIF T2H}
implementation
end.
|