| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444 |
- #include "window-basic-main.hpp"
- #include "volume-control.hpp"
- #include "qt-wrappers.hpp"
- #include "obs-app.hpp"
- #include "mute-checkbox.hpp"
- #include "slider-ignorewheel.hpp"
- #include "slider-absoluteset-style.hpp"
- #include <QFontDatabase>
- #include <QHBoxLayout>
- #include <QPushButton>
- #include <QLabel>
- #include <QPainter>
- #include <QStyleFactory>
- using namespace std;
- #define CLAMP(x, min, max) ((x) < (min) ? (min) : ((x) > (max) ? (max) : (x)))
- #define FADER_PRECISION 4096.0
- // Size of the audio indicator in pixels
- #define INDICATOR_THICKNESS 3
- // Padding on top and bottom of vertical meters
- #define METER_PADDING 1
- QWeakPointer<VolumeMeterTimer> VolumeMeter::updateTimer;
- void VolControl::OBSVolumeChanged(void *data, float db)
- {
- Q_UNUSED(db);
- VolControl *volControl = static_cast<VolControl *>(data);
- QMetaObject::invokeMethod(volControl, "VolumeChanged");
- }
- void VolControl::OBSVolumeLevel(void *data,
- const float magnitude[MAX_AUDIO_CHANNELS],
- const float peak[MAX_AUDIO_CHANNELS],
- const float inputPeak[MAX_AUDIO_CHANNELS])
- {
- VolControl *volControl = static_cast<VolControl *>(data);
- volControl->volMeter->setLevels(magnitude, peak, inputPeak);
- }
- void VolControl::OBSVolumeMuted(void *data, calldata_t *calldata)
- {
- VolControl *volControl = static_cast<VolControl *>(data);
- bool muted = calldata_bool(calldata, "muted");
- QMetaObject::invokeMethod(volControl, "VolumeMuted",
- Q_ARG(bool, muted));
- }
- void VolControl::VolumeChanged()
- {
- slider->blockSignals(true);
- slider->setValue(
- (int)(obs_fader_get_deflection(obs_fader) * FADER_PRECISION));
- slider->blockSignals(false);
- updateText();
- }
- void VolControl::VolumeMuted(bool muted)
- {
- if (mute->isChecked() != muted)
- mute->setChecked(muted);
- volMeter->muted = muted;
- }
- void VolControl::SetMuted(bool checked)
- {
- bool prev = obs_source_muted(source);
- obs_source_set_muted(source, checked);
- auto undo_redo = [](const std::string &name, bool val) {
- OBSSourceAutoRelease source =
- obs_get_source_by_name(name.c_str());
- obs_source_set_muted(source, val);
- };
- QString text =
- QTStr(checked ? "Undo.Volume.Mute" : "Undo.Volume.Unmute");
- const char *name = obs_source_get_name(source);
- OBSBasic::Get()->undo_s.add_action(
- text.arg(name),
- std::bind(undo_redo, std::placeholders::_1, prev),
- std::bind(undo_redo, std::placeholders::_1, checked), name,
- name);
- }
- void VolControl::SliderChanged(int vol)
- {
- float prev = obs_source_get_volume(source);
- obs_fader_set_deflection(obs_fader, float(vol) / FADER_PRECISION);
- updateText();
- auto undo_redo = [](const std::string &name, float val) {
- OBSSourceAutoRelease source =
- obs_get_source_by_name(name.c_str());
- obs_source_set_volume(source, val);
- };
- float val = obs_source_get_volume(source);
- const char *name = obs_source_get_name(source);
- OBSBasic::Get()->undo_s.add_action(
- QTStr("Undo.Volume.Change").arg(name),
- std::bind(undo_redo, std::placeholders::_1, prev),
- std::bind(undo_redo, std::placeholders::_1, val), name, name,
- true);
- }
- void VolControl::updateText()
- {
- QString text;
- float db = obs_fader_get_db(obs_fader);
- if (db < -96.0f)
- text = "-inf dB";
- else
- text = QString::number(db, 'f', 1).append(" dB");
- volLabel->setText(text);
- bool muted = obs_source_muted(source);
- const char *accTextLookup = muted ? "VolControl.SliderMuted"
- : "VolControl.SliderUnmuted";
- QString sourceName = obs_source_get_name(source);
- QString accText = QTStr(accTextLookup).arg(sourceName);
- slider->setAccessibleName(accText);
- }
- QString VolControl::GetName() const
- {
- return nameLabel->text();
- }
- void VolControl::SetName(const QString &newName)
- {
- nameLabel->setText(newName);
- }
- void VolControl::EmitConfigClicked()
- {
- emit ConfigClicked();
- }
- void VolControl::SetMeterDecayRate(qreal q)
- {
- volMeter->setPeakDecayRate(q);
- }
- void VolControl::setPeakMeterType(enum obs_peak_meter_type peakMeterType)
- {
- volMeter->setPeakMeterType(peakMeterType);
- }
- VolControl::VolControl(OBSSource source_, bool showConfig, bool vertical)
- : source(std::move(source_)),
- levelTotal(0.0f),
- levelCount(0.0f),
- obs_fader(obs_fader_create(OBS_FADER_LOG)),
- obs_volmeter(obs_volmeter_create(OBS_FADER_LOG)),
- vertical(vertical),
- contextMenu(nullptr)
- {
- nameLabel = new QLabel();
- volLabel = new QLabel();
- mute = new MuteCheckBox();
- QString sourceName = obs_source_get_name(source);
- setObjectName(sourceName);
- if (showConfig) {
- config = new QPushButton(this);
- config->setProperty("themeID", "menuIconSmall");
- config->setSizePolicy(QSizePolicy::Maximum,
- QSizePolicy::Maximum);
- config->setMaximumSize(22, 22);
- config->setAutoDefault(false);
- config->setAccessibleName(
- QTStr("VolControl.Properties").arg(sourceName));
- connect(config, &QAbstractButton::clicked, this,
- &VolControl::EmitConfigClicked);
- }
- QVBoxLayout *mainLayout = new QVBoxLayout;
- mainLayout->setContentsMargins(4, 4, 4, 4);
- mainLayout->setSpacing(2);
- if (vertical) {
- QHBoxLayout *nameLayout = new QHBoxLayout;
- QHBoxLayout *controlLayout = new QHBoxLayout;
- QHBoxLayout *volLayout = new QHBoxLayout;
- QHBoxLayout *meterLayout = new QHBoxLayout;
- volMeter = new VolumeMeter(nullptr, obs_volmeter, true);
- slider = new VolumeSlider(obs_fader, Qt::Vertical);
- nameLayout->setAlignment(Qt::AlignCenter);
- meterLayout->setAlignment(Qt::AlignCenter);
- controlLayout->setAlignment(Qt::AlignCenter);
- volLayout->setAlignment(Qt::AlignCenter);
- nameLayout->setContentsMargins(0, 0, 0, 0);
- nameLayout->setSpacing(0);
- nameLayout->addWidget(nameLabel);
- controlLayout->setContentsMargins(0, 0, 0, 0);
- controlLayout->setSpacing(0);
- if (showConfig)
- controlLayout->addWidget(config);
- controlLayout->addItem(new QSpacerItem(3, 0));
- // Add Headphone (audio monitoring) widget here
- controlLayout->addWidget(mute);
- meterLayout->setContentsMargins(0, 0, 0, 0);
- meterLayout->setSpacing(0);
- meterLayout->addWidget(volMeter);
- meterLayout->addWidget(slider);
- volLayout->setContentsMargins(0, 0, 0, 0);
- volLayout->setSpacing(0);
- volLayout->addWidget(volLabel);
- mainLayout->addItem(nameLayout);
- mainLayout->addItem(volLayout);
- mainLayout->addItem(meterLayout);
- mainLayout->addItem(controlLayout);
- volMeter->setFocusProxy(slider);
- // Default size can cause clipping of long names in vertical layout.
- QFont font = nameLabel->font();
- QFontInfo info(font);
- font.setPointSizeF(0.8 * info.pointSizeF());
- nameLabel->setFont(font);
- setMaximumWidth(110);
- } else {
- QHBoxLayout *textLayout = new QHBoxLayout;
- QHBoxLayout *botLayout = new QHBoxLayout;
- volMeter = new VolumeMeter(nullptr, obs_volmeter, false);
- slider = new VolumeSlider(obs_fader, Qt::Horizontal);
- textLayout->setContentsMargins(0, 0, 0, 0);
- textLayout->addWidget(nameLabel);
- textLayout->addWidget(volLabel);
- textLayout->setAlignment(nameLabel, Qt::AlignLeft);
- textLayout->setAlignment(volLabel, Qt::AlignRight);
- botLayout->setContentsMargins(0, 0, 0, 0);
- botLayout->setSpacing(5);
- botLayout->addWidget(slider);
- botLayout->addWidget(mute);
- botLayout->setAlignment(slider, Qt::AlignVCenter);
- botLayout->setAlignment(mute, Qt::AlignVCenter);
- if (showConfig) {
- botLayout->addWidget(config);
- botLayout->setAlignment(config, Qt::AlignVCenter);
- }
- mainLayout->addItem(textLayout);
- mainLayout->addWidget(volMeter);
- mainLayout->addItem(botLayout);
- volMeter->setFocusProxy(slider);
- }
- setLayout(mainLayout);
- nameLabel->setText(sourceName);
- slider->setMinimum(0);
- slider->setMaximum(int(FADER_PRECISION));
- bool muted = obs_source_muted(source);
- mute->setChecked(muted);
- volMeter->muted = muted;
- mute->setAccessibleName(QTStr("VolControl.Mute").arg(sourceName));
- obs_fader_add_callback(obs_fader, OBSVolumeChanged, this);
- obs_volmeter_add_callback(obs_volmeter, OBSVolumeLevel, this);
- signal_handler_connect(obs_source_get_signal_handler(source), "mute",
- OBSVolumeMuted, this);
- QWidget::connect(slider, SIGNAL(valueChanged(int)), this,
- SLOT(SliderChanged(int)));
- QWidget::connect(mute, SIGNAL(clicked(bool)), this,
- SLOT(SetMuted(bool)));
- obs_fader_attach_source(obs_fader, source);
- obs_volmeter_attach_source(obs_volmeter, source);
- QString styleName = slider->style()->objectName();
- QStyle *style;
- style = QStyleFactory::create(styleName);
- if (!style) {
- style = new SliderAbsoluteSetStyle();
- } else {
- style = new SliderAbsoluteSetStyle(style);
- }
- style->setParent(slider);
- slider->setStyle(style);
- /* Call volume changed once to init the slider position and label */
- VolumeChanged();
- }
- void VolControl::EnableSlider(bool enable)
- {
- slider->setEnabled(enable);
- }
- VolControl::~VolControl()
- {
- obs_fader_remove_callback(obs_fader, OBSVolumeChanged, this);
- obs_volmeter_remove_callback(obs_volmeter, OBSVolumeLevel, this);
- signal_handler_disconnect(obs_source_get_signal_handler(source), "mute",
- OBSVolumeMuted, this);
- obs_fader_destroy(obs_fader);
- obs_volmeter_destroy(obs_volmeter);
- if (contextMenu)
- contextMenu->close();
- }
- static inline QColor color_from_int(long long val)
- {
- QColor color(val & 0xff, (val >> 8) & 0xff, (val >> 16) & 0xff,
- (val >> 24) & 0xff);
- color.setAlpha(255);
- return color;
- }
- QColor VolumeMeter::getBackgroundNominalColor() const
- {
- return p_backgroundNominalColor;
- }
- QColor VolumeMeter::getBackgroundNominalColorDisabled() const
- {
- return backgroundNominalColorDisabled;
- }
- void VolumeMeter::setBackgroundNominalColor(QColor c)
- {
- p_backgroundNominalColor = std::move(c);
- if (config_get_bool(GetGlobalConfig(), "Accessibility",
- "OverrideColors")) {
- backgroundNominalColor = color_from_int(config_get_int(
- GetGlobalConfig(), "Accessibility", "MixerGreen"));
- } else {
- backgroundNominalColor = p_backgroundNominalColor;
- }
- }
- void VolumeMeter::setBackgroundNominalColorDisabled(QColor c)
- {
- backgroundNominalColorDisabled = std::move(c);
- }
- QColor VolumeMeter::getBackgroundWarningColor() const
- {
- return p_backgroundWarningColor;
- }
- QColor VolumeMeter::getBackgroundWarningColorDisabled() const
- {
- return backgroundWarningColorDisabled;
- }
- void VolumeMeter::setBackgroundWarningColor(QColor c)
- {
- p_backgroundWarningColor = std::move(c);
- if (config_get_bool(GetGlobalConfig(), "Accessibility",
- "OverrideColors")) {
- backgroundWarningColor = color_from_int(config_get_int(
- GetGlobalConfig(), "Accessibility", "MixerYellow"));
- } else {
- backgroundWarningColor = p_backgroundWarningColor;
- }
- }
- void VolumeMeter::setBackgroundWarningColorDisabled(QColor c)
- {
- backgroundWarningColorDisabled = std::move(c);
- }
- QColor VolumeMeter::getBackgroundErrorColor() const
- {
- return p_backgroundErrorColor;
- }
- QColor VolumeMeter::getBackgroundErrorColorDisabled() const
- {
- return backgroundErrorColorDisabled;
- }
- void VolumeMeter::setBackgroundErrorColor(QColor c)
- {
- p_backgroundErrorColor = std::move(c);
- if (config_get_bool(GetGlobalConfig(), "Accessibility",
- "OverrideColors")) {
- backgroundErrorColor = color_from_int(config_get_int(
- GetGlobalConfig(), "Accessibility", "MixerRed"));
- } else {
- backgroundErrorColor = p_backgroundErrorColor;
- }
- }
- void VolumeMeter::setBackgroundErrorColorDisabled(QColor c)
- {
- backgroundErrorColorDisabled = std::move(c);
- }
- QColor VolumeMeter::getForegroundNominalColor() const
- {
- return p_foregroundNominalColor;
- }
- QColor VolumeMeter::getForegroundNominalColorDisabled() const
- {
- return foregroundNominalColorDisabled;
- }
- void VolumeMeter::setForegroundNominalColor(QColor c)
- {
- p_foregroundNominalColor = std::move(c);
- if (config_get_bool(GetGlobalConfig(), "Accessibility",
- "OverrideColors")) {
- foregroundNominalColor = color_from_int(
- config_get_int(GetGlobalConfig(), "Accessibility",
- "MixerGreenActive"));
- } else {
- foregroundNominalColor = p_foregroundNominalColor;
- }
- }
- void VolumeMeter::setForegroundNominalColorDisabled(QColor c)
- {
- foregroundNominalColorDisabled = std::move(c);
- }
- QColor VolumeMeter::getForegroundWarningColor() const
- {
- return p_foregroundWarningColor;
- }
- QColor VolumeMeter::getForegroundWarningColorDisabled() const
- {
- return foregroundWarningColorDisabled;
- }
- void VolumeMeter::setForegroundWarningColor(QColor c)
- {
- p_foregroundWarningColor = std::move(c);
- if (config_get_bool(GetGlobalConfig(), "Accessibility",
- "OverrideColors")) {
- foregroundWarningColor = color_from_int(
- config_get_int(GetGlobalConfig(), "Accessibility",
- "MixerYellowActive"));
- } else {
- foregroundWarningColor = p_foregroundWarningColor;
- }
- }
- void VolumeMeter::setForegroundWarningColorDisabled(QColor c)
- {
- foregroundWarningColorDisabled = std::move(c);
- }
- QColor VolumeMeter::getForegroundErrorColor() const
- {
- return p_foregroundErrorColor;
- }
- QColor VolumeMeter::getForegroundErrorColorDisabled() const
- {
- return foregroundErrorColorDisabled;
- }
- void VolumeMeter::setForegroundErrorColor(QColor c)
- {
- p_foregroundErrorColor = std::move(c);
- if (config_get_bool(GetGlobalConfig(), "Accessibility",
- "OverrideColors")) {
- foregroundErrorColor = color_from_int(config_get_int(
- GetGlobalConfig(), "Accessibility", "MixerRedActive"));
- } else {
- foregroundErrorColor = p_foregroundErrorColor;
- }
- }
- void VolumeMeter::setForegroundErrorColorDisabled(QColor c)
- {
- foregroundErrorColorDisabled = std::move(c);
- }
- QColor VolumeMeter::getClipColor() const
- {
- return clipColor;
- }
- void VolumeMeter::setClipColor(QColor c)
- {
- clipColor = std::move(c);
- }
- QColor VolumeMeter::getMagnitudeColor() const
- {
- return magnitudeColor;
- }
- void VolumeMeter::setMagnitudeColor(QColor c)
- {
- magnitudeColor = std::move(c);
- }
- QColor VolumeMeter::getMajorTickColor() const
- {
- return majorTickColor;
- }
- void VolumeMeter::setMajorTickColor(QColor c)
- {
- majorTickColor = std::move(c);
- }
- QColor VolumeMeter::getMinorTickColor() const
- {
- return minorTickColor;
- }
- void VolumeMeter::setMinorTickColor(QColor c)
- {
- minorTickColor = std::move(c);
- }
- int VolumeMeter::getMeterThickness() const
- {
- return meterThickness;
- }
- void VolumeMeter::setMeterThickness(int v)
- {
- meterThickness = v;
- recalculateLayout = true;
- }
- qreal VolumeMeter::getMeterFontScaling() const
- {
- return meterFontScaling;
- }
- void VolumeMeter::setMeterFontScaling(qreal v)
- {
- meterFontScaling = v;
- recalculateLayout = true;
- }
- void VolControl::refreshColors()
- {
- volMeter->setBackgroundNominalColor(
- volMeter->getBackgroundNominalColor());
- volMeter->setBackgroundWarningColor(
- volMeter->getBackgroundWarningColor());
- volMeter->setBackgroundErrorColor(volMeter->getBackgroundErrorColor());
- volMeter->setForegroundNominalColor(
- volMeter->getForegroundNominalColor());
- volMeter->setForegroundWarningColor(
- volMeter->getForegroundWarningColor());
- volMeter->setForegroundErrorColor(volMeter->getForegroundErrorColor());
- }
- qreal VolumeMeter::getMinimumLevel() const
- {
- return minimumLevel;
- }
- void VolumeMeter::setMinimumLevel(qreal v)
- {
- minimumLevel = v;
- }
- qreal VolumeMeter::getWarningLevel() const
- {
- return warningLevel;
- }
- void VolumeMeter::setWarningLevel(qreal v)
- {
- warningLevel = v;
- }
- qreal VolumeMeter::getErrorLevel() const
- {
- return errorLevel;
- }
- void VolumeMeter::setErrorLevel(qreal v)
- {
- errorLevel = v;
- }
- qreal VolumeMeter::getClipLevel() const
- {
- return clipLevel;
- }
- void VolumeMeter::setClipLevel(qreal v)
- {
- clipLevel = v;
- }
- qreal VolumeMeter::getMinimumInputLevel() const
- {
- return minimumInputLevel;
- }
- void VolumeMeter::setMinimumInputLevel(qreal v)
- {
- minimumInputLevel = v;
- }
- qreal VolumeMeter::getPeakDecayRate() const
- {
- return peakDecayRate;
- }
- void VolumeMeter::setPeakDecayRate(qreal v)
- {
- peakDecayRate = v;
- }
- qreal VolumeMeter::getMagnitudeIntegrationTime() const
- {
- return magnitudeIntegrationTime;
- }
- void VolumeMeter::setMagnitudeIntegrationTime(qreal v)
- {
- magnitudeIntegrationTime = v;
- }
- qreal VolumeMeter::getPeakHoldDuration() const
- {
- return peakHoldDuration;
- }
- void VolumeMeter::setPeakHoldDuration(qreal v)
- {
- peakHoldDuration = v;
- }
- qreal VolumeMeter::getInputPeakHoldDuration() const
- {
- return inputPeakHoldDuration;
- }
- void VolumeMeter::setInputPeakHoldDuration(qreal v)
- {
- inputPeakHoldDuration = v;
- }
- void VolumeMeter::setPeakMeterType(enum obs_peak_meter_type peakMeterType)
- {
- obs_volmeter_set_peak_meter_type(obs_volmeter, peakMeterType);
- switch (peakMeterType) {
- case TRUE_PEAK_METER:
- // For true-peak meters EBU has defined the Permitted Maximum,
- // taking into account the accuracy of the meter and further
- // processing required by lossy audio compression.
- //
- // The alignment level was not specified, but I've adjusted
- // it compared to a sample-peak meter. Incidentally Youtube
- // uses this new Alignment Level as the maximum integrated
- // loudness of a video.
- //
- // * Permitted Maximum Level (PML) = -2.0 dBTP
- // * Alignment Level (AL) = -13 dBTP
- setErrorLevel(-2.0);
- setWarningLevel(-13.0);
- break;
- case SAMPLE_PEAK_METER:
- default:
- // For a sample Peak Meter EBU has the following level
- // definitions, taking into account inaccuracies of this meter:
- //
- // * Permitted Maximum Level (PML) = -9.0 dBFS
- // * Alignment Level (AL) = -20.0 dBFS
- setErrorLevel(-9.0);
- setWarningLevel(-20.0);
- break;
- }
- }
- void VolumeMeter::mousePressEvent(QMouseEvent *event)
- {
- setFocus(Qt::MouseFocusReason);
- event->accept();
- }
- void VolumeMeter::wheelEvent(QWheelEvent *event)
- {
- QApplication::sendEvent(focusProxy(), event);
- }
- VolumeMeter::VolumeMeter(QWidget *parent, obs_volmeter_t *obs_volmeter,
- bool vertical)
- : QWidget(parent), obs_volmeter(obs_volmeter), vertical(vertical)
- {
- setAttribute(Qt::WA_OpaquePaintEvent, true);
- // Default meter settings, they only show if
- // there is no stylesheet, do not remove.
- backgroundNominalColor.setRgb(0x26, 0x7f, 0x26); // Dark green
- backgroundWarningColor.setRgb(0x7f, 0x7f, 0x26); // Dark yellow
- backgroundErrorColor.setRgb(0x7f, 0x26, 0x26); // Dark red
- foregroundNominalColor.setRgb(0x4c, 0xff, 0x4c); // Bright green
- foregroundWarningColor.setRgb(0xff, 0xff, 0x4c); // Bright yellow
- foregroundErrorColor.setRgb(0xff, 0x4c, 0x4c); // Bright red
- backgroundNominalColorDisabled.setRgb(90, 90, 90);
- backgroundWarningColorDisabled.setRgb(117, 117, 117);
- backgroundErrorColorDisabled.setRgb(65, 65, 65);
- foregroundNominalColorDisabled.setRgb(163, 163, 163);
- foregroundWarningColorDisabled.setRgb(217, 217, 217);
- foregroundErrorColorDisabled.setRgb(113, 113, 113);
- clipColor.setRgb(0xff, 0xff, 0xff); // Bright white
- magnitudeColor.setRgb(0x00, 0x00, 0x00); // Black
- majorTickColor.setRgb(0xff, 0xff, 0xff); // Black
- minorTickColor.setRgb(0xcc, 0xcc, 0xcc); // Black
- minimumLevel = -60.0; // -60 dB
- warningLevel = -20.0; // -20 dB
- errorLevel = -9.0; // -9 dB
- clipLevel = -0.5; // -0.5 dB
- minimumInputLevel = -50.0; // -50 dB
- peakDecayRate = 11.76; // 20 dB / 1.7 sec
- magnitudeIntegrationTime = 0.3; // 99% in 300 ms
- peakHoldDuration = 20.0; // 20 seconds
- inputPeakHoldDuration = 1.0; // 1 second
- meterThickness = 3; // Bar thickness in pixels
- meterFontScaling =
- 0.7; // Font size for numbers is 70% of Widget's font size
- channels = (int)audio_output_get_channels(obs_get_audio());
- doLayout();
- updateTimerRef = updateTimer.toStrongRef();
- if (!updateTimerRef) {
- updateTimerRef = QSharedPointer<VolumeMeterTimer>::create();
- updateTimerRef->setTimerType(Qt::PreciseTimer);
- updateTimerRef->start(16);
- updateTimer = updateTimerRef;
- }
- updateTimerRef->AddVolControl(this);
- }
- VolumeMeter::~VolumeMeter()
- {
- updateTimerRef->RemoveVolControl(this);
- }
- void VolumeMeter::setLevels(const float magnitude[MAX_AUDIO_CHANNELS],
- const float peak[MAX_AUDIO_CHANNELS],
- const float inputPeak[MAX_AUDIO_CHANNELS])
- {
- uint64_t ts = os_gettime_ns();
- QMutexLocker locker(&dataMutex);
- currentLastUpdateTime = ts;
- for (int channelNr = 0; channelNr < MAX_AUDIO_CHANNELS; channelNr++) {
- currentMagnitude[channelNr] = magnitude[channelNr];
- currentPeak[channelNr] = peak[channelNr];
- currentInputPeak[channelNr] = inputPeak[channelNr];
- }
- // In case there are more updates then redraws we must make sure
- // that the ballistics of peak and hold are recalculated.
- locker.unlock();
- calculateBallistics(ts);
- }
- inline void VolumeMeter::resetLevels()
- {
- currentLastUpdateTime = 0;
- for (int channelNr = 0; channelNr < MAX_AUDIO_CHANNELS; channelNr++) {
- currentMagnitude[channelNr] = -M_INFINITE;
- currentPeak[channelNr] = -M_INFINITE;
- currentInputPeak[channelNr] = -M_INFINITE;
- displayMagnitude[channelNr] = -M_INFINITE;
- displayPeak[channelNr] = -M_INFINITE;
- displayPeakHold[channelNr] = -M_INFINITE;
- displayPeakHoldLastUpdateTime[channelNr] = 0;
- displayInputPeakHold[channelNr] = -M_INFINITE;
- displayInputPeakHoldLastUpdateTime[channelNr] = 0;
- }
- }
- bool VolumeMeter::needLayoutChange()
- {
- int currentNrAudioChannels = obs_volmeter_get_nr_channels(obs_volmeter);
- if (!currentNrAudioChannels) {
- struct obs_audio_info oai;
- obs_get_audio_info(&oai);
- currentNrAudioChannels = (oai.speakers == SPEAKERS_MONO) ? 1
- : 2;
- }
- if (displayNrAudioChannels != currentNrAudioChannels) {
- displayNrAudioChannels = currentNrAudioChannels;
- recalculateLayout = true;
- }
- return recalculateLayout;
- }
- // When this is called from the constructor, obs_volmeter_get_nr_channels has not
- // yet been called and Q_PROPERTY settings have not yet been read from the
- // stylesheet.
- inline void VolumeMeter::doLayout()
- {
- QMutexLocker locker(&dataMutex);
- recalculateLayout = false;
- tickFont = font();
- QFontInfo info(tickFont);
- tickFont.setPointSizeF(info.pointSizeF() * meterFontScaling);
- QFontMetrics metrics(tickFont);
- if (vertical) {
- // Each meter channel is meterThickness pixels wide, plus one pixel
- // between channels, but not after the last.
- // Add 4 pixels for ticks, space to hold our longest label in this font,
- // and a few pixels before the fader.
- QRect scaleBounds = metrics.boundingRect("-88");
- setMinimumSize(displayNrAudioChannels * (meterThickness + 1) -
- 1 + 4 + scaleBounds.width() + 2,
- 130);
- } else {
- // Each meter channel is meterThickness pixels high, plus one pixel
- // between channels, but not after the last.
- // Add 4 pixels for ticks, and space high enough to hold our label in
- // this font, presuming that digits don't have descenders.
- setMinimumSize(130,
- displayNrAudioChannels * (meterThickness + 1) -
- 1 + 4 + metrics.capHeight());
- }
- resetLevels();
- }
- inline bool VolumeMeter::detectIdle(uint64_t ts)
- {
- double timeSinceLastUpdate = (ts - currentLastUpdateTime) * 0.000000001;
- if (timeSinceLastUpdate > 0.5) {
- resetLevels();
- return true;
- } else {
- return false;
- }
- }
- inline void
- VolumeMeter::calculateBallisticsForChannel(int channelNr, uint64_t ts,
- qreal timeSinceLastRedraw)
- {
- if (currentPeak[channelNr] >= displayPeak[channelNr] ||
- isnan(displayPeak[channelNr])) {
- // Attack of peak is immediate.
- displayPeak[channelNr] = currentPeak[channelNr];
- } else {
- // Decay of peak is 40 dB / 1.7 seconds for Fast Profile
- // 20 dB / 1.7 seconds for Medium Profile (Type I PPM)
- // 24 dB / 2.8 seconds for Slow Profile (Type II PPM)
- float decay = float(peakDecayRate * timeSinceLastRedraw);
- displayPeak[channelNr] = CLAMP(displayPeak[channelNr] - decay,
- currentPeak[channelNr], 0);
- }
- if (currentPeak[channelNr] >= displayPeakHold[channelNr] ||
- !isfinite(displayPeakHold[channelNr])) {
- // Attack of peak-hold is immediate, but keep track
- // when it was last updated.
- displayPeakHold[channelNr] = currentPeak[channelNr];
- displayPeakHoldLastUpdateTime[channelNr] = ts;
- } else {
- // The peak and hold falls back to peak
- // after 20 seconds.
- qreal timeSinceLastPeak =
- (uint64_t)(ts -
- displayPeakHoldLastUpdateTime[channelNr]) *
- 0.000000001;
- if (timeSinceLastPeak > peakHoldDuration) {
- displayPeakHold[channelNr] = currentPeak[channelNr];
- displayPeakHoldLastUpdateTime[channelNr] = ts;
- }
- }
- if (currentInputPeak[channelNr] >= displayInputPeakHold[channelNr] ||
- !isfinite(displayInputPeakHold[channelNr])) {
- // Attack of peak-hold is immediate, but keep track
- // when it was last updated.
- displayInputPeakHold[channelNr] = currentInputPeak[channelNr];
- displayInputPeakHoldLastUpdateTime[channelNr] = ts;
- } else {
- // The peak and hold falls back to peak after 1 second.
- qreal timeSinceLastPeak =
- (uint64_t)(ts -
- displayInputPeakHoldLastUpdateTime[channelNr]) *
- 0.000000001;
- if (timeSinceLastPeak > inputPeakHoldDuration) {
- displayInputPeakHold[channelNr] =
- currentInputPeak[channelNr];
- displayInputPeakHoldLastUpdateTime[channelNr] = ts;
- }
- }
- if (!isfinite(displayMagnitude[channelNr])) {
- // The statements in the else-leg do not work with
- // NaN and infinite displayMagnitude.
- displayMagnitude[channelNr] = currentMagnitude[channelNr];
- } else {
- // A VU meter will integrate to the new value to 99% in 300 ms.
- // The calculation here is very simplified and is more accurate
- // with higher frame-rate.
- float attack =
- float((currentMagnitude[channelNr] -
- displayMagnitude[channelNr]) *
- (timeSinceLastRedraw / magnitudeIntegrationTime) *
- 0.99);
- displayMagnitude[channelNr] =
- CLAMP(displayMagnitude[channelNr] + attack,
- (float)minimumLevel, 0);
- }
- }
- inline void VolumeMeter::calculateBallistics(uint64_t ts,
- qreal timeSinceLastRedraw)
- {
- QMutexLocker locker(&dataMutex);
- for (int channelNr = 0; channelNr < MAX_AUDIO_CHANNELS; channelNr++)
- calculateBallisticsForChannel(channelNr, ts,
- timeSinceLastRedraw);
- }
- void VolumeMeter::paintInputMeter(QPainter &painter, int x, int y, int width,
- int height, float peakHold)
- {
- QMutexLocker locker(&dataMutex);
- QColor color;
- if (peakHold < minimumInputLevel)
- color = backgroundNominalColor;
- else if (peakHold < warningLevel)
- color = foregroundNominalColor;
- else if (peakHold < errorLevel)
- color = foregroundWarningColor;
- else if (peakHold <= clipLevel)
- color = foregroundErrorColor;
- else
- color = clipColor;
- painter.fillRect(x, y, width, height, color);
- }
- void VolumeMeter::paintHTicks(QPainter &painter, int x, int y, int width)
- {
- qreal scale = width / minimumLevel;
- painter.setFont(tickFont);
- QFontMetrics metrics(tickFont);
- painter.setPen(majorTickColor);
- // Draw major tick lines and numeric indicators.
- for (int i = 0; i >= minimumLevel; i -= 5) {
- int position = int(x + width - (i * scale) - 1);
- QString str = QString::number(i);
- // Center the number on the tick, but don't overflow
- QRect textBounds = metrics.boundingRect(str);
- int pos;
- if (i == 0) {
- pos = position - textBounds.width();
- } else {
- pos = position - (textBounds.width() / 2);
- if (pos < 0)
- pos = 0;
- }
- painter.drawText(pos, y + 4 + metrics.capHeight(), str);
- painter.drawLine(position, y, position, y + 2);
- }
- // Draw minor tick lines.
- painter.setPen(minorTickColor);
- for (int i = 0; i >= minimumLevel; i--) {
- int position = int(x + width - (i * scale) - 1);
- if (i % 5 != 0)
- painter.drawLine(position, y, position, y + 1);
- }
- }
- void VolumeMeter::paintVTicks(QPainter &painter, int x, int y, int height)
- {
- qreal scale = height / minimumLevel;
- painter.setFont(tickFont);
- QFontMetrics metrics(tickFont);
- painter.setPen(majorTickColor);
- // Draw major tick lines and numeric indicators.
- for (int i = 0; i >= minimumLevel; i -= 5) {
- int position = y + int(i * scale) + METER_PADDING;
- QString str = QString::number(i);
- // Center the number on the tick, but don't overflow
- if (i == 0) {
- painter.drawText(x + 6, position + metrics.capHeight(),
- str);
- } else {
- painter.drawText(x + 4,
- position + (metrics.capHeight() / 2),
- str);
- }
- painter.drawLine(x, position, x + 2, position);
- }
- // Draw minor tick lines.
- painter.setPen(minorTickColor);
- for (int i = 0; i >= minimumLevel; i--) {
- int position = y + int(i * scale) + METER_PADDING;
- if (i % 5 != 0)
- painter.drawLine(x, position, x + 1, position);
- }
- }
- #define CLIP_FLASH_DURATION_MS 1000
- void VolumeMeter::ClipEnding()
- {
- clipping = false;
- }
- inline int VolumeMeter::convertToInt(float number)
- {
- constexpr int min = std::numeric_limits<int>::min();
- constexpr int max = std::numeric_limits<int>::max();
- if (number > max)
- return max;
- else if (number < min)
- return min;
- else
- return int(number);
- }
- void VolumeMeter::paintHMeter(QPainter &painter, int x, int y, int width,
- int height, float magnitude, float peak,
- float peakHold)
- {
- qreal scale = width / minimumLevel;
- QMutexLocker locker(&dataMutex);
- int minimumPosition = x + 0;
- int maximumPosition = x + width;
- int magnitudePosition = x + width - convertToInt(magnitude * scale);
- int peakPosition = x + width - convertToInt(peak * scale);
- int peakHoldPosition = x + width - convertToInt(peakHold * scale);
- int warningPosition = x + width - convertToInt(warningLevel * scale);
- int errorPosition = x + width - convertToInt(errorLevel * scale);
- int nominalLength = warningPosition - minimumPosition;
- int warningLength = errorPosition - warningPosition;
- int errorLength = maximumPosition - errorPosition;
- locker.unlock();
- if (clipping) {
- peakPosition = maximumPosition;
- }
- if (peakPosition < minimumPosition) {
- painter.fillRect(minimumPosition, y, nominalLength, height,
- muted ? backgroundNominalColorDisabled
- : backgroundNominalColor);
- painter.fillRect(warningPosition, y, warningLength, height,
- muted ? backgroundWarningColorDisabled
- : backgroundWarningColor);
- painter.fillRect(errorPosition, y, errorLength, height,
- muted ? backgroundErrorColorDisabled
- : backgroundErrorColor);
- } else if (peakPosition < warningPosition) {
- painter.fillRect(minimumPosition, y,
- peakPosition - minimumPosition, height,
- muted ? foregroundNominalColorDisabled
- : foregroundNominalColor);
- painter.fillRect(peakPosition, y,
- warningPosition - peakPosition, height,
- muted ? backgroundNominalColorDisabled
- : backgroundNominalColor);
- painter.fillRect(warningPosition, y, warningLength, height,
- muted ? backgroundWarningColorDisabled
- : backgroundWarningColor);
- painter.fillRect(errorPosition, y, errorLength, height,
- muted ? backgroundErrorColorDisabled
- : backgroundErrorColor);
- } else if (peakPosition < errorPosition) {
- painter.fillRect(minimumPosition, y, nominalLength, height,
- muted ? foregroundNominalColorDisabled
- : foregroundNominalColor);
- painter.fillRect(warningPosition, y,
- peakPosition - warningPosition, height,
- muted ? foregroundWarningColorDisabled
- : foregroundWarningColor);
- painter.fillRect(peakPosition, y, errorPosition - peakPosition,
- height,
- muted ? backgroundWarningColorDisabled
- : backgroundWarningColor);
- painter.fillRect(errorPosition, y, errorLength, height,
- muted ? backgroundErrorColorDisabled
- : backgroundErrorColor);
- } else if (peakPosition < maximumPosition) {
- painter.fillRect(minimumPosition, y, nominalLength, height,
- muted ? foregroundNominalColorDisabled
- : foregroundNominalColor);
- painter.fillRect(warningPosition, y, warningLength, height,
- muted ? foregroundWarningColorDisabled
- : foregroundWarningColor);
- painter.fillRect(errorPosition, y, peakPosition - errorPosition,
- height,
- muted ? foregroundErrorColorDisabled
- : foregroundErrorColor);
- painter.fillRect(peakPosition, y,
- maximumPosition - peakPosition, height,
- muted ? backgroundErrorColorDisabled
- : backgroundErrorColor);
- } else if (int(magnitude) != 0) {
- if (!clipping) {
- QTimer::singleShot(CLIP_FLASH_DURATION_MS, this,
- SLOT(ClipEnding()));
- clipping = true;
- }
- int end = errorLength + warningLength + nominalLength;
- painter.fillRect(minimumPosition, y, end, height,
- QBrush(muted ? foregroundErrorColorDisabled
- : foregroundErrorColor));
- }
- if (peakHoldPosition - 3 < minimumPosition)
- ; // Peak-hold below minimum, no drawing.
- else if (peakHoldPosition < warningPosition)
- painter.fillRect(peakHoldPosition - 3, y, 3, height,
- muted ? foregroundNominalColorDisabled
- : foregroundNominalColor);
- else if (peakHoldPosition < errorPosition)
- painter.fillRect(peakHoldPosition - 3, y, 3, height,
- muted ? foregroundWarningColorDisabled
- : foregroundWarningColor);
- else
- painter.fillRect(peakHoldPosition - 3, y, 3, height,
- muted ? foregroundErrorColorDisabled
- : foregroundErrorColor);
- if (magnitudePosition - 3 >= minimumPosition)
- painter.fillRect(magnitudePosition - 3, y, 3, height,
- magnitudeColor);
- }
- void VolumeMeter::paintVMeter(QPainter &painter, int x, int y, int width,
- int height, float magnitude, float peak,
- float peakHold)
- {
- qreal scale = height / minimumLevel;
- QMutexLocker locker(&dataMutex);
- int minimumPosition = y + 0;
- int maximumPosition = y + height;
- int magnitudePosition = y + height - convertToInt(magnitude * scale);
- int peakPosition = y + height - convertToInt(peak * scale);
- int peakHoldPosition = y + height - convertToInt(peakHold * scale);
- int warningPosition = y + height - convertToInt(warningLevel * scale);
- int errorPosition = y + height - convertToInt(errorLevel * scale);
- int nominalLength = warningPosition - minimumPosition;
- int warningLength = errorPosition - warningPosition;
- int errorLength = maximumPosition - errorPosition;
- locker.unlock();
- if (clipping) {
- peakPosition = maximumPosition;
- }
- if (peakPosition < minimumPosition) {
- painter.fillRect(x, minimumPosition, width, nominalLength,
- muted ? backgroundNominalColorDisabled
- : backgroundNominalColor);
- painter.fillRect(x, warningPosition, width, warningLength,
- muted ? backgroundWarningColorDisabled
- : backgroundWarningColor);
- painter.fillRect(x, errorPosition, width, errorLength,
- muted ? backgroundErrorColorDisabled
- : backgroundErrorColor);
- } else if (peakPosition < warningPosition) {
- painter.fillRect(x, minimumPosition, width,
- peakPosition - minimumPosition,
- muted ? foregroundNominalColorDisabled
- : foregroundNominalColor);
- painter.fillRect(x, peakPosition, width,
- warningPosition - peakPosition,
- muted ? backgroundNominalColorDisabled
- : backgroundNominalColor);
- painter.fillRect(x, warningPosition, width, warningLength,
- muted ? backgroundWarningColorDisabled
- : backgroundWarningColor);
- painter.fillRect(x, errorPosition, width, errorLength,
- muted ? backgroundErrorColorDisabled
- : backgroundErrorColor);
- } else if (peakPosition < errorPosition) {
- painter.fillRect(x, minimumPosition, width, nominalLength,
- muted ? foregroundNominalColorDisabled
- : foregroundNominalColor);
- painter.fillRect(x, warningPosition, width,
- peakPosition - warningPosition,
- muted ? foregroundWarningColorDisabled
- : foregroundWarningColor);
- painter.fillRect(x, peakPosition, width,
- errorPosition - peakPosition,
- muted ? backgroundWarningColorDisabled
- : backgroundWarningColor);
- painter.fillRect(x, errorPosition, width, errorLength,
- muted ? backgroundErrorColorDisabled
- : backgroundErrorColor);
- } else if (peakPosition < maximumPosition) {
- painter.fillRect(x, minimumPosition, width, nominalLength,
- muted ? foregroundNominalColorDisabled
- : foregroundNominalColor);
- painter.fillRect(x, warningPosition, width, warningLength,
- muted ? foregroundWarningColorDisabled
- : foregroundWarningColor);
- painter.fillRect(x, errorPosition, width,
- peakPosition - errorPosition,
- muted ? foregroundErrorColorDisabled
- : foregroundErrorColor);
- painter.fillRect(x, peakPosition, width,
- maximumPosition - peakPosition,
- muted ? backgroundErrorColorDisabled
- : backgroundErrorColor);
- } else {
- if (!clipping) {
- QTimer::singleShot(CLIP_FLASH_DURATION_MS, this,
- SLOT(ClipEnding()));
- clipping = true;
- }
- int end = errorLength + warningLength + nominalLength;
- painter.fillRect(x, minimumPosition, width, end,
- QBrush(muted ? foregroundErrorColorDisabled
- : foregroundErrorColor));
- }
- if (peakHoldPosition - 3 < minimumPosition)
- ; // Peak-hold below minimum, no drawing.
- else if (peakHoldPosition < warningPosition)
- painter.fillRect(x, peakHoldPosition - 3, width, 3,
- muted ? foregroundNominalColorDisabled
- : foregroundNominalColor);
- else if (peakHoldPosition < errorPosition)
- painter.fillRect(x, peakHoldPosition - 3, width, 3,
- muted ? foregroundWarningColorDisabled
- : foregroundWarningColor);
- else
- painter.fillRect(x, peakHoldPosition - 3, width, 3,
- muted ? foregroundErrorColorDisabled
- : foregroundErrorColor);
- if (magnitudePosition - 3 >= minimumPosition)
- painter.fillRect(x, magnitudePosition - 3, width, 3,
- magnitudeColor);
- }
- void VolumeMeter::paintEvent(QPaintEvent *event)
- {
- uint64_t ts = os_gettime_ns();
- qreal timeSinceLastRedraw = (ts - lastRedrawTime) * 0.000000001;
- calculateBallistics(ts, timeSinceLastRedraw);
- bool idle = detectIdle(ts);
- QRect widgetRect = rect();
- int width = widgetRect.width();
- int height = widgetRect.height();
- QPainter painter(this);
- if (vertical)
- height -= METER_PADDING * 2;
- // timerEvent requests update of the bar(s) only, so we can avoid the
- // overhead of repainting the scale and labels.
- if (event->region().boundingRect() != getBarRect()) {
- if (needLayoutChange())
- doLayout();
- // Paint window background color (as widget is opaque)
- QColor background =
- palette().color(QPalette::ColorRole::Window);
- painter.fillRect(widgetRect, background);
- if (vertical) {
- paintVTicks(painter,
- displayNrAudioChannels *
- (meterThickness + 1) -
- 1,
- 0, height - (INDICATOR_THICKNESS + 3));
- } else {
- paintHTicks(painter, INDICATOR_THICKNESS + 3,
- displayNrAudioChannels *
- (meterThickness + 1) -
- 1,
- width - (INDICATOR_THICKNESS + 3));
- }
- }
- if (vertical) {
- // Invert the Y axis to ease the math
- painter.translate(0, height + METER_PADDING);
- painter.scale(1, -1);
- }
- for (int channelNr = 0; channelNr < displayNrAudioChannels;
- channelNr++) {
- int channelNrFixed =
- (displayNrAudioChannels == 1 && channels > 2)
- ? 2
- : channelNr;
- if (vertical)
- paintVMeter(painter, channelNr * (meterThickness + 1),
- INDICATOR_THICKNESS + 2, meterThickness,
- height - (INDICATOR_THICKNESS + 2),
- displayMagnitude[channelNrFixed],
- displayPeak[channelNrFixed],
- displayPeakHold[channelNrFixed]);
- else
- paintHMeter(painter, INDICATOR_THICKNESS + 2,
- channelNr * (meterThickness + 1),
- width - (INDICATOR_THICKNESS + 2),
- meterThickness,
- displayMagnitude[channelNrFixed],
- displayPeak[channelNrFixed],
- displayPeakHold[channelNrFixed]);
- if (idle)
- continue;
- // By not drawing the input meter boxes the user can
- // see that the audio stream has been stopped, without
- // having too much visual impact.
- if (vertical)
- paintInputMeter(painter,
- channelNr * (meterThickness + 1), 0,
- meterThickness, INDICATOR_THICKNESS,
- displayInputPeakHold[channelNrFixed]);
- else
- paintInputMeter(painter, 0,
- channelNr * (meterThickness + 1),
- INDICATOR_THICKNESS, meterThickness,
- displayInputPeakHold[channelNrFixed]);
- }
- lastRedrawTime = ts;
- }
- QRect VolumeMeter::getBarRect() const
- {
- QRect rec = rect();
- if (vertical)
- rec.setWidth(displayNrAudioChannels * (meterThickness + 1) - 1);
- else
- rec.setHeight(displayNrAudioChannels * (meterThickness + 1) -
- 1);
- return rec;
- }
- void VolumeMeter::changeEvent(QEvent *e)
- {
- if (e->type() == QEvent::StyleChange)
- recalculateLayout = true;
- QWidget::changeEvent(e);
- }
- void VolumeMeterTimer::AddVolControl(VolumeMeter *meter)
- {
- volumeMeters.push_back(meter);
- }
- void VolumeMeterTimer::RemoveVolControl(VolumeMeter *meter)
- {
- volumeMeters.removeOne(meter);
- }
- void VolumeMeterTimer::timerEvent(QTimerEvent *)
- {
- for (VolumeMeter *meter : volumeMeters) {
- if (meter->needLayoutChange()) {
- // Tell paintEvent to update layout and paint everything
- meter->update();
- } else {
- // Tell paintEvent to paint only the bars
- meter->update(meter->getBarRect());
- }
- }
- }
|