/***************************************************************************
kloggerview.h - description
-------------------
begin : Sun Jun 6 11:42:22 CEST 1999
copyright : (C) 1999 by Heiner Lamprecht
email : heiner@kijumfo.de
***************************************************************************/
/***************************************************************************
* *
* 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 KLOGGERVIEW_H
#define KLOGGERVIEW_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <kapp.h>
#include <qwidget.h>
#include "kloggerdoc.h"
/**
* This class provides an the base for KLogger-view.
* @author Heiner Lamprecht
*/
class KLoggerView : public QWidget
{
Q_OBJECT
public:
/** Constructor for the main view */
KLoggerView(KLoggerDoc* doc=0,QWidget* main=0, QWidget* parent=0);
/** Destructor for the main view */
~KLoggerView();
QFrame* mapFrame;
public slots:
void sendeNachricht();
signals:
void nachricht(const char* meldung);
void position(int x, int y);
private:
};
#endif // KLOGGERVIEW_H
Documentation generated by heiner@Tharbad on Fri Jun 25 22:35:51 CEST 1999