ushort compatibleVersion;
ushort flags;
ushort special;
- ushort globalVolume;
- ushort mixVolume;
+ uchar globalVolume;
+ uchar mixVolume;
uchar tempo;
uchar bpmSpeed;
uchar panningSeparation;
return d->special;
}
-ushort IT::Properties::globalVolume() const
+uchar IT::Properties::globalVolume() const
{
return d->globalVolume;
}
-ushort IT::Properties::mixVolume() const
+uchar IT::Properties::mixVolume() const
{
return d->mixVolume;
}
d->version = version;
}
-void IT::Properties::setGlobalVolume(ushort globalVolume)
+void IT::Properties::setGlobalVolume(uchar globalVolume)
{
d->globalVolume = globalVolume;
}
-void IT::Properties::setMixVolume(ushort mixVolume)
+void IT::Properties::setMixVolume(uchar mixVolume)
{
d->mixVolume = mixVolume;
}
ushort compatibleVersion() const;
ushort flags() const;
ushort special() const;
- ushort globalVolume() const;
- ushort mixVolume() const;
+ uchar globalVolume() const;
+ uchar mixVolume() const;
uchar tempo() const;
uchar bpmSpeed() const;
uchar panningSeparation() const;
void setCompatibleVersion(ushort compatibleVersion);
void setFlags (ushort flags);
void setSpecial (ushort special);
- void setGlobalVolume(ushort globalVolume);
- void setMixVolume (ushort mixVolume);
+ void setGlobalVolume(uchar globalVolume);
+ void setMixVolume (uchar mixVolume);
void setTempo (uchar tempo);
void setBpmSpeed (uchar bpmSpeed);
void setPanningSeparation(uchar panningSeparation);