Patch #2062 2007-06-17 15:25

dmoore

Additional FileTreeData enums
Download
2062-Additional_Fil.patch (862 bytes)
Category
Application::FeatureAdd
Status
Open
Close date
 
Assigned to
dmoore
Index: src/include/cbproject.h
===================================================================
--- src/include/cbproject.h    (revision 4103)
+++ src/include/cbproject.h    (working copy)
@@ -36,7 +36,8 @@
             ftdkFolder,
             ftdkFile,
             ftdkVirtualGroup, // wilcard matching
-            ftdkVirtualFolder
+            ftdkVirtualFolder,
+            ftdkMultiSelect   // several tree items selected
         };
 
         FileTreeData(cbProject* project, FileTreeDataKind kind = ftdkUndefined)
Index: src/include/globals.h
===================================================================
--- src/include/globals.h    (revision 4103)
+++ src/include/globals.h    (working copy)
@@ -32,6 +32,7 @@
     mtEditorManager,
     mtMessageManager,
     mtOpenFilesList,                //pecan 2006/03/22
+    mtFileManager,
     mtUnknown
 };
dmoore 2007-06-17 15:27

Largely cosmetic changes

currently using mtUknown to allow plugins to add context menu items to the File Explorer in the interpreted languages plugin - want to use mtFileManager instead. For multiple selections I'm using ftdkVirtualGroup and instead want to specify ftdkMultiSelect instead.

dmoore 2007-06-17 16:05

Largely cosmetic changes

currently using mtUknown to allow plugins to add context menu items to the File Explorer in the interpreted languages plugin - want to use mtFileManager instead. For multiple selections I'm using ftdkVirtualGroup and instead want to specify ftdkMultiSelect instead.