/************************************************************************ Copy Handler 1.x - program for copying data in Microsoft Windows systems. Copyright (C) 2001-2004 Ixen Gerthannes (copyhandler@o2.pl) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *************************************************************************/ #ifndef __PROPERTYTYPES_H__ #define __PROPERTYTYPES_H__ #pragma once // properties definitions #define PP_PCLIPBOARDMONITORING 0 #define PP_PMONITORSCANINTERVAL 1 #define PP_PRELOADAFTERRESTART 2 #define PP_PSHUTDOWNAFTREFINISHED 3 #define PP_PTIMEBEFORESHUTDOWN 4 #define PP_PFORCESHUTDOWN 5 #define PP_PAUTOSAVEINTERVAL 6 #define PP_PPROCESSPRIORITYCLASS 7 #define PP_PAUTOSAVEDIRECTORY 8 #define PP_PPLUGINSDIR 9 #define PP_PHELPDIR 10 #define PP_PLANGUAGE 11 #define PP_PLANGDIR 12 #define PP_STATUSREFRESHINTERVAL 13 #define PP_STATUSSHOWDETAILS 14 #define PP_STATUSAUTOREMOVEFINISHED 15 #define PP_FDWIDTH 16 #define PP_FDHEIGHT 17 #define PP_FDSHORTCUTLISTSTYLE 18 #define PP_FDEXTENDEDVIEW 19 #define PP_FDIGNORESHELLDIALOGS 20 #define PP_MVSHOWFILENAMES 21 #define PP_MVSHOWSINGLETASKS 22 #define PP_MVREFRESHINTERVAL 23 #define PP_MVAUTOSHOWWHENRUN 24 #define PP_MVAUTOHIDEWHENEMPTY 25 #define PP_MVUSESMOOTHPROGRESS 26 #define PP_CMUSEAUTOCOMPLETEFILES 27 #define PP_CMSETDESTATTRIBUTES 28 #define PP_CMSETDESTDATE 29 #define PP_CMPROTECTROFILES 30 #define PP_CMLIMITMAXOPERATIONS 31 #define PP_CMREADSIZEBEFOREBLOCKING 32 #define PP_CMSHOWVISUALFEEDBACK 33 #define PP_CMUSETIMEDFEEDBACK 34 #define PP_CMFEEDBACKTIME 35 #define PP_CMAUTORETRYONERROR 36 #define PP_CMAUTORETRYINTERVAL 37 #define PP_CMDEFAULTPRIORITY 38 #define PP_CMDISABLEPRIORITYBOOST 39 #define PP_CMDELETEAFTERFINISHED 40 #define PP_CMCREATELOG 41 #define PP_SHSHOWCOPY 42 #define PP_SHSHOWMOVE 43 #define PP_SHSHOWCOPYMOVE 44 #define PP_SHSHOWPASTE 45 #define PP_SHSHOWPASTESPECIAL 46 #define PP_SHSHOWCOPYTO 47 #define PP_SHSHOWMOVETO 48 #define PP_SHSHOWCOPYMOVETO 49 #define PP_SHSHOWFREESPACE 50 #define PP_SHSHOWSHELLICONS 51 #define PP_SHUSEDRAGDROP 52 #define PP_SHDEFAULTACTION 53 #define PP_BFUSEONLYDEFAULT 54 #define PP_BFDEFAULT 55 #define PP_BFONEDISK 56 #define PP_BFTWODISKS 57 #define PP_BFCD 58 #define PP_BFLAN 59 #define PP_BFUSENOBUFFERING 60 #define PP_BFBOUNDARYLIMIT 61 #define PP_LOGPATH 62 #define PP_LOGENABLELOGGING 63 #define PP_LOGLIMITATION 64 #define PP_LOGMAXLIMIT 65 #define PP_LOGPRECISELIMITING 66 #define PP_LOGTRUNCBUFFERSIZE 67 #define PP_SNDPLAYSOUNDS 68 #define PP_SNDERRORSOUNDPATH 69 #define PP_SNDFINISHEDSOUNDPATH 70 #define PP_SHORTCUTS 71 #define PP_RECENTPATHS 72 // register function bool RegisterProperties(CConfigManager* pManager); #endif