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.
82 lines
1.3 KiB
82 lines
1.3 KiB
//-----------------------------------------------------------------------------
|
|
//
|
|
// kpolygon - Basic screen saver for TDE
|
|
//
|
|
// Copyright (c) Martin R. Jones 1996
|
|
//
|
|
|
|
#ifndef __POLYGON_H__
|
|
#define __POLYGON_H__
|
|
|
|
#include <tqtimer.h>
|
|
#include <tqptrlist.h>
|
|
|
|
#include <kdialogbase.h>
|
|
#include <tdescreensaver.h>
|
|
#include <krandomsequence.h>
|
|
|
|
class kPolygonSaver : public KScreenSaver
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
kPolygonSaver( WId id );
|
|
virtual ~kPolygonSaver();
|
|
|
|
void setPolygon( int len, int ver );
|
|
void setSpeed( int spd );
|
|
|
|
private:
|
|
void readSettings();
|
|
void blank();
|
|
void initialisePolygons();
|
|
void moveVertices();
|
|
void initialiseColor();
|
|
void nextColor();
|
|
|
|
protected slots:
|
|
void slotTimeout();
|
|
|
|
protected:
|
|
TQTimer timer;
|
|
unsigned numLines;
|
|
int numVertices;
|
|
int colorContext;
|
|
int speed;
|
|
TQColor colors[64];
|
|
int currentColor;
|
|
TQPtrList<TQPointArray> polygons;
|
|
TQMemArray<TQPoint> directions;
|
|
KRandomSequence rnd;
|
|
};
|
|
|
|
class kPolygonSetup : public KDialogBase
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
kPolygonSetup( TQWidget *parent = 0, const char *name = 0 );
|
|
~kPolygonSetup();
|
|
|
|
protected:
|
|
void readSettings();
|
|
|
|
private slots:
|
|
void slotLength( int );
|
|
void slotVertices( int );
|
|
void slotSpeed( int );
|
|
void slotOk();
|
|
void slotHelp();
|
|
|
|
private:
|
|
TQWidget *preview;
|
|
kPolygonSaver *saver;
|
|
|
|
int length;
|
|
int vertices;
|
|
int speed;
|
|
};
|
|
|
|
#endif
|
|
|