diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-05-17 14:56:28 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-05-17 14:56:28 +0000 |
commit | 6d8bc516acf7a5995736423e838c987d08e69c09 (patch) | |
tree | 9db78ee528b26e0d5718b2ac4c987388e1b9c313 /src/gatscon/proxywidget.h | |
parent | d269a39f27e2dcd57d0e3362ef3a7fd9ad3f3639 (diff) | |
download | libgats-6d8bc516acf7a5995736423e838c987d08e69c09.tar.gz libgats-6d8bc516acf7a5995736423e838c987d08e69c09.tar.bz2 libgats-6d8bc516acf7a5995736423e838c987d08e69c09.tar.xz libgats-6d8bc516acf7a5995736423e838c987d08e69c09.zip |
Ok, you can now open files, save files, save files from proxies and clients,
and add new root items to files. Later I'll add some actual editing
capabilities, should be really easy.
Diffstat (limited to 'src/gatscon/proxywidget.h')
-rw-r--r-- | src/gatscon/proxywidget.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gatscon/proxywidget.h b/src/gatscon/proxywidget.h index 0ef1fd4..d6ebf4d 100644 --- a/src/gatscon/proxywidget.h +++ b/src/gatscon/proxywidget.h | |||
@@ -2,13 +2,14 @@ | |||
2 | #define PROXY_WIDGET_H | 2 | #define PROXY_WIDGET_H |
3 | 3 | ||
4 | #include "ui_proxywidget.h" | 4 | #include "ui_proxywidget.h" |
5 | #include "iobase.h" | ||
5 | 6 | ||
6 | namespace Gats | 7 | namespace Gats |
7 | { | 8 | { |
8 | class Object; | 9 | class Object; |
9 | }; | 10 | }; |
10 | 11 | ||
11 | class ProxyWidget : public QWidget, protected Ui::ProxyWidget | 12 | class ProxyWidget : public QWidget, protected Ui::ProxyWidget, public IoBase |
12 | { | 13 | { |
13 | Q_OBJECT; | 14 | Q_OBJECT; |
14 | public: | 15 | public: |
@@ -16,6 +17,8 @@ public: | |||
16 | int iPortOut ); | 17 | int iPortOut ); |
17 | virtual ~ProxyWidget(); | 18 | virtual ~ProxyWidget(); |
18 | 19 | ||
20 | virtual void saveTo( const QString &sFile ); | ||
21 | |||
19 | public slots: | 22 | public slots: |
20 | void sendToClient(); | 23 | void sendToClient(); |
21 | void sendToServer(); | 24 | void sendToServer(); |