Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef COMMON_DIALOG_MANAGER_H
00024 #define COMMON_DIALOG_MANAGER_H
00025
00026 #include "common/scummsys.h"
00027 #include "common/fs.h"
00028
00029 #if defined(USE_SYSDIALOGS)
00030
00031 namespace Common {
00032
00036 class DialogManager {
00037 public:
00041 enum DialogResult {
00042 kDialogError = -1,
00043 kDialogCancel = 0,
00044 kDialogOk = 1
00045 };
00046
00047 DialogManager() {}
00048 virtual ~DialogManager() {}
00049
00058 virtual DialogResult showFileBrowser(const char *title, FSNode &choice, bool isDirBrowser = false) { return kDialogError; }
00059 };
00060
00061 }
00062
00063 #endif
00064
00065 #endif // COMMON_DIALOG_MANAGER_H