Last change
on this file since 222 was 222, checked in by ansari, 26 years ago |
Creation module DPC/PI Reza 09/04/99
|
File size:
628 bytes
|
Line | |
---|
1 | #ifndef PIFILCHOGEN_H_SEEN
|
---|
2 | #define PIFILCHOGEN_H_SEEN
|
---|
3 |
|
---|
4 | #include "pisysdep.h"
|
---|
5 | #include PIWDG_H
|
---|
6 |
|
---|
7 | class PIFileChooserGen : public PIWdg {
|
---|
8 | public:
|
---|
9 | enum {ClassId = 2100};
|
---|
10 |
|
---|
11 | PIFileChooserGen(PIMsgHandler* par, char* nom, PIMessage msg);
|
---|
12 | virtual ~PIFileChooserGen();
|
---|
13 |
|
---|
14 | virtual void Show();
|
---|
15 |
|
---|
16 | virtual void AcceptNewFile(bool acc);
|
---|
17 | virtual void SetPath(string const&) = 0;
|
---|
18 | virtual void SetFileName(string const&) = 0;
|
---|
19 |
|
---|
20 | virtual string GetPath() = 0;
|
---|
21 | virtual string GetFileName() = 0;
|
---|
22 |
|
---|
23 | virtual long kind() {return ClassId; }
|
---|
24 |
|
---|
25 | protected:
|
---|
26 |
|
---|
27 | };
|
---|
28 |
|
---|
29 |
|
---|
30 | #endif
|
---|
31 |
|
---|
32 |
|
---|
33 |
|
---|
34 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.