aboutsummaryrefslogtreecommitdiff
path: root/src/gatscon/filewidget.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-05-17 13:24:19 +0000
committerMike Buland <eichlan@xagasoft.com>2011-05-17 13:24:19 +0000
commitd269a39f27e2dcd57d0e3362ef3a7fd9ad3f3639 (patch)
tree8fa45d8c6dd61e3949ecf1727c6facb78bfe5305 /src/gatscon/filewidget.h
parent6aefa6632023c99c5b91bae0e099df94fa69d890 (diff)
downloadlibgats-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.h22
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
6namespace Gats
7{
8 class Object;
9};
10
11class FileWidget : public QWidget, protected Ui::FileWidget
12{
13 Q_OBJECT;
14public:
15 FileWidget( QWidget *pParent=NULL );
16 FileWidget( QWidget *pParent, QString sFile );
17 virtual ~FileWidget();
18
19private:
20};
21
22#endif