diff options
author | Timothy Pearson <[email protected]> | 2013-01-26 13:16:15 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-26 13:16:15 -0600 |
commit | 7e09b5c2efae58399621a938de26b9675b8ba621 (patch) | |
tree | de2c9535e1f4c48ae91910492d298eba1d593fd5 /kscreensaver/kdesavers/blob.h | |
parent | 159f7e147ac33c924b3ce9050c8f03cbc54916ee (diff) | |
download | tdeartwork-7e09b5c2efae58399621a938de26b9675b8ba621.tar.gz tdeartwork-7e09b5c2efae58399621a938de26b9675b8ba621.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kscreensaver/kdesavers/blob.h')
-rw-r--r-- | kscreensaver/kdesavers/blob.h | 119 |
1 files changed, 0 insertions, 119 deletions
diff --git a/kscreensaver/kdesavers/blob.h b/kscreensaver/kdesavers/blob.h deleted file mode 100644 index 5e5fb97c..00000000 --- a/kscreensaver/kdesavers/blob.h +++ /dev/null @@ -1,119 +0,0 @@ -//----------------------------------------------------------------------------- -// -// kblob - Basic screen saver for KDE -// -// Copyright (c) Tiaan Wessels, 1997 -// - -#ifndef __BLOB_H__ -#define __BLOB_H__ - -#include <tqtimer.h> -#include <tqptrlist.h> - -#include <kdialogbase.h> -#include <kscreensaver.h> - -#define RAMP 64 -#define SPEED 10 - -enum blob_alg { - ALG_LINEAR, - ALG_HSINE, - ALG_CIRB, - ALG_POLARC, - ALG_LAST, - ALG_RANDOM = ALG_LAST }; - -class KBlobSaver : public KScreenSaver -{ - Q_OBJECT - - -public: - KBlobSaver( WId id ); - virtual ~KBlobSaver(); - - void setDimension(int d) - { dim = d; } - void setShowlen(time_t s) - { showlen = s; } - void setColorInc(int c) - { colorInc = c; } - -public slots: - void setAlgorithm(int); - -public: - typedef void (KBlobSaver::*AlgFunc)(); - struct KBSAlg - { - TQString Name; - AlgFunc Init; - AlgFunc NextFrame; - }; -private: - - TQTimer timer; - uint colors[RAMP]; - uint lookup[256]; - int colorContext, colorInc; - int tx, ty; - int dim; - int xhalf, yhalf; - int alg, newalg, newalgp; - time_t showlen, start; - KBSAlg Algs[ALG_LAST]; - int ln_xinc, ln_yinc; - float hs_radians, hs_rinc, hs_flip, hs_per; - float cb_radians, cb_rinc, cb_sradians, cb_radius, cb_devradinc; - float cb_deviate; - float pc_angle, pc_radius, pc_inc, pc_crot, pc_div; - - void lnSetup(); - void hsSetup(); - void cbSetup(); - void pcSetup(); - - void lnNextFrame(); - void hsNextFrame(); - void cbNextFrame(); - void pcNextFrame(); - - void blank(); - void box(int, int); - void readSettings(); - -protected slots: - void slotTimeout(); -}; - -class TQListBox; -class KIntNumInput; - -class KBlobSetup : public KDialogBase -{ - Q_OBJECT - - - int showtime; - int alg; - TQListBox *algs; - KIntNumInput *stime; - -public: - KBlobSetup( TQWidget *parent = NULL, const char *name = NULL ); - -protected: - void readSettings(); - -private slots: - void slotOk(); - void slotHelp(); - -private: - KBlobSaver *saver; -}; - -#endif - |