Version 0.10.15 alpha: crash fix in new player, close button added.

Also some grammar improvements and pinned message bar hiding fixed.
This commit is contained in:
John Preston 2016-10-18 18:19:13 +03:00
parent b33b59b8b9
commit 48a20f0e71
18 changed files with 132 additions and 62 deletions

View File

@ -976,7 +976,7 @@ Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
"lng_new_version_wrap" = "Telegram Desktop was updated to version {version}\n\n{changes}\n\nFull version history is available here:\n{link}"; "lng_new_version_wrap" = "Telegram Desktop was updated to version {version}\n\n{changes}\n\nFull version history is available here:\n{link}";
"lng_new_version_minor" = "— Bug fixes and other minor improvements"; "lng_new_version_minor" = "— Bug fixes and other minor improvements";
"lng_new_version_text" = "— New audio player design\n\nWindows and Linux:\n— Quick reply from notifications\n— Hide all notifications button added\n— Change notifications location and maximum count\n\nWindows 10:\n— Respecting quite hours for the notifications\n\nLinux:\n— You can enable native notifications in Settings"; "lng_new_version_text" = "— New audio player design\n\nWindows and Linux:\n— Quick reply from notifications\n— Hide all notifications button added\n— Change notifications location and maximum count\n\nWindows 10:\n— Respecting quiet hours for the notifications\n\nLinux:\n— You can enable native notifications in Settings";
"lng_menu_insert_unicode" = "Insert Unicode control character"; "lng_menu_insert_unicode" = "Insert Unicode control character";

View File

@ -34,8 +34,8 @@ IDI_ICON1 ICON "..\\art\\icon256.ico"
// //
VS_VERSION_INFO VERSIONINFO VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,10,14,0 FILEVERSION 0,10,15,0
PRODUCTVERSION 0,10,14,0 PRODUCTVERSION 0,10,15,0
FILEFLAGSMASK 0x3fL FILEFLAGSMASK 0x3fL
#ifdef _DEBUG #ifdef _DEBUG
FILEFLAGS 0x1L FILEFLAGS 0x1L
@ -51,10 +51,10 @@ BEGIN
BLOCK "040904b0" BLOCK "040904b0"
BEGIN BEGIN
VALUE "CompanyName", "Telegram Messenger LLP" VALUE "CompanyName", "Telegram Messenger LLP"
VALUE "FileVersion", "0.10.14.0" VALUE "FileVersion", "0.10.15.0"
VALUE "LegalCopyright", "Copyright (C) 2014-2016" VALUE "LegalCopyright", "Copyright (C) 2014-2016"
VALUE "ProductName", "Telegram Desktop" VALUE "ProductName", "Telegram Desktop"
VALUE "ProductVersion", "0.10.14.0" VALUE "ProductVersion", "0.10.15.0"
END END
END END
BLOCK "VarFileInfo" BLOCK "VarFileInfo"

View File

@ -25,8 +25,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
// //
VS_VERSION_INFO VERSIONINFO VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,10,14,0 FILEVERSION 0,10,15,0
PRODUCTVERSION 0,10,14,0 PRODUCTVERSION 0,10,15,0
FILEFLAGSMASK 0x3fL FILEFLAGSMASK 0x3fL
#ifdef _DEBUG #ifdef _DEBUG
FILEFLAGS 0x1L FILEFLAGS 0x1L
@ -43,10 +43,10 @@ BEGIN
BEGIN BEGIN
VALUE "CompanyName", "Telegram Messenger LLP" VALUE "CompanyName", "Telegram Messenger LLP"
VALUE "FileDescription", "Telegram Updater" VALUE "FileDescription", "Telegram Updater"
VALUE "FileVersion", "0.10.14.0" VALUE "FileVersion", "0.10.15.0"
VALUE "LegalCopyright", "Copyright (C) 2014-2016" VALUE "LegalCopyright", "Copyright (C) 2014-2016"
VALUE "ProductName", "Telegram Desktop" VALUE "ProductName", "Telegram Desktop"
VALUE "ProductVersion", "0.10.14.0" VALUE "ProductVersion", "0.10.15.0"
END END
END END
BLOCK "VarFileInfo" BLOCK "VarFileInfo"

View File

@ -1087,7 +1087,7 @@ void AppClass::checkMapVersion() {
if (Local::oldMapVersion()) { if (Local::oldMapVersion()) {
QString versionFeatures; QString versionFeatures;
if ((cAlphaVersion() || cBetaVersion()) && Local::oldMapVersion() < 10014) { if ((cAlphaVersion() || cBetaVersion()) && Local::oldMapVersion() < 10014) {
versionFeatures = QString::fromUtf8("\xe2\x80\x94 New audio player design\n\xe2\x80\x94 Moved to Qt library version 5.6.2\n\nWindows 10:\n\xe2\x80\x94 Respecting quite hours for the notifications"); versionFeatures = QString::fromUtf8("\xe2\x80\x94 New audio player design\n\xe2\x80\x94 Moved to Qt library version 5.6.2\n\nWindows 10:\n\xe2\x80\x94 Respecting quiet hours for the notifications");
} else if (!(cAlphaVersion() || cBetaVersion()) && Local::oldMapVersion() < 10005) { } else if (!(cAlphaVersion() || cBetaVersion()) && Local::oldMapVersion() < 10005) {
versionFeatures = langNewVersionText(); versionFeatures = langNewVersionText();
} else { } else {

View File

@ -24,7 +24,7 @@ Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
#define BETA_VERSION_MACRO (0ULL) #define BETA_VERSION_MACRO (0ULL)
constexpr int AppVersion = 10014; constexpr int AppVersion = 10015;
constexpr str_const AppVersionStr = "0.10.14"; constexpr str_const AppVersionStr = "0.10.15";
constexpr bool AppAlphaVersion = true; constexpr bool AppAlphaVersion = true;
constexpr uint64 AppBetaVersion = BETA_VERSION_MACRO; constexpr uint64 AppBetaVersion = BETA_VERSION_MACRO;

View File

@ -4190,7 +4190,7 @@ void HistoryWidget::showHistory(const PeerId &peerId, MsgId showAtMsgId, bool re
_history->showAtMsgId = _showAtMsgId; _history->showAtMsgId = _showAtMsgId;
destroyUnreadBar(); destroyUnreadBar();
if (_pinnedBar) destroyPinnedBar(); destroyPinnedBar();
_history = _migrated = nullptr; _history = _migrated = nullptr;
updateBotKeyboard(); updateBotKeyboard();
} }
@ -7560,6 +7560,11 @@ HistoryWidget::PinnedBar::PinnedBar(MsgId msgId, HistoryWidget *parent)
, shadow(parent, st::shadowColor) { , shadow(parent, st::shadowColor) {
} }
HistoryWidget::PinnedBar::~PinnedBar() {
cancel.destroyDelayed();
shadow.destroyDelayed();
}
void HistoryWidget::updatePinnedBar(bool force) { void HistoryWidget::updatePinnedBar(bool force) {
if (!_pinnedBar) { if (!_pinnedBar) {
return; return;
@ -7603,7 +7608,7 @@ bool HistoryWidget::pinnedMsgVisibilityUpdated() {
} }
if (pinnedMsgId) { if (pinnedMsgId) {
if (!_pinnedBar) { if (!_pinnedBar) {
_pinnedBar = new PinnedBar(pinnedMsgId, this); _pinnedBar = std_::make_unique<PinnedBar>(pinnedMsgId, this);
if (_a_show.animating()) { if (_a_show.animating()) {
_pinnedBar->cancel->hide(); _pinnedBar->cancel->hide();
_pinnedBar->shadow->hide(); _pinnedBar->shadow->hide();
@ -7650,8 +7655,7 @@ bool HistoryWidget::pinnedMsgVisibilityUpdated() {
} }
void HistoryWidget::destroyPinnedBar() { void HistoryWidget::destroyPinnedBar() {
delete _pinnedBar; _pinnedBar.reset();
_pinnedBar = nullptr;
_inPinnedMsg = false; _inPinnedMsg = false;
} }
@ -8881,6 +8885,5 @@ bool HistoryWidget::touchScroll(const QPoint &delta) {
} }
HistoryWidget::~HistoryWidget() { HistoryWidget::~HistoryWidget() {
delete base::take(_pinnedBar);
delete base::take(_list); delete base::take(_list);
} }

View File

@ -886,6 +886,7 @@ private:
struct PinnedBar { struct PinnedBar {
PinnedBar(MsgId msgId, HistoryWidget *parent); PinnedBar(MsgId msgId, HistoryWidget *parent);
~PinnedBar();
MsgId msgId = 0; MsgId msgId = 0;
HistoryItem *msg = nullptr; HistoryItem *msg = nullptr;
@ -893,7 +894,7 @@ private:
ChildWidget<IconedButton> cancel; ChildWidget<IconedButton> cancel;
ChildWidget<Ui::PlainShadow> shadow; ChildWidget<Ui::PlainShadow> shadow;
}; };
PinnedBar *_pinnedBar = nullptr; std_::unique_ptr<PinnedBar> _pinnedBar;
void updatePinnedBar(bool force = false); void updatePinnedBar(bool force = false);
bool pinnedMsgVisibilityUpdated(); bool pinnedMsgVisibilityUpdated();
void destroyPinnedBar(); void destroyPinnedBar();

View File

@ -124,6 +124,7 @@ MainWidget::MainWidget(MainWindow *window) : TWidget(window)
if (Media::Player::exists()) { if (Media::Player::exists()) {
_playerPanel->setPinCallback([this] { switchToFixedPlayer(); }); _playerPanel->setPinCallback([this] { switchToFixedPlayer(); });
_playerPanel->setCloseCallback([this] { closeBothPlayers(); });
subscribe(Media::Player::instance()->titleButtonOver(), [this](bool over) { subscribe(Media::Player::instance()->titleButtonOver(), [this](bool over) {
if (over) { if (over) {
_playerPanel->showFromOther(); _playerPanel->showFromOther();
@ -1578,8 +1579,10 @@ void MainWidget::handleAudioUpdate(const AudioMsgId &audioId) {
} }
if (playing == audioId && audioId.type() == AudioMsgId::Type::Song) { if (playing == audioId && audioId.type() == AudioMsgId::Type::Song) {
if (!_playerUsingPanel && !_player && Media::Player::exists()) { if (!(playbackState.state & AudioPlayerStoppedMask) && playbackState.state != AudioPlayerFinishing) {
createPlayer(); if (!_playerUsingPanel && !_player && Media::Player::exists()) {
createPlayer();
}
} }
} }
@ -1623,6 +1626,22 @@ void MainWidget::switchToFixedPlayer() {
_playerPanel->hideIgnoringEnterEvents(); _playerPanel->hideIgnoringEnterEvents();
} }
void MainWidget::closeBothPlayers() {
_playerUsingPanel = false;
_player.destroyDelayed();
_playerVolume.destroyDelayed();
if (Media::Player::exists()) {
Media::Player::instance()->usePanelPlayer().notify(false, true);
}
_playerPanel->hideIgnoringEnterEvents();
_playerPlaylist->hideIgnoringEnterEvents();
if (Media::Player::exists()) {
Media::Player::instance()->stop();
}
}
void MainWidget::createPlayer() { void MainWidget::createPlayer() {
_player.create(this, [this] { playerHeightUpdated(); }); _player.create(this, [this] { playerHeightUpdated(); });
_player->entity()->setCloseCallback([this] { switchToPanelPlayer(); }); _player->entity()->setCloseCallback([this] { switchToPanelPlayer(); });

View File

@ -491,6 +491,7 @@ private:
void createPlayer(); void createPlayer();
void switchToPanelPlayer(); void switchToPanelPlayer();
void switchToFixedPlayer(); void switchToFixedPlayer();
void closeBothPlayers();
void playerHeightUpdated(); void playerHeightUpdated();
void sendReadRequest(PeerData *peer, MsgId upTo); void sendReadRequest(PeerData *peer, MsgId upTo);

View File

@ -143,9 +143,7 @@ mediaPlayerPreviousDisabledIcon: icon {
}; };
mediaPlayerClose: IconButton(mediaPlayerRepeatButton) { mediaPlayerClose: IconButton(mediaPlayerRepeatButton) {
width: 37px; width: 37px;
icon: icon { icon: icon {{ "player_close", #c8c8c8, point(10px, 12px) }};
{ "player_close", #c8c8c8, point(10px, 12px) },
};
} }
mediaPlayerPlayback: FilledSlider { mediaPlayerPlayback: FilledSlider {
fullWidth: 6px; fullWidth: 6px;
@ -190,25 +188,27 @@ mediaPlayerPanelMarginBottom: 10px;
mediaPlayerPanelWidth: 344px; mediaPlayerPanelWidth: 344px;
mediaPlayerCoverHeight: 102px; mediaPlayerCoverHeight: 102px;
mediaPlayerPanelClose: IconButton(mediaPlayerClose) {
width: 43px;
height: 28px;
icon: icon {{ "player_close", #c8c8c8, point(16px, 14px) }};
}
mediaPlayerPanelNextButton: IconButton(mediaPlayerRepeatButton) { mediaPlayerPanelNextButton: IconButton(mediaPlayerRepeatButton) {
width: 37px; width: 37px;
icon: icon { icon: icon {{ "player_panel_next", mediaPlayerActiveFg, point(10px, 10px) }};
{ "player_panel_next", mediaPlayerActiveFg, point(10px, 10px) },
};
} }
mediaPlayerPanelNextDisabledIcon: icon { mediaPlayerPanelNextDisabledIcon: icon {
{ "player_panel_next", mediaPlayerInactiveFg, point(10px, 10px) }, { "player_panel_next", mediaPlayerInactiveFg, point(10px, 10px) },
}; };
mediaPlayerPanelPreviousButton: IconButton(mediaPlayerPanelNextButton) { mediaPlayerPanelPreviousButton: IconButton(mediaPlayerPanelNextButton) {
icon: icon { icon: icon {{ "player_panel_previous", mediaPlayerActiveFg, point(10px, 10px) }};
{ "player_panel_previous", mediaPlayerActiveFg, point(10px, 10px) },
};
} }
mediaPlayerPanelPreviousDisabledIcon: icon { mediaPlayerPanelPreviousDisabledIcon: icon {
{ "player_panel_previous", mediaPlayerInactiveFg, point(10px, 10px) }, { "player_panel_previous", mediaPlayerInactiveFg, point(10px, 10px) },
}; };
mediaPlayerPanelPadding: 18px; mediaPlayerPanelPadding: 16px;
mediaPlayerPanelNameTop: 24px; mediaPlayerPanelNameTop: 24px;
mediaPlayerPanelPlayLeft: 9px; mediaPlayerPanelPlayLeft: 9px;
mediaPlayerPanelPlaySkip: 7px; mediaPlayerPanelPlaySkip: 7px;

View File

@ -73,6 +73,7 @@ void CoverWidget::PlayButton::paintEvent(QPaintEvent *e) {
CoverWidget::CoverWidget(QWidget *parent) : TWidget(parent) CoverWidget::CoverWidget(QWidget *parent) : TWidget(parent)
, _nameLabel(this, st::mediaPlayerName) , _nameLabel(this, st::mediaPlayerName)
, _timeLabel(this, st::mediaPlayerTime) , _timeLabel(this, st::mediaPlayerTime)
, _close(this, st::mediaPlayerPanelClose)
, _playback(new Ui::MediaSlider(this, st::mediaPlayerPanelPlayback)) , _playback(new Ui::MediaSlider(this, st::mediaPlayerPanelPlayback))
, _playPause(this) , _playPause(this)
, _volumeToggle(this, st::mediaPlayerVolumeToggle) , _volumeToggle(this, st::mediaPlayerVolumeToggle)
@ -82,6 +83,11 @@ CoverWidget::CoverWidget(QWidget *parent) : TWidget(parent)
setAttribute(Qt::WA_OpaquePaintEvent); setAttribute(Qt::WA_OpaquePaintEvent);
resize(width(), st::mediaPlayerCoverHeight); resize(width(), st::mediaPlayerCoverHeight);
_close->hide();
_nameLabel->setAttribute(Qt::WA_TransparentForMouseEvents);
_timeLabel->setAttribute(Qt::WA_TransparentForMouseEvents);
setMouseTracking(true);
_playback->setChangeProgressCallback([this](float64 value) { _playback->setChangeProgressCallback([this](float64 value) {
handleSeekProgress(value); handleSeekProgress(value);
}); });
@ -128,10 +134,14 @@ CoverWidget::CoverWidget(QWidget *parent) : TWidget(parent)
} }
} }
void CoverWidget::setPinCallback(PinCallback &&callback) { void CoverWidget::setPinCallback(ButtonCallback &&callback) {
_pinPlayer->setClickedCallback(std_::move(callback)); _pinPlayer->setClickedCallback(std_::move(callback));
} }
void CoverWidget::setCloseCallback(ButtonCallback &&callback) {
_close->setClickedCallback(std_::move(callback));
}
void CoverWidget::handleSeekProgress(float64 progress) { void CoverWidget::handleSeekProgress(float64 progress) {
if (!_lastDurationMs) return; if (!_lastDurationMs) return;
@ -167,6 +177,7 @@ void CoverWidget::resizeEvent(QResizeEvent *e) {
widthForName -= _timeLabel->width() + 2 * st::normalFont->spacew; widthForName -= _timeLabel->width() + 2 * st::normalFont->spacew;
_nameLabel->resizeToWidth(widthForName); _nameLabel->resizeToWidth(widthForName);
updateLabelPositions(); updateLabelPositions();
_close->moveToRight(0, 0);
int skip = (st::mediaPlayerPanelPlayback.seekSize.width() / 2); int skip = (st::mediaPlayerPanelPlayback.seekSize.width() / 2);
int length = (width() - 2 * st::mediaPlayerPanelPadding + st::mediaPlayerPanelPlayback.seekSize.width()); int length = (width() - 2 * st::mediaPlayerPanelPadding + st::mediaPlayerPanelPlayback.seekSize.width());
@ -187,6 +198,25 @@ void CoverWidget::paintEvent(QPaintEvent *e) {
p.fillRect(e->rect(), st::windowBg); p.fillRect(e->rect(), st::windowBg);
} }
void CoverWidget::mouseMoveEvent(QMouseEvent *e) {
auto closeAreaLeft = st::mediaPlayerPanelPadding + _nameLabel->width();
auto closeAreaHeight = _nameLabel->y() + _nameLabel->height();
auto closeArea = myrtlrect(closeAreaLeft, 0, width() - closeAreaLeft, closeAreaHeight);
auto closeVisible = closeArea.contains(e->pos());
setCloseVisible(closeVisible);
}
void CoverWidget::leaveEvent(QEvent *e) {
setCloseVisible(false);
}
void CoverWidget::setCloseVisible(bool visible) {
if (visible == _close->isHidden()) {
_close->setVisible(visible);
_timeLabel->setVisible(!visible);
}
}
void CoverWidget::updatePlayPrevNextPositions() { void CoverWidget::updatePlayPrevNextPositions() {
auto left = st::mediaPlayerPanelPlayLeft; auto left = st::mediaPlayerPanelPlayLeft;
auto top = st::mediaPlayerPanelPlayTop; auto top = st::mediaPlayerPanelPlayTop;

View File

@ -42,14 +42,18 @@ class CoverWidget : public TWidget, private base::Subscriber {
public: public:
CoverWidget(QWidget *parent); CoverWidget(QWidget *parent);
using PinCallback = base::lambda_unique<void()>; using ButtonCallback = base::lambda_unique<void()>;
void setPinCallback(PinCallback &&callback); void setPinCallback(ButtonCallback &&callback);
void setCloseCallback(ButtonCallback &&callback);
protected: protected:
void resizeEvent(QResizeEvent *e) override; void resizeEvent(QResizeEvent *e) override;
void paintEvent(QPaintEvent *e) override; void paintEvent(QPaintEvent *e) override;
void mouseMoveEvent(QMouseEvent *e) override;
void leaveEvent(QEvent *e) override;
private: private:
void setCloseVisible(bool visible);
void handleSeekProgress(float64 progress); void handleSeekProgress(float64 progress);
void handleSeekFinished(float64 progress); void handleSeekFinished(float64 progress);
@ -75,6 +79,7 @@ private:
class PlayButton; class PlayButton;
ChildWidget<FlatLabel> _nameLabel; ChildWidget<FlatLabel> _nameLabel;
ChildWidget<Ui::LabelSimple> _timeLabel; ChildWidget<Ui::LabelSimple> _timeLabel;
ChildWidget<Ui::IconButton> _close;
ChildWidget<Clip::Playback> _playback; ChildWidget<Clip::Playback> _playback;
ChildWidget<Ui::IconButton> _previousTrack = { nullptr }; ChildWidget<Ui::IconButton> _previousTrack = { nullptr };
ChildWidget<PlayButton> _playPause; ChildWidget<PlayButton> _playPause;

View File

@ -221,6 +221,7 @@ void Panel::ensureCreated() {
if (_layout == Layout::Full) { if (_layout == Layout::Full) {
_cover.create(this); _cover.create(this);
setPinCallback(std_::move(_pinCallback)); setPinCallback(std_::move(_pinCallback));
setCloseCallback(std_::move(_closeCallback));
_scrollShadow.create(this, st::mediaPlayerScrollShadow); _scrollShadow.create(this, st::mediaPlayerScrollShadow);
} }
@ -254,10 +255,17 @@ void Panel::performDestroy() {
} }
} }
void Panel::setPinCallback(PinCallback &&callback) { void Panel::setPinCallback(ButtonCallback &&callback) {
_pinCallback = std_::move(callback); _pinCallback = std_::move(callback);
if (_cover) { if (_cover) {
_cover->setPinCallback(PinCallback(_pinCallback)); _cover->setPinCallback(ButtonCallback(_pinCallback));
}
}
void Panel::setCloseCallback(ButtonCallback &&callback) {
_closeCallback = std_::move(callback);
if (_cover) {
_cover->setCloseCallback(ButtonCallback(_closeCallback));
} }
} }

View File

@ -51,8 +51,9 @@ public:
void showFromOther(); void showFromOther();
void hideFromOther(); void hideFromOther();
using PinCallback = base::lambda_wrap<void()>; using ButtonCallback = base::lambda_wrap<void()>;
void setPinCallback(PinCallback &&callback); void setPinCallback(ButtonCallback &&callback);
void setCloseCallback(ButtonCallback &&callback);
void ui_repaintHistoryItem(const HistoryItem *item); void ui_repaintHistoryItem(const HistoryItem *item);
@ -107,7 +108,7 @@ private:
QTimer _hideTimer, _showTimer; QTimer _hideTimer, _showTimer;
Ui::RectShadow _shadow; Ui::RectShadow _shadow;
PinCallback _pinCallback; ButtonCallback _pinCallback, _closeCallback;
ChildWidget<CoverWidget> _cover = { nullptr }; ChildWidget<CoverWidget> _cover = { nullptr };
ChildWidget<ScrollArea> _scroll; ChildWidget<ScrollArea> _scroll;
ChildWidget<Ui::GradientShadow> _scrollShadow = { nullptr }; ChildWidget<Ui::GradientShadow> _scrollShadow = { nullptr };

View File

@ -537,10 +537,10 @@ void Manager::onAfterNotificationActivated(PeerId peerId, MsgId msgId) {
namespace { namespace {
bool QuiteHoursEnabled = false; bool QuietHoursEnabled = false;
DWORD QuiteHoursValue = 0; DWORD QuietHoursValue = 0;
void queryQuiteHours() { void queryQuietHours() {
LPTSTR lpKeyName = L"Software\\Microsoft\\Windows\\CurrentVersion\\Notifications\\Settings"; LPTSTR lpKeyName = L"Software\\Microsoft\\Windows\\CurrentVersion\\Notifications\\Settings";
LPTSTR lpValueName = L"NOC_GLOBAL_SETTING_TOASTS_ENABLED"; LPTSTR lpValueName = L"NOC_GLOBAL_SETTING_TOASTS_ENABLED";
HKEY key; HKEY key;
@ -553,14 +553,14 @@ void queryQuiteHours() {
result = RegQueryValueEx(key, lpValueName, 0, &type, (LPBYTE)&value, &size); result = RegQueryValueEx(key, lpValueName, 0, &type, (LPBYTE)&value, &size);
RegCloseKey(key); RegCloseKey(key);
auto quiteHoursEnabled = (result == ERROR_SUCCESS); auto quietHoursEnabled = (result == ERROR_SUCCESS);
if (QuiteHoursEnabled != quiteHoursEnabled) { if (QuietHoursEnabled != quietHoursEnabled) {
QuiteHoursEnabled = quiteHoursEnabled; QuietHoursEnabled = quietHoursEnabled;
QuiteHoursValue = value; QuietHoursValue = value;
LOG(("Quite hours changed, entry value: %1").arg(value)); LOG(("Quiet hours changed, entry value: %1").arg(value));
} else if (QuiteHoursValue != value) { } else if (QuietHoursValue != value) {
QuiteHoursValue = value; QuietHoursValue = value;
LOG(("Quite hours value changed, was value: %1, entry value: %2").arg(QuiteHoursValue).arg(value)); LOG(("Quiet hours value changed, was value: %1, entry value: %2").arg(QuietHoursValue).arg(value));
} }
} }
@ -584,7 +584,7 @@ void querySystemNotificationSettings() {
return; return;
} }
LastSettingsQueryMs = ms; LastSettingsQueryMs = ms;
queryQuiteHours(); queryQuietHours();
queryUserNotificationState(); queryUserNotificationState();
} }
@ -596,7 +596,7 @@ bool skipAudio() {
if (UserNotificationState == QUNS_NOT_PRESENT || UserNotificationState == QUNS_PRESENTATION_MODE) { if (UserNotificationState == QUNS_NOT_PRESENT || UserNotificationState == QUNS_PRESENTATION_MODE) {
return true; return true;
} }
if (QuiteHoursEnabled) { if (QuietHoursEnabled) {
return true; return true;
} }
if (EventFilter::getInstance()->sessionLoggedOff()) { if (EventFilter::getInstance()->sessionLoggedOff()) {
@ -611,7 +611,7 @@ bool skipToast() {
if (UserNotificationState == QUNS_PRESENTATION_MODE || UserNotificationState == QUNS_RUNNING_D3D_FULL_SCREEN/* || UserNotificationState == QUNS_BUSY*/) { if (UserNotificationState == QUNS_PRESENTATION_MODE || UserNotificationState == QUNS_RUNNING_D3D_FULL_SCREEN/* || UserNotificationState == QUNS_BUSY*/) {
return true; return true;
} }
if (QuiteHoursEnabled) { if (QuietHoursEnabled) {
return true; return true;
} }
return false; return false;

View File

@ -45,10 +45,9 @@ void ContinuousSlider::setDisabled(bool disabled) {
} }
} }
void ContinuousSlider::setMoveByWheel(bool moveByWheel) { void ContinuousSlider::setMoveByWheel(bool move) {
if (_moveByWheel != moveByWheel) { if (move != moveByWheel()) {
_moveByWheel = moveByWheel; if (move) {
if (_moveByWheel) {
_byWheelFinished = std_::make_unique<SingleTimer>(); _byWheelFinished = std_::make_unique<SingleTimer>();
_byWheelFinished->setTimeoutHandler([this] { _byWheelFinished->setTimeoutHandler([this] {
if (_changeFinishedCallback) { if (_changeFinishedCallback) {
@ -124,7 +123,7 @@ void ContinuousSlider::mouseReleaseEvent(QMouseEvent *e) {
} }
void ContinuousSlider::wheelEvent(QWheelEvent *e) { void ContinuousSlider::wheelEvent(QWheelEvent *e) {
if (_mouseDown) { if (_mouseDown || !moveByWheel()) {
return; return;
} }
#ifdef OS_MAC_OLD #ifdef OS_MAC_OLD

View File

@ -54,7 +54,7 @@ public:
return _mouseDown; return _mouseDown;
} }
void setMoveByWheel(bool moveByWheel); void setMoveByWheel(bool move);
protected: protected:
void mouseMoveEvent(QMouseEvent *e) override; void mouseMoveEvent(QMouseEvent *e) override;
@ -85,6 +85,10 @@ private:
virtual QRect getSeekRect() const = 0; virtual QRect getSeekRect() const = 0;
virtual float64 getOverDuration() const = 0; virtual float64 getOverDuration() const = 0;
bool moveByWheel() const {
return _byWheelFinished != nullptr;
}
void step_value(float64 ms, bool timer); void step_value(float64 ms, bool timer);
void setOver(bool over); void setOver(bool over);
float64 computeValue(const QPoint &pos) const; float64 computeValue(const QPoint &pos) const;
@ -93,7 +97,6 @@ private:
Direction _direction = Direction::Horizontal; Direction _direction = Direction::Horizontal;
bool _disabled = false; bool _disabled = false;
bool _moveByWheel = false;
std_::unique_ptr<SingleTimer> _byWheelFinished; std_::unique_ptr<SingleTimer> _byWheelFinished;
Callback _changeProgressCallback; Callback _changeProgressCallback;

View File

@ -1,6 +1,6 @@
AppVersion 10014 AppVersion 10015
AppVersionStrMajor 0.10 AppVersionStrMajor 0.10
AppVersionStrSmall 0.10.14 AppVersionStrSmall 0.10.15
AppVersionStr 0.10.14 AppVersionStr 0.10.15
AlphaChannel 1 AlphaChannel 1
BetaVersion 0 BetaVersion 0