Add lime.ui.FileDialog

This commit is contained in:
Joshua Granick
2015-08-22 14:32:35 -07:00
parent bf8f88639d
commit 0e656f2a6a
8 changed files with 301 additions and 0 deletions

View 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