libede: FileSystemBox: added filesOnly option
[ede] / tests / libede / fileSystemBoxTestApp / FileSystemBoxTestApp.ec
index 2f6d75a..3ef0a97 100644 (file)
@@ -14,6 +14,7 @@ class FileSystemBoxTestWindow : Window
    TabControl tabControl { this, background = activeBorder, anchor = { left = 4, top = 4, right = 4, bottom = 4 } };
 
    FileListTab fileListTab { tabControl };
+   JustFilesTab justFilesTab { tabControl };
    FolderListTab folderListTab { tabControl };
    FileTreeTab fileTreeTab { tabControl };
    FolderTreeTab folderTreeTab { tabControl };
@@ -42,6 +43,18 @@ class FileListTab : TestTab
    };
 }
 
+class JustFilesTab : TestTab
+{
+   text = "JustFiles";
+
+   FileSystemBox box
+   {
+      this;
+      filesOnly = true;
+      anchor = { left = 4, top = 4, right = 4, bottom = 4 };
+   };
+}
+
 class FolderListTab : TestTab
 {
    text = "FolderList";