diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
commit | 8362bf63dea22bbf6736609b0f49c152f975eb63 (patch) | |
tree | 0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kexi/plugins/scripting/kexiapp/kexiappmainwindow.h | |
download | koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip |
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kexi/plugins/scripting/kexiapp/kexiappmainwindow.h')
-rw-r--r-- | kexi/plugins/scripting/kexiapp/kexiappmainwindow.h | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/kexi/plugins/scripting/kexiapp/kexiappmainwindow.h b/kexi/plugins/scripting/kexiapp/kexiappmainwindow.h new file mode 100644 index 00000000..fd02c193 --- /dev/null +++ b/kexi/plugins/scripting/kexiapp/kexiappmainwindow.h @@ -0,0 +1,91 @@ +/*************************************************************************** + * kexiappmainwindow.h + * This file is part of the KDE project + * copyright (C)2004-2005 by Sebastian Sauer (mail@dipe.org) + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * You should have received a copy of the GNU Library General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + ***************************************************************************/ + +#ifndef KROSS_KEXIAPP_KEXIAPPMAINWINDOW_H +#define KROSS_KEXIAPP_KEXIAPPMAINWINDOW_H + +#include <qstring.h> +#include <qvariant.h> + +#include <api/object.h> +#include <api/variant.h> +#include <api/list.h> +#include <api/class.h> + +// Forward declarations. +class KexiMainWindow; + +namespace Kross { namespace KexiApp { + + // Forward declarations. + class KexiAppPartItem; + class KexiAppMainWindowPrivate; + + /** + * Class to handle Kexi's mainwindow instance. + */ + class KexiAppMainWindow : public Kross::Api::Class<KexiAppMainWindow> + { + public: + + /** + * Constructor. + * + * \param mainwindow The \a KexiMainWindow instance + * this class provides access to. + */ + KexiAppMainWindow(KexiMainWindow* mainwindow); + + /** + * Destructor. + */ + virtual ~KexiAppMainWindow(); + + /// \see Kross::Api::Object::getClassName + virtual const QString getClassName() const; + + /** \return true if Kexi is connected with a project else + false is returned. */ + bool isConnected(); + + /** \return the \a Kross::KexiDB::KexiDBConnection object that + belongs to the opened project or throw an exception if there + was no project opened (no connection established). Cause the + KexiApp-module doesn't know anything about the KexiDB-module + we have to use the base-class \a Kross::Api::Object to pass + the \a Kross::KexiDB::KexiDBConnection object around. */ + Kross::Api::Object::Ptr getConnection(); + + /** \return a list of \a KexiAppPartItem objects for the defined + \p mimetype string. */ + Kross::Api::List* getPartItems(const QString& mimetype); + + /** Try to open the defined \a KexiAppPartItem and \return true + on success else false. */ + bool openPartItem(KexiAppPartItem* partitem); + + private: + /// Private d-pointer class. + KexiAppMainWindowPrivate* d; + }; + +}} + +#endif + |