summaryrefslogtreecommitdiffstats
path: root/kverbos/kverbos/kstartuplogo.h
blob: a3795bbeda660db75a2a0d443a9dbedd48a20a55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/***************************************************************************
                          kstartuplogo.h  -  description
                             -------------------
    begin                : Fri Dec 14 2001
    copyright            : (C) 2001 by Arnold Kraschinski
    email                : arnold.k67@gmx.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 KSTARTUPLOGO_H
#define KSTARTUPLOGO_H

#include <tqwidget.h>

/**This class creates the splash screen at the beginning of the program.
  *@author Arnold Kraschinski
  */

class KStartupLogo : public TQWidget  {
   Q_OBJECT
  
public:
	KStartupLogo(TQWidget *parent=0, const char *name=0);
	~KStartupLogo();
protected:
  virtual bool event(TQEvent*);
};


#endif