aboutsummaryrefslogtreecommitdiff
path: root/c++-libbu++/src/gatscon/filewidget.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2012-11-09 17:20:11 +0000
committerMike Buland <eichlan@xagasoft.com>2012-11-09 17:20:11 +0000
commitd534a56d95bca7bdd812be024d9eacba4734e2b7 (patch)
treef9b98ee2b80e645a7b54e7934882be6c9f73c165 /c++-libbu++/src/gatscon/filewidget.h
parent61ccc86fdf06f12cb72a8b7e65286f812cf62154 (diff)
downloadlibgats-d534a56d95bca7bdd812be024d9eacba4734e2b7.tar.gz
libgats-d534a56d95bca7bdd812be024d9eacba4734e2b7.tar.bz2
libgats-d534a56d95bca7bdd812be024d9eacba4734e2b7.tar.xz
libgats-d534a56d95bca7bdd812be024d9eacba4734e2b7.zip
Many changes: tabconv'd the C++ code, added a license, BSD, and docs.
Diffstat (limited to '')
-rw-r--r--c++-libbu++/src/gatscon/filewidget.h23
1 files changed, 15 insertions, 8 deletions
diff --git a/c++-libbu++/src/gatscon/filewidget.h b/c++-libbu++/src/gatscon/filewidget.h
index 9993bfe..1426eae 100644
--- a/c++-libbu++/src/gatscon/filewidget.h
+++ b/c++-libbu++/src/gatscon/filewidget.h
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007-2012 Xagasoft, All rights reserved.
3 *
4 * This file is part of the libgats library and is released under the
5 * terms of the license contained in the file LICENSE.
6 */
7
1#ifndef FILE_WIDGET_H 8#ifndef FILE_WIDGET_H
2#define FILE_WIDGET_H 9#define FILE_WIDGET_H
3 10
@@ -6,22 +13,22 @@
6 13
7namespace Gats 14namespace Gats
8{ 15{
9 class Object; 16 class Object;
10}; 17};
11 18
12class FileWidget : public QWidget, protected Ui::FileWidget, public IoBase 19class FileWidget : public QWidget, protected Ui::FileWidget, public IoBase
13{ 20{
14 Q_OBJECT; 21 Q_OBJECT;
15public: 22public:
16 FileWidget( QWidget *pParent=NULL ); 23 FileWidget( QWidget *pParent=NULL );
17 FileWidget( QWidget *pParent, QString sFile ); 24 FileWidget( QWidget *pParent, QString sFile );
18 virtual ~FileWidget(); 25 virtual ~FileWidget();
19 26
20 virtual void saveTo( const QString &sFile ); 27 virtual void saveTo( const QString &sFile );
21 28
22public slots: 29public slots:
23 void addRootItem(); 30 void addRootItem();
24 void delRootItem(); 31 void delRootItem();
25 32
26private: 33private:
27}; 34};