/***************************************************************************
kstartuplogo.h - description
-------------------
begin : Sun Feb 28 1999
copyright : (C) 1999 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 KSTARTUPLOGO_H
#define KSTARTUPLOGO_H
#include
/**
* Displays a startup splash screen
*/
class KStartupLogo : public QWidget {
Q_OBJECT
public:
KStartupLogo(QWidget *parent=0, const char *name=0);
~KStartupLogo();
void setHideEnabled(bool bEnabled) {
m_bReadyToHide = bEnabled;
};
protected:
virtual void mousePressEvent( QMouseEvent*);
bool m_bReadyToHide;
};
#endif
| Generated by: jr on radge on Wed Sep 25 00:11:47 2002, using kdoc 2.0a54. |