Source: whatsup/whatsup.h
|
|
|
|
/***************************************************************************
whatsup.h - description
-------------------
begin : Mon Apr 29 19:40:57 CEST 2002
copyright : (C) 2002 by
email :
***************************************************************************/
/***************************************************************************
* *
* 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 WHATSUP_H
#define WHATSUP_H
#ifdef HAVE_CONFIG_H
#include
#endif
#include
#include "ProcessList.h"
#include "qmainwindow.h"
#include
#include
#include
#include
#include
#include
#include "ModuleListView.h"
#define PROGNAME "WhatsUpOnZ 0.2"
#define CFG_NAME "whatsuponz"
#include
/** Whatsup is the base class of the project */
class Whatsup : public QMainWindow
{
Q_OBJECT
public:
/** construtor */
Whatsup(QWidget* parent=0, const char *name=0);
/** destructor */
~Whatsup();
private:
PerfMonPage* perfMonPage;
ProcListPage* procListPage;
ModuleListView* modulesPage;
StatusPage* statusPage;
QTabWidget* tabs;
Config cfg;
public slots:
void config();
void about() { QMessageBox::information( this, PROGNAME,
"Copyright 2002 by Andreas Pillath\n .\n"
" http://de.geocities.com/apillath\n\n"
"based on ktop, Copyright:\n"
"1996 : A. Sanda \n \n"
"1997 : Ralf Mueller\n \n"
"1997-98 : Bernd Johannes Wuebben \n \n"
"1998 : Nicolas Leclercq \n \n"
"1999 : Chris Schlaeger \n \n\n"
"Licensed under GPL v2"
);
};
};
#endif
| Generated by: andreas on linux on Sat Jun 15 19:28:49 2002, using kdoc 2.0a53. |