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.
tdeartwork/tdescreensaver/xsavers/demowin.h

46 lines
763 B

//-----------------------------------------------------------------------------
//
// Screen savers for TDE
//
// Copyright (c) Martin R. Jones 1999
//
#ifndef __DEMOWIN_H__
#define __DEMOWIN_H__
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <tdelocale.h>
#include <tdeconfig.h>
#include <kstandarddirs.h>
#include <tdeapplication.h>
//----------------------------------------------------------------------------
class DemoWindow : public TQWidget
{
Q_OBJECT
public:
DemoWindow() : TQWidget()
{
setFixedSize(600, 420);
}
protected:
virtual void keyPressEvent(TQKeyEvent *e)
{
if (e->ascii() == 'q')
{
kapp->quit();
}
}
};
#endif