mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
22 lines
508 B
Plaintext
22 lines
508 B
Plaintext
|
|
class QgsAnimatedIcon : QObject
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsanimatedicon.h>
|
|
%End
|
|
public:
|
|
|
|
QgsAnimatedIcon( const QString &iconPath = QString::null );
|
|
|
|
QString iconPath() const;
|
|
void setIconPath( const QString &iconPath );
|
|
QIcon icon() const;
|
|
bool connectFrameChanged( const QObject *receiver, const char *method );
|
|
bool disconnectFrameChanged( const QObject *receiver, const char *method );
|
|
|
|
int width() const;
|
|
int height() const;
|
|
signals:
|
|
void frameChanged();
|
|
};
|