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

class KImageMapEditor;

class KimeShell : public KParts::DockMainWindow
{
  Q_OBJECT
  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(KConfig*);
  void writeConfig(KConfig*);
  
//  virtual bool queryClose();
  virtual void readProperties(KConfig *config);
  virtual void saveProperties(KConfig *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