Add lime.ui.FileDialog
This commit is contained in:
25
project/include/ui/FileDialog.h
Normal file
25
project/include/ui/FileDialog.h
Normal file
@@ -0,0 +1,25 @@
|
||||
#ifndef LIME_UI_FILE_DIALOG_H
|
||||
#define LIME_UI_FILE_DIALOG_H
|
||||
|
||||
|
||||
#include <utils/QuickVec.h>
|
||||
|
||||
|
||||
namespace lime {
|
||||
|
||||
|
||||
class FileDialog {
|
||||
|
||||
public:
|
||||
|
||||
static const char* OpenFile (const char* filter = NULL, const char* defaultPath = NULL);
|
||||
static void OpenFiles (QuickVec<const char*>* files, const char* filter = NULL, const char* defaultPath = NULL);
|
||||
static const char* SaveFile (const char* filter = NULL, const char* defaultPath = NULL);
|
||||
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user