X-Git-Url: http://ecere.com/cgi-bin/gitweb.cgi?p=ede;a=blobdiff_plain;f=tests%2Flibede%2FfileSystemBoxTestApp%2FFileSystemBoxTestApp.ec;h=3ef0a9708ef31ed9cb3f959f5e85c52143d16fce;hp=2f6d75aa5bfc9b30429705cb71f84f3e6d85b1d0;hb=8cfd06c4acf7adbed6c07e4ce6e2b2438937d451;hpb=dc0ee90d20d82b8be76f88dd803d041d34432957 diff --git a/tests/libede/fileSystemBoxTestApp/FileSystemBoxTestApp.ec b/tests/libede/fileSystemBoxTestApp/FileSystemBoxTestApp.ec index 2f6d75a..3ef0a97 100644 --- a/tests/libede/fileSystemBoxTestApp/FileSystemBoxTestApp.ec +++ b/tests/libede/fileSystemBoxTestApp/FileSystemBoxTestApp.ec @@ -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";