You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdewebdev/kimagemapeditor/kimeshell.h

83 lines
2.1 KiB

/***************************************************************************
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 <tdeparts/dockmainwindow.h>
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