You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdeedu/kverbos/kverbos/kstartuplogo.cpp

43 lines
1.7 KiB

/***************************************************************************
kstartuplogo.cpp - 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. *
* *
***************************************************************************/
#include "kstartuplogo.h"
#include <kapplication.h>
#include <kstandarddirs.h>
#include <kglobalsettings.h>
KStartupLogo::KStartupLogo(TQWidget * parent, const char *name)
: TQWidget(parent,name,WStyle_Customize | WStyle_NoBorder )
{
TQPixmap pm;
pm.load(locate("appdata", "pics/startuplogo.png"));
setBackgroundPixmap(pm);
TQRect desk = KGlobalSettings::splashScreenDesktopGeometry();
setGeometry(desk.center().x()-pm.width()/2, desk.center().y()-pm.height()/2,
pm.width(),pm.height());
}
KStartupLogo::~KStartupLogo(){
}
bool KStartupLogo::event(TQEvent* ev){
raise();
return TQWidget::event(ev);
}
#include "kstartuplogo.moc"