/*************************************************************************** kimeshell.h - description ------------------- begin : Mon Aug 5 2002 copyright : (C) 2002 by Jan Schäfer email : janschaefer@users.sourceforge.net ***************************************************************************/ /*************************************************************************** * * * This program 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. * * * ***************************************************************************/ #ifndef KIMESHELL_H #define KIMESHELL_H #include class KImageMapEditor; class KimeShell : public KParts::DockMainWindow { TQ_OBJECT public: KimeShell( const char *name=0 ); virtual ~KimeShell(); void setStdout(bool b); void openFile(const KURL & url); /** * Opens the last open file, if the * user has configured to open the last * file. Otherwise does nothing */ void openLastFile(); void readConfig(); void writeConfig(); protected: void setupActions(); void readConfig(TDEConfig*); void writeConfig(TDEConfig*); // virtual bool queryClose(); virtual void readProperties(TDEConfig *config); virtual void saveProperties(TDEConfig *config); virtual bool queryClose(); virtual bool queryExit(); private slots: void fileNew(); void fileOpen(); void optionsShowToolbar(); void optionsShowStatusbar(); void optionsConfigureKeys(); void optionsConfigureToolbars(); void applyNewToolbarConfig(); private: KImageMapEditor *m_part; bool _stdout; // write HTML-Code to stdout on exit ? }; inline void KimeShell::setStdout(bool b) { _stdout=b; } #endif