summaryrefslogtreecommitdiffstats
path: root/kmdi/kmdi/guiclient.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmdi/kmdi/guiclient.h')
-rw-r--r--kmdi/kmdi/guiclient.h103
1 files changed, 0 insertions, 103 deletions
diff --git a/kmdi/kmdi/guiclient.h b/kmdi/kmdi/guiclient.h
deleted file mode 100644
index c3784fe6e..000000000
--- a/kmdi/kmdi/guiclient.h
+++ /dev/null
@@ -1,103 +0,0 @@
-/* This file is part of the KDE libraries
- Copyright (C) 2003 Joseph Wenninger <jowenn@kde.org>
- Copyright (C) 2004 Christoph Cullmann <cullmann@kde.org>
- based on ktoolbarhandler.cpp: Copyright (C) 2002 Simon Hausmann <hausmann@kde.org>
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License version 2 as published by the Free Software Foundation.
-
- This library 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 library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#ifndef _KMDI_GUICLIENT_H_
-#define _KMDI_GUICLIENT_H_
-
-#include <tqobject.h>
-#include <tqguardedptr.h>
-#include <kxmlguiclient.h>
-#include <kaction.h>
-
-#include <kmdi/global.h>
-
-class KMainWindow;
-class KToolBar;
-
-namespace KMDI {
- class MainWindow;
- class ToolViewAccessor;
-}
-
-class KDockWidget;
-
-namespace KMDIPrivate {
-
-class GUIClientPrivate;
-
-class GUIClient : public TQObject, public KXMLGUIClient
-{
- Q_OBJECT
-
- public:
- GUIClient( KMDI::MainWindow *mdiMainFrm, const char *name = 0 );
- virtual ~GUIClient();
-
- void addToolView(KMDI::ToolViewAccessor*);
-
- private slots:
- void clientAdded( KXMLGUIClient *client );
- void setupActions();
- void actionDeleted(TQObject*);
-
- signals:
- void toggleTop();
- void toggleLeft();
- void toggleRight();
- void toggleBottom();
-
- private:
- GUIClientPrivate *d;
-
- TQGuardedPtr<KMDI::MainWindow> m_mdiMainFrm;
- TQPtrList<KAction> m_toolViewActions;
- TQPtrList<KAction> m_documentViewActions;
-
- KActionMenu *m_docMenu;
- KActionMenu *m_toolMenu;
-
- KActionMenu *m_gotoToolDockMenu;
-};
-
-class ToggleToolViewAction:public KToggleAction
-{
- Q_OBJECT
-
- public:
- ToggleToolViewAction ( const TQString& text, const KShortcut& cut = KShortcut(),
- KDockWidget *dw=0,KMDI::MainWindow *mdiMainFrm=0, TQObject* parent = 0, const char* name = 0 );
-
- virtual ~ToggleToolViewAction();
-
- protected slots:
- void slotToggled(bool);
- void anDWChanged();
- void slotWidgetDestroyed();
-
- private:
- KDockWidget *m_dw;
- KMDI::MainWindow *m_mdiMainFrm;
-};
-
-}
-
-#endif
-
-// kate: space-indent on; indent-width 2; replace-tabs on;