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.
118 lines
3.4 KiB
118 lines
3.4 KiB
/* amoranim.h
|
|
**
|
|
** Copyright (c) 1999 Martin R. Jones <mjones@kde.org>
|
|
**
|
|
*/
|
|
|
|
/*
|
|
** 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.
|
|
**
|
|
** This program is distributed in the hope that it will be useful,
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
** GNU General Public License for more details.
|
|
**
|
|
** You should have received a copy of the GNU General Public License
|
|
** along with this program in a file called COPYING; if not, write to
|
|
** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
** MA 02110-1301, USA.
|
|
*/
|
|
|
|
/*
|
|
** Bug reports and questions can be sent to kde-devel@kde.org
|
|
*/
|
|
#ifndef AMORANIM_H
|
|
#define AMORANIM_H
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <tqmemarray.h>
|
|
#include <tqdict.h>
|
|
#include <tqstringlist.h>
|
|
#include <tdeconfigbase.h>
|
|
#include <ksimpleconfig.h>
|
|
|
|
//---------------------------------------------------------------------------
|
|
//
|
|
// AmorAnim contains the properties of a single animation
|
|
//
|
|
class AmorAnim
|
|
{
|
|
public:
|
|
AmorAnim(TDEConfigBase &config);
|
|
virtual ~AmorAnim();
|
|
|
|
void reset()
|
|
{ mCurrent = 0; }
|
|
bool next()
|
|
{ return (++mCurrent < mSequence.count()); }
|
|
int frameNum() const
|
|
{ return mCurrent; }
|
|
bool validFrame() const
|
|
{ return (mCurrent < mSequence.count()); }
|
|
int totalMovement() const
|
|
{ return mTotalMovement; }
|
|
TQSize maximumSize() const
|
|
{ return mMaximumSize; }
|
|
|
|
int delay() const
|
|
{ return (validFrame() ? mDelay[mCurrent] : 100); }
|
|
TQPoint hotspot() const
|
|
{ return (validFrame() ? mHotspot[mCurrent] : TQPoint(16,16)); }
|
|
int movement() const
|
|
{ return (validFrame() ? mMovement[mCurrent] : 0); }
|
|
const TQPixmap *frame();
|
|
|
|
protected:
|
|
void readConfig(TDEConfigBase &config);
|
|
|
|
protected:
|
|
unsigned int mCurrent; // current frame in sequence
|
|
TQStringList mSequence; // sequence of images to display
|
|
TQMemArray<int> mDelay; // delay between frames
|
|
TQMemArray<TQPoint> mHotspot; // the hotspot in a frame
|
|
TQMemArray<int> mMovement; // the distance to move between frames
|
|
int mTotalMovement; // the total distance this animation moves
|
|
TQSize mMaximumSize; // the maximum size of any frame
|
|
};
|
|
|
|
//---------------------------------------------------------------------------
|
|
typedef TQPtrList<AmorAnim> AmorAnimationGroup;
|
|
|
|
//---------------------------------------------------------------------------
|
|
//
|
|
// AmorThemeManager maintains an animation theme
|
|
//
|
|
class AmorThemeManager
|
|
{
|
|
public:
|
|
AmorThemeManager();
|
|
virtual ~AmorThemeManager();
|
|
|
|
bool setTheme(const TQString & file);
|
|
bool readGroup(const TQString & seq);
|
|
bool isStatic() const
|
|
{ return mStatic; }
|
|
|
|
AmorAnim *random(const TQString & group);
|
|
|
|
TQSize maximumSize() const { return mMaximumSize; }
|
|
|
|
protected:
|
|
TQString mPath;
|
|
KSimpleConfig *mConfig;
|
|
TQSize mMaximumSize; // The largest pixmap used
|
|
TQDict<AmorAnimationGroup> mAnimations; // list of animation groups
|
|
bool mStatic; // static image
|
|
};
|
|
|
|
#endif // AMORANIM_H
|
|
|