// // Copyright 2006 Jim Bublitz // Earlier copyrights 1998 - 2005 Jim Bublitz and/or Phil Thompson // may also apply // Generated by preSip // module tdeui version KDE 3.5.3 // This software is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation; either version 2 of // the License, or (at your option) any later version. // // This software 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 General Public // License along with this library; see the file COPYING. // If not, write to the Free Software Foundation, Inc., // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. class KMainWindow : QMainWindow, KXMLGUIBuilder, KXMLGUIClient { %TypeHeaderCode #include %End public: KMainWindow (QWidget* /TransferThis/ = 0, const char* = 0, WFlags = WType_TopLevel |WDestructiveClose ); %If ( KDE_3_2_0 - ) enum CreationFlags { NoDCOPObject }; KMainWindow (int, QWidget* /TransferThis/ = 0, const char* = 0, WFlags = WType_TopLevel |WDestructiveClose ); %End KPopupMenu* helpMenu (const QString& = QString ::null , bool = 1); KPopupMenu* customHelpMenu (bool = 1); static bool canBeRestored (int); static const QString classNameOfToplevel (int); %If ( KDE_3_2_0 - ) virtual void show (); virtual void hide (); %End bool restore (int, bool = 1); virtual KXMLGUIFactory* guiFactory (); void createGUI (const QString& = QString ::null , bool = 1); void setHelpMenuEnabled (bool = 1); bool isHelpMenuEnabled (); %If ( KDE_3_1_0 - ) bool hasMenuBar (); %End KMenuBar* menuBar (); KStatusBar* statusBar (); QPtrList* memberList; %If ( KDE_3_4_0 - ) static QPtrList* getMemberList (); %End KToolBar* toolBar (const char* = 0); //ig QPtrListIterator toolBarIterator (); KAccel* accel (); void setFrameBorderWidth (int); void setAutoSaveSettings (const QString& = QString ::fromLatin1 ("MainWindow" ), bool = 1); void resetAutoSaveSettings (); %If ( KDE_3_1_0 - ) bool autoSaveSettings () const; QString autoSaveGroup () const; %If ( KDE_3_3_0 - ) void applyMainWindowSettings (KConfig*, const QString&, bool); %End %End void applyMainWindowSettings (KConfig*, const QString& = QString ::null ); void saveMainWindowSettings (KConfig*, const QString& = QString ::null ); %If ( KDE_3_1_0 - ) void setStandardToolBarMenuEnabled (bool); bool isStandardToolBarMenuEnabled () const; %If ( KDE_3_2_0 - ) void createStandardStatusBarAction (); %If ( KDE_3_3_0 - ) enum StandardWindowOptions { ToolBar, Keys, StatusBar, Save, Create }; void setupGUI (int = ToolBar |Keys |StatusBar |Save |Create , const QString& = QString ::null ); %If ( KDE_3_5_0 - ) void setupGUI (QSize, int = ToolBar |Keys |StatusBar |Save |Create , const QString& = QString ::null ); %End %End %End KAction* toolBarMenuAction (); %If ( KDE_3_3_1 - ) void setupToolbarMenuActions (); %End virtual void finalizeGUI (KXMLGUIClient*); %End void finalizeGUI (bool); bool initialGeometrySet () const; %If ( KDE_3_2_0 - ) void ignoreInitialGeometry (); %End QSize sizeForCentralWidgetSize (QSize); %If ( KDE_3_3_2 - ) virtual void setIcon (const QPixmap&); %End public slots: %If ( KDE_3_3_0 - ) int configureToolbars (); %End virtual void setCaption (const QString&); virtual void setCaption (const QString&, bool); virtual void setPlainCaption (const QString&); void appHelpActivated (); virtual void slotStateChanged (const QString&); %If ( KDE_3_1_0 - ) void slotStateChanged (const QString&, KXMLGUIClient::ReverseStateChange); %End void setSettingsDirty (); protected: void paintEvent (QPaintEvent*); void childEvent (QChildEvent*); void resizeEvent (QResizeEvent*); virtual void closeEvent (QCloseEvent*); virtual bool queryExit (); virtual bool queryClose (); virtual void saveProperties (KConfig*); virtual void readProperties (KConfig*); virtual void saveGlobalProperties (KConfig*); virtual void readGlobalProperties (KConfig*); void savePropertiesInternal (KConfig*, int); bool readPropertiesInternal (KConfig*, int); bool settingsDirty () const; QString settingsGroup () const; void saveWindowSize (KConfig*) const; void restoreWindowSize (KConfig*); void parseGeometry (bool); protected slots: %If ( KDE_3_3_0 - ) void saveNewToolbarConfig (); %End virtual void showAboutApplication (); %If ( KDE_3_2_0 - ) void saveAutoSaveSettings (); %End protected: //igx virtual void virtual_hook (int, void*); }; // class KMainWindow %MappedType QPtrList //converts a Python list of KMainWindow { %TypeHeaderCode #include #include %End %ConvertFromTypeCode if (!sipCpp) return PyList_New (0); PyObject *pylist; // Create the list if ((pylist = PyList_New(0)) == NULL) return NULL; // Get it. QPtrList *cpplist = (QPtrList *)sipCpp; KMainWindow *cpp; PyObject *inst; // the loop depends on the type of iterator the tmeplate makes available for(cpp = cpplist->first (); cpp != 0; cpp = cpplist->next () ) { if (((inst = sipConvertFromInstance (cpp, sipClass_KMainWindow, sipTransferObj)) == NULL) || PyList_Append (pylist, inst) < 0) { Py_DECREF (pylist); return NULL; } } return pylist; %End %ConvertToTypeCode if (sipIsErr == NULL) return PyList_Check(sipPy); QPtrList *cpplist = new QPtrList; PyObject *elem; KMainWindow *cpp; int iserr = 0; for (int i = 0; i < PyList_Size (sipPy); i++) { elem = PyList_GET_ITEM (sipPy, i); cpp = (KMainWindow *)sipForceConvertToType(elem, sipType_KMainWindow, sipTransferObj, SIP_NO_CONVERTORS, NULL, &iserr); if (iserr) { *sipIsErr = 1; delete cpplist; return 0; } cpplist->append (cpp); } *sipCppPtr = cpplist; return 1; %End };