From ce4a32fe52ef09d8f5ff1dd22c001110902b60a2 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kdeui/kmainwindowiface.h | 161 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 161 insertions(+) create mode 100644 kdeui/kmainwindowiface.h (limited to 'kdeui/kmainwindowiface.h') diff --git a/kdeui/kmainwindowiface.h b/kdeui/kmainwindowiface.h new file mode 100644 index 000000000..eaee8d1d9 --- /dev/null +++ b/kdeui/kmainwindowiface.h @@ -0,0 +1,161 @@ +/* This file is part of the KDE project + Copyright (C) 2001 Ian Reinhart Geiser + + 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 + 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 KWINDOW_INTERFACE_H +#define KWINDOW_INTERFACE_H + +#include +#include +#include +#include + +class KDCOPActionProxy; +class KDCOPPropertyProxy; +class KMainWindow; + +/** + * @short DCOP interface to KMainWindow. + * + * This is the main interface to the KMainWindow. This will provide a consistent + * DCOP interface to all KDE applications that use it. + * + * @author Ian Reinhart Geiser + */ +class KDEUI_EXPORT KMainWindowInterface : virtual public DCOPObject +{ +K_DCOP + +public: + /** + Construct a new interface object. + @param mainWindow - The parent KMainWindow object + that will provide us with the KAction objects. + */ + KMainWindowInterface( KMainWindow * mainWindow ); + /** + Destructor + Cleans up the dcop action proxy object. + **/ + ~KMainWindowInterface(); + + QCStringList functionsDynamic(); + bool processDynamic(const QCString &fun, const QByteArray &data, QCString& replyType, QByteArray &replyData); + + +k_dcop: + /** + Return a list of actions available to the application's window. + @return A QCStringList containing valid names actions. + */ + QCStringList actions(); + + /** + Activates the requested action. + @param action The name of the action to activate. The names of valid + actions can be found by calling actions(). + @return The success of the operation. + */ + bool activateAction( QCString action); + + /** + Disables the requested action. + @param action The name of the action to disable. The names of valid + actions can be found by calling actions(). + @return The success of the operation. + */ + bool disableAction( QCString action); + + /** + Enables the requested action. + @param action The name of the action to enable. The names of valid + actions can be found by calling actions(). + @return The success of the operation. + */ + bool enableAction( QCString action); + + /** + Returns the status of the requested action. + @param action The name of the action. The names of valid + actions can be found by calling actions(). + @returns The state of the action, true - enabled, false - disabled. + */ + bool actionIsEnabled( QCString action); + + /** + Returns the tool tip text of the requested action. + @param action The name of the action to activate. The names of valid + actions can be found by calling actions(). + @return A QCString containing the text of the action's tool tip. + */ + QCString actionToolTip( QCString action); + + /** + Returns a dcop reference to the selected KAction + @param name The name of the action. The names of valid + actions can be found by calling actions(). + @return A DCOPRef for the kaction. + **/ + DCOPRef action( const QCString &name ); + + /** + Returns and action map + **/ + QMap actionMap(); + /** + Returns the ID of the current main window. + This is useful for automated screen captures or other evil + widget fun. + @return A integer value of the main window's ID. + **/ + int getWinID(); + /** + Copies a pixmap representation of the current main window to + the clipboard. + **/ + void grabWindowToClipBoard(); +// bool isHidden(); + void hide(); +// bool isMaximized(); + void maximize(); +// bool isMinimized(); + void minimize(); +// int width(); +// int height(); + void resize(int newWidth, int newHeight); +// int Xpos(); +// int Ypos(); + void move(int newX, int newY); + void setGeometry(int newX, int newY, int newWidth, int newHeight); + void raise(); + void lower(); + void restore(); + void show(); + void close(); + +// QCStringList getQTProperties(); + +private: + KMainWindow *m_MainWindow; + KDCOPActionProxy *m_dcopActionProxy; + KDCOPPropertyProxy *m_dcopPropertyProxy; +}; + +#endif + + -- cgit v1.2.1