blob: 5dc378a71b6c74eaf9037a3f69dc1056161f775a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#ifndef _SELECTFILE_H
#define _SELECTFILE_H
#include <bfc/common.h>
#include <bfc/ptrlist.h>
#include <bfc/string/StringW.h>
class svc_fileSelector;
class ifc_window;
class SelectFile
{
public:
SelectFile(ifc_window *parent, const wchar_t *menu_prefix = NULL, const wchar_t *menu_suffix = NULL);
~SelectFile();
void setDefaultDir(const wchar_t *dir); // default dir to use
const wchar_t *getDirectory(); // return base directory after ok clicked
void setIdent(const wchar_t *id); // unless you saved one under this id
void setPopPosition(int x, int y); // in screen coords
int runSelector(const wchar_t *type = NULL, int allow_multiple = FALSE, const wchar_t *extlist = NULL); // if NULL, generate popup
const wchar_t *getType();
int getNumFiles();
const wchar_t *enumFilename(int n);
private:
int xpos, ypos;
int pos_set;
ifc_window *parentWnd;
svc_fileSelector *svc;
PtrList<StringW> types;
StringW prefix_str, suffix_str;
StringW default_dir, ident;
StringW saved_type;
};
#endif
|