source: tags/bs/gsinstaller/dirSelector.h@ 13624

Last change on this file since 13624 was 1527, checked in by (none), 24 years ago

This commit was manufactured by cvs2svn to create tag 'bs'.

  • Property svn:keywords set to Author Date Id Revision
File size: 591 bytes
Line 
1#ifndef _DIRSELECTOR_H_
2#include <windows.h>
3
4#include "configurable.h"
5#include "FilePath.h"
6
7class dirSelector : public configurable
8{ private:
9 char *title;
10 char *path;
11 HGLOBAL dlgBlock;
12 protected:
13 public:
14 dirSelector(char *prompt, char *title);
15 dirSelector(char *prompt, char *optPrompt, char *title, FilePath *defaultPath);
16 dirSelector(HGLOBAL dlgBlock);
17 void requestPath(HWND parent, LPSTR message);
18 void setPath(char *path);
19 void setPathFromEdit(HWND editWindow);
20 char *selectedPath();
21};
22#define _DIRSELECTOR_H_
23#endif
Note: See TracBrowser for help on using the repository browser.