source: other-projects/trunk/gsinstaller/dirSelector.h@ 15927

Last change on this file since 15927 was 11664, checked in by mdewsnip, 18 years ago

Fixed the line endings... for real this time, I hope.

  • Property svn:keywords set to Author Date Id Revision
File size: 570 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.