diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-05-17 13:24:19 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-05-17 13:24:19 +0000 |
commit | d269a39f27e2dcd57d0e3362ef3a7fd9ad3f3639 (patch) | |
tree | 8fa45d8c6dd61e3949ecf1727c6facb78bfe5305 /src/gatscon/filewidget.h | |
parent | 6aefa6632023c99c5b91bae0e099df94fa69d890 (diff) | |
download | libgats-d269a39f27e2dcd57d0e3362ef3a7fd9ad3f3639.tar.gz libgats-d269a39f27e2dcd57d0e3362ef3a7fd9ad3f3639.tar.bz2 libgats-d269a39f27e2dcd57d0e3362ef3a7fd9ad3f3639.tar.xz libgats-d269a39f27e2dcd57d0e3362ef3a7fd9ad3f3639.zip |
GatsCon can read files now, but it can't save them, or edit them yet. That'll
be coming eventually.
Diffstat (limited to 'src/gatscon/filewidget.h')
-rw-r--r-- | src/gatscon/filewidget.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/gatscon/filewidget.h b/src/gatscon/filewidget.h new file mode 100644 index 0000000..ac46685 --- /dev/null +++ b/src/gatscon/filewidget.h | |||
@@ -0,0 +1,22 @@ | |||
1 | #ifndef FILE_WIDGET_H | ||
2 | #define FILE_WIDGET_H | ||
3 | |||
4 | #include "ui_filewidget.h" | ||
5 | |||
6 | namespace Gats | ||
7 | { | ||
8 | class Object; | ||
9 | }; | ||
10 | |||
11 | class FileWidget : public QWidget, protected Ui::FileWidget | ||
12 | { | ||
13 | Q_OBJECT; | ||
14 | public: | ||
15 | FileWidget( QWidget *pParent=NULL ); | ||
16 | FileWidget( QWidget *pParent, QString sFile ); | ||
17 | virtual ~FileWidget(); | ||
18 | |||
19 | private: | ||
20 | }; | ||
21 | |||
22 | #endif | ||