Changeset 245 for trunk/desktop/idl/wpfilesystem.idl
- Timestamp:
- Mar 10, 2007, 4:21:32 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/desktop/idl/wpfilesystem.idl
r243 r245 32 32 * 33 33 * ***** END LICENSE BLOCK ***** */ 34 /** \file 35 36 */ 34 37 35 38 #ifndef wpfsys_idl … … 45 48 NOMMETACLASS(M_WPFileSystem); 46 49 50 /** \interface WPFileSystem 51 52 Any object which represents a filesystem object is a subclass of this class, e.g. 53 WPDataFile or WPFolder. 54 */ 47 55 interface WPFileSystem : WPObject 48 56 { 49 57 NOMCLASSVERSION(1, 0); 50 58 51 void tstSetFullPath(in string fullPath); 59 void tstSetFullPath(in string fullPath); 60 /** 61 Query the filename of this object. 62 63 \remarks This name may be different from the displayed title because of filename 64 encoding on disk. 65 66 \param bFullPath If set to TRUE the fully qualified path is returned. 67 */ 52 68 PNOMPath wpQueryFileName(in boolean bFullPath); 53 69 70 /** 71 wpMoveObject() must be overriden to physically move a file or folder when requested. 72 The method implementation of WPObject only handles the graphical representation on the 73 desktop by inserting icons into folder windows. 74 */ 54 75 NOMOVERRIDE(wpMoveObject); 55 76 NOMOVERRIDE(wpCopyObject);
Note:
See TracChangeset
for help on using the changeset viewer.