source: trunk/gsinstaller/dirSelector.h@ 2013

Last change on this file since 2013 was 1397, checked in by cs025, 24 years ago

Initial revision

  • 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.