mirror of
https://github.com/vale981/tdesktop
synced 2025-03-08 11:11:39 -05:00

Currently the build without implicitly included precompiled header is not supported anyway (because Qt MOC source files do not include stdafx.h, they include plain headers). So when we decide to support building without implicitly included precompiled headers we'll have to fix all the headers anyway.
112 lines
3.4 KiB
C++
112 lines
3.4 KiB
C++
/*
|
|
This file is part of Telegram Desktop,
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
|
|
|
Telegram Desktop 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 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
It 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.
|
|
|
|
In addition, as a special exception, the copyright holders give permission
|
|
to link the code of portions of this program with the OpenSSL library.
|
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
|
Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
|
*/
|
|
#include "media/view/media_clip_volume_controller.h"
|
|
|
|
#include "styles/style_mediaview.h"
|
|
|
|
namespace Media {
|
|
namespace Clip {
|
|
|
|
VolumeController::VolumeController(QWidget *parent) : TWidget(parent) {
|
|
resize(st::mediaviewVolumeSize);
|
|
setCursor(style::cur_pointer);
|
|
setMouseTracking(true);
|
|
}
|
|
|
|
void VolumeController::setVolume(float64 volume) {
|
|
_volume = volume;
|
|
update();
|
|
}
|
|
|
|
void VolumeController::paintEvent(QPaintEvent *e) {
|
|
Painter p(this);
|
|
|
|
int32 top = st::mediaviewVolumeIconTop;
|
|
int32 left = (width() - st::mediaviewVolumeIcon.width()) / 2;
|
|
int32 mid = left + qRound(st::mediaviewVolumeIcon.width() * _volume);
|
|
int32 right = left + st::mediaviewVolumeIcon.width();
|
|
|
|
if (mid > left) {
|
|
p.setClipRect(rtlrect(left, top, mid - left, st::mediaviewVolumeIcon.height(), width()));
|
|
auto over = _a_over.current(getms(), _over ? 1. : 0.);
|
|
if (over < 1.) {
|
|
st::mediaviewVolumeOnIcon.paint(p, QPoint(left, top), width());
|
|
}
|
|
if (over > 0.) {
|
|
p.setOpacity(over);
|
|
st::mediaviewVolumeOnIconOver.paint(p, QPoint(left, top), width());
|
|
p.setOpacity(1.);
|
|
}
|
|
}
|
|
if (right > mid) {
|
|
p.setClipRect(rtlrect(mid, top, right - mid, st::mediaviewVolumeIcon.height(), width()));
|
|
st::mediaviewVolumeIcon.paint(p, QPoint(left, top), width());
|
|
}
|
|
}
|
|
|
|
void VolumeController::mouseMoveEvent(QMouseEvent *e) {
|
|
if (_downCoord < 0) {
|
|
return;
|
|
}
|
|
int delta = e->pos().x() - _downCoord;
|
|
int left = (width() - st::mediaviewVolumeIcon.width()) / 2;
|
|
float64 startFrom = snap((_downCoord - left) / float64(st::mediaviewVolumeIcon.width()), 0., 1.);
|
|
float64 add = delta / float64(4 * st::mediaviewVolumeIcon.width());
|
|
auto newVolume = snap(startFrom + add, 0., 1.);
|
|
changeVolume(newVolume);
|
|
}
|
|
|
|
void VolumeController::mousePressEvent(QMouseEvent *e) {
|
|
_downCoord = snap(e->pos().x(), 0, width());
|
|
int left = (width() - st::mediaviewVolumeIcon.width()) / 2;
|
|
auto newVolume = snap((_downCoord - left) / float64(st::mediaviewVolumeIcon.width()), 0., 1.);
|
|
changeVolume(newVolume);
|
|
}
|
|
|
|
void VolumeController::changeVolume(float64 newVolume) {
|
|
if (newVolume != _volume) {
|
|
setVolume(newVolume);
|
|
emit volumeChanged(_volume);
|
|
}
|
|
}
|
|
|
|
void VolumeController::mouseReleaseEvent(QMouseEvent *e) {
|
|
_downCoord = -1;
|
|
}
|
|
|
|
void VolumeController::enterEventHook(QEvent *e) {
|
|
setOver(true);
|
|
}
|
|
|
|
void VolumeController::leaveEventHook(QEvent *e) {
|
|
setOver(false);
|
|
}
|
|
|
|
void VolumeController::setOver(bool over) {
|
|
if (_over == over) return;
|
|
|
|
_over = over;
|
|
auto from = _over ? 0. : 1., to = _over ? 1. : 0.;
|
|
_a_over.start([this] { update(); }, from, to, st::mediaviewOverDuration);
|
|
}
|
|
|
|
} // namespace Clip
|
|
} // namespace Media
|