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.
68 lines
968 B
68 lines
968 B
//-----------------------------------------------------------------------------
|
|
//
|
|
// kswarm - port of "swarm" from xlock
|
|
//
|
|
|
|
#ifndef __SWARM_H__
|
|
#define __SWARM_H__
|
|
|
|
#include <tqtimer.h>
|
|
|
|
#include <kdialogbase.h>
|
|
#include "saver.h"
|
|
|
|
|
|
class kSwarmSaver : public kScreenSaver
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
kSwarmSaver( Drawable drawable );
|
|
virtual ~kSwarmSaver();
|
|
|
|
void setSpeed( int spd );
|
|
void setLevels( int l );
|
|
|
|
protected:
|
|
void readSettings();
|
|
|
|
protected slots:
|
|
void slotTimeout();
|
|
|
|
protected:
|
|
KRandomSequence rnd;
|
|
TQTimer timer;
|
|
int colorContext;
|
|
|
|
int speed;
|
|
int maxLevels;
|
|
};
|
|
|
|
class kSwarmSetup : public KDialogBase
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
kSwarmSetup( TQWidget *parent = NULL, const char *name = NULL );
|
|
|
|
protected:
|
|
void readSettings();
|
|
|
|
private slots:
|
|
void slotSpeed( int );
|
|
void slotLevels( int );
|
|
|
|
void slotOk();
|
|
void slotHelp();
|
|
|
|
private:
|
|
TQWidget *preview;
|
|
kSwarmSaver *saver;
|
|
|
|
int speed;
|
|
int maxLevels;
|
|
};
|
|
|
|
#endif
|
|
|