20#ifndef __SYNTHCLONE_COMPONENT_H__
21#define __SYNTHCLONE_COMPONENT_H__
23#include <QtCore/QObject>
24#include <QtCore/QString>
void nameChanged(const QString &name)
Emitted when the Component name is changed.
void setName(const QString &name)
Sets the name of this Component.
virtual ~Component()
Destroys a Component object.
Component(const QString &name, QObject *parent=0)
Constructs a new Component object.
void statusChanged(const QString &status)
Emitted when the Component object's status changes.
QString getName() const
Gets the Component name.
void progressChanged(float progress)
Emitted by the Component to indicate progress in whatever operation the Component is performing.
Definition component.h:26