mirror of https://github.com/procxx/kepka.git
Title controls reordering done right. Title song play button created.
This commit is contained in:
parent
5c20ae0411
commit
a8f3582cb1
|
@ -200,7 +200,7 @@ namespace {
|
||||||
w->notifyClearFast();
|
w->notifyClearFast();
|
||||||
w->setupIntro(true);
|
w->setupIntro(true);
|
||||||
}
|
}
|
||||||
MTP::authed(0);
|
MTP::setAuthedId(0);
|
||||||
Local::reset();
|
Local::reset();
|
||||||
|
|
||||||
cSetOtherOnline(0);
|
cSetOtherOnline(0);
|
||||||
|
@ -211,9 +211,8 @@ namespace {
|
||||||
if (App::uploader()) App::uploader()->clear();
|
if (App::uploader()) App::uploader()->clear();
|
||||||
clearStorageImages();
|
clearStorageImages();
|
||||||
if (auto w = wnd()) {
|
if (auto w = wnd()) {
|
||||||
w->getTitle()->updateBackButton();
|
w->updateConnectingStatus();
|
||||||
w->updateTitleStatus();
|
w->getTitle()->updateControlsVisibility();
|
||||||
w->getTitle()->resizeEvent(0);
|
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -406,7 +406,7 @@ void PasscodeBox::onSave(bool force) {
|
||||||
cSetPasscodeBadTries(0);
|
cSetPasscodeBadTries(0);
|
||||||
Local::setPasscode(pwd.toUtf8());
|
Local::setPasscode(pwd.toUtf8());
|
||||||
App::wnd()->checkAutoLock();
|
App::wnd()->checkAutoLock();
|
||||||
App::wnd()->getTitle()->showUpdateBtn();
|
App::wnd()->getTitle()->updateControlsVisibility();
|
||||||
onClose();
|
onClose();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3065,9 +3065,9 @@ HistoryWidget::HistoryWidget(QWidget *parent) : TWidget(parent)
|
||||||
connect(&_sendActionStopTimer, SIGNAL(timeout()), this, SLOT(onCancelSendAction()));
|
connect(&_sendActionStopTimer, SIGNAL(timeout()), this, SLOT(onCancelSendAction()));
|
||||||
connect(&_previewTimer, SIGNAL(timeout()), this, SLOT(onPreviewTimeout()));
|
connect(&_previewTimer, SIGNAL(timeout()), this, SLOT(onPreviewTimeout()));
|
||||||
if (audioCapture()) {
|
if (audioCapture()) {
|
||||||
connect(audioCapture(), SIGNAL(onError()), this, SLOT(onRecordError()));
|
connect(audioCapture(), SIGNAL(error()), this, SLOT(onRecordError()));
|
||||||
connect(audioCapture(), SIGNAL(onUpdate(quint16,qint32)), this, SLOT(onRecordUpdate(quint16,qint32)));
|
connect(audioCapture(), SIGNAL(updated(quint16,qint32)), this, SLOT(onRecordUpdate(quint16,qint32)));
|
||||||
connect(audioCapture(), SIGNAL(onDone(QByteArray,VoiceWaveform,qint32)), this, SLOT(onRecordDone(QByteArray,VoiceWaveform,qint32)));
|
connect(audioCapture(), SIGNAL(done(QByteArray,VoiceWaveform,qint32)), this, SLOT(onRecordDone(QByteArray,VoiceWaveform,qint32)));
|
||||||
}
|
}
|
||||||
|
|
||||||
_updateHistoryItems.setSingleShot(true);
|
_updateHistoryItems.setSingleShot(true);
|
||||||
|
@ -5719,7 +5719,7 @@ void HistoryWidget::mouseReleaseEvent(QMouseEvent *e) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void HistoryWidget::stopRecording(bool send) {
|
void HistoryWidget::stopRecording(bool send) {
|
||||||
audioCapture()->stop(send);
|
emit audioCapture()->stop(send);
|
||||||
|
|
||||||
a_recordingLevel = anim::ivalue(0, 0);
|
a_recordingLevel = anim::ivalue(0, 0);
|
||||||
_a_recording.stop();
|
_a_recording.stop();
|
||||||
|
@ -7411,7 +7411,7 @@ void HistoryWidget::mousePressEvent(QMouseEvent *e) {
|
||||||
if (_replyForwardPressed && !_fieldBarCancel.isHidden()) {
|
if (_replyForwardPressed && !_fieldBarCancel.isHidden()) {
|
||||||
updateField();
|
updateField();
|
||||||
} else if (_inRecord && cHasAudioCapture()) {
|
} else if (_inRecord && cHasAudioCapture()) {
|
||||||
audioCapture()->start();
|
emit audioCapture()->start();
|
||||||
|
|
||||||
_recording = _inField = true;
|
_recording = _inField = true;
|
||||||
updateControlsVisibility();
|
updateControlsVisibility();
|
||||||
|
|
|
@ -77,11 +77,6 @@ MainWidget::MainWidget(MainWindow *window) : TWidget(window)
|
||||||
, _api(new ApiWrap(this)) {
|
, _api(new ApiWrap(this)) {
|
||||||
setGeometry(QRect(0, st::titleHeight, App::wnd()->width(), App::wnd()->height() - st::titleHeight));
|
setGeometry(QRect(0, st::titleHeight, App::wnd()->width(), App::wnd()->height() - st::titleHeight));
|
||||||
|
|
||||||
if (!_mediaPlayer) {
|
|
||||||
_mediaPlayer = new Media::Player::Widget(this);
|
|
||||||
App::wnd()->getTitle()->playerButton()->installEventFilter(_mediaPlayer);
|
|
||||||
}
|
|
||||||
|
|
||||||
MTP::setGlobalDoneHandler(rpcDone(&MainWidget::updateReceived));
|
MTP::setGlobalDoneHandler(rpcDone(&MainWidget::updateReceived));
|
||||||
_ptsWaiter.setRequesting(true);
|
_ptsWaiter.setRequesting(true);
|
||||||
updateScrollColors();
|
updateScrollColors();
|
||||||
|
@ -128,7 +123,7 @@ MainWidget::MainWidget(MainWindow *window) : TWidget(window)
|
||||||
} else {
|
} else {
|
||||||
_history->show();
|
_history->show();
|
||||||
}
|
}
|
||||||
App::wnd()->getTitle()->updateBackButton();
|
App::wnd()->getTitle()->updateControlsVisibility();
|
||||||
_topBar->hide();
|
_topBar->hide();
|
||||||
|
|
||||||
_player->hidePlayer();
|
_player->hidePlayer();
|
||||||
|
@ -574,7 +569,7 @@ void MainWidget::noHider(HistoryHider *destroyed) {
|
||||||
_history->showAnimated(Window::SlideDirection::FromRight, animationParams);
|
_history->showAnimated(Window::SlideDirection::FromRight, animationParams);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
App::wnd()->getTitle()->updateBackButton();
|
App::wnd()->getTitle()->updateControlsVisibility();
|
||||||
} else {
|
} else {
|
||||||
if (_forwardConfirm) {
|
if (_forwardConfirm) {
|
||||||
_forwardConfirm->deleteLater();
|
_forwardConfirm->deleteLater();
|
||||||
|
@ -611,7 +606,7 @@ void MainWidget::hiderLayer(HistoryHider *h) {
|
||||||
resizeEvent(0);
|
resizeEvent(0);
|
||||||
_dialogs->showAnimated(Window::SlideDirection::FromLeft, animationParams);
|
_dialogs->showAnimated(Window::SlideDirection::FromLeft, animationParams);
|
||||||
}
|
}
|
||||||
App::wnd()->getTitle()->updateBackButton();
|
App::wnd()->getTitle()->updateControlsVisibility();
|
||||||
} else {
|
} else {
|
||||||
_hider->show();
|
_hider->show();
|
||||||
resizeEvent(0);
|
resizeEvent(0);
|
||||||
|
@ -1549,7 +1544,6 @@ void MainWidget::ui_autoplayMediaInlineAsync(qint32 channelId, qint32 msgId) {
|
||||||
|
|
||||||
void MainWidget::audioPlayProgress(const AudioMsgId &audioId) {
|
void MainWidget::audioPlayProgress(const AudioMsgId &audioId) {
|
||||||
if (audioId.type() == AudioMsgId::Type::Video) {
|
if (audioId.type() == AudioMsgId::Type::Video) {
|
||||||
audioPlayer()->videoSoundProgress(audioId);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1559,8 +1553,8 @@ void MainWidget::audioPlayProgress(const AudioMsgId &audioId) {
|
||||||
playbackState.state = AudioPlayerStopped;
|
playbackState.state = AudioPlayerStopped;
|
||||||
audioPlayer()->clearStoppedAtStart(audioId);
|
audioPlayer()->clearStoppedAtStart(audioId);
|
||||||
|
|
||||||
DocumentData *audio = audioId.audio();
|
auto document = audioId.audio();
|
||||||
QString filepath = audio->filepath(DocumentData::FilePathResolveSaveFromData);
|
auto filepath = document->filepath(DocumentData::FilePathResolveSaveFromData);
|
||||||
if (!filepath.isEmpty()) {
|
if (!filepath.isEmpty()) {
|
||||||
if (documentIsValidMediaFile(filepath)) {
|
if (documentIsValidMediaFile(filepath)) {
|
||||||
psOpenFile(filepath);
|
psOpenFile(filepath);
|
||||||
|
@ -1583,14 +1577,12 @@ void MainWidget::audioPlayProgress(const AudioMsgId &audioId) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (audioId.type() != AudioMsgId::Type::Video) {
|
if (auto item = App::histItemById(audioId.contextId())) {
|
||||||
if (auto item = App::histItemById(audioId.contextId())) {
|
Ui::repaintHistoryItem(item);
|
||||||
Ui::repaintHistoryItem(item);
|
}
|
||||||
}
|
if (auto items = InlineBots::Layout::documentItems()) {
|
||||||
if (auto items = InlineBots::Layout::documentItems()) {
|
for (auto item : items->value(audioId.audio())) {
|
||||||
for (auto item : items->value(audioId.audio())) {
|
Ui::repaintInlineItem(item);
|
||||||
Ui::repaintInlineItem(item);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2142,7 +2134,7 @@ void MainWidget::ui_showPeerHistory(quint64 peerId, qint32 showAtMsgId, Ui::Show
|
||||||
_dialogs->update();
|
_dialogs->update();
|
||||||
}
|
}
|
||||||
topBar()->showAll();
|
topBar()->showAll();
|
||||||
App::wnd()->getTitle()->updateBackButton();
|
App::wnd()->getTitle()->updateControlsVisibility();
|
||||||
}
|
}
|
||||||
|
|
||||||
PeerData *MainWidget::ui_getPeerForMouseAction() {
|
PeerData *MainWidget::ui_getPeerForMouseAction() {
|
||||||
|
@ -2264,7 +2256,7 @@ void MainWidget::showMediaOverview(PeerData *peer, MediaOverviewType type, bool
|
||||||
|
|
||||||
orderWidgets();
|
orderWidgets();
|
||||||
|
|
||||||
App::wnd()->getTitle()->updateBackButton();
|
App::wnd()->getTitle()->updateControlsVisibility();
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWidget::showWideSection(const Window::SectionMemento &memento) {
|
void MainWidget::showWideSection(const Window::SectionMemento &memento) {
|
||||||
|
@ -2363,7 +2355,7 @@ void MainWidget::showWideSectionAnimated(const Window::SectionMemento *memento,
|
||||||
|
|
||||||
orderWidgets();
|
orderWidgets();
|
||||||
|
|
||||||
App::wnd()->getTitle()->updateBackButton();
|
App::wnd()->getTitle()->updateControlsVisibility();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool MainWidget::stackIsEmpty() const {
|
bool MainWidget::stackIsEmpty() const {
|
||||||
|
@ -3285,8 +3277,9 @@ void MainWidget::mtpPing() {
|
||||||
void MainWidget::start(const MTPUser &user) {
|
void MainWidget::start(const MTPUser &user) {
|
||||||
int32 uid = user.c_user().vid.v;
|
int32 uid = user.c_user().vid.v;
|
||||||
if (MTP::authedId() != uid) {
|
if (MTP::authedId() != uid) {
|
||||||
MTP::authed(uid);
|
MTP::setAuthedId(uid);
|
||||||
Local::writeMtpData();
|
Local::writeMtpData();
|
||||||
|
App::wnd()->getTitle()->updateControlsVisibility();
|
||||||
}
|
}
|
||||||
|
|
||||||
Local::readSavedPeers();
|
Local::readSavedPeers();
|
||||||
|
|
|
@ -137,7 +137,6 @@ class MainWidget : public TWidget, public RPCSender, private base::Subscriber {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
MainWidget(MainWindow *window);
|
MainWidget(MainWindow *window);
|
||||||
|
|
||||||
void paintEvent(QPaintEvent *e) override;
|
void paintEvent(QPaintEvent *e) override;
|
||||||
|
@ -413,7 +412,6 @@ public:
|
||||||
~MainWidget();
|
~MainWidget();
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
|
|
||||||
void peerUpdated(PeerData *peer);
|
void peerUpdated(PeerData *peer);
|
||||||
void peerNameChanged(PeerData *peer, const PeerData::Names &oldNames, const PeerData::NameFirstChars &oldChars);
|
void peerNameChanged(PeerData *peer, const PeerData::Names &oldNames, const PeerData::NameFirstChars &oldChars);
|
||||||
void peerPhotoChanged(PeerData *peer);
|
void peerPhotoChanged(PeerData *peer);
|
||||||
|
@ -423,7 +421,6 @@ signals:
|
||||||
void savedGifsUpdated();
|
void savedGifsUpdated();
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
|
|
||||||
void webPagesUpdate();
|
void webPagesUpdate();
|
||||||
|
|
||||||
void audioPlayProgress(const AudioMsgId &audioId);
|
void audioPlayProgress(const AudioMsgId &audioId);
|
||||||
|
@ -480,8 +477,6 @@ public slots:
|
||||||
void ui_showPeerHistoryAsync(quint64 peerId, qint32 showAtMsgId, Ui::ShowWay way);
|
void ui_showPeerHistoryAsync(quint64 peerId, qint32 showAtMsgId, Ui::ShowWay way);
|
||||||
void ui_autoplayMediaInlineAsync(qint32 channelId, qint32 msgId);
|
void ui_autoplayMediaInlineAsync(qint32 channelId, qint32 msgId);
|
||||||
|
|
||||||
private slots:
|
|
||||||
|
|
||||||
void onDeletePhotoSure();
|
void onDeletePhotoSure();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
|
@ -515,7 +515,7 @@ void MainWindow::clearWidgets() {
|
||||||
hideMediaview();
|
hideMediaview();
|
||||||
_mediaView->rpcClear();
|
_mediaView->rpcClear();
|
||||||
}
|
}
|
||||||
title->updateBackButton();
|
title->updateControlsVisibility();
|
||||||
updateGlobalMenu();
|
updateGlobalMenu();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -548,7 +548,7 @@ void MainWindow::clearPasscode() {
|
||||||
main->animShow(bg, true);
|
main->animShow(bg, true);
|
||||||
}
|
}
|
||||||
notifyUpdateAll();
|
notifyUpdateAll();
|
||||||
title->updateBackButton();
|
title->updateControlsVisibility();
|
||||||
updateGlobalMenu();
|
updateGlobalMenu();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -574,7 +574,7 @@ void MainWindow::setupPasscode(bool anim) {
|
||||||
}
|
}
|
||||||
_shouldLockAt = 0;
|
_shouldLockAt = 0;
|
||||||
notifyUpdateAll();
|
notifyUpdateAll();
|
||||||
title->updateBackButton();
|
title->updateControlsVisibility();
|
||||||
updateGlobalMenu();
|
updateGlobalMenu();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -620,7 +620,7 @@ void MainWindow::setupIntro(bool anim) {
|
||||||
|
|
||||||
fixOrder();
|
fixOrder();
|
||||||
|
|
||||||
updateTitleStatus();
|
updateConnectingStatus();
|
||||||
|
|
||||||
_delayedServiceMsgs.clear();
|
_delayedServiceMsgs.clear();
|
||||||
if (_serviceHistoryRequest) {
|
if (_serviceHistoryRequest) {
|
||||||
|
@ -673,11 +673,11 @@ void MainWindow::setupMain(bool anim, const MTPUser *self) {
|
||||||
} else {
|
} else {
|
||||||
MTP::send(MTPusers_GetUsers(MTP_vector<MTPInputUser>(1, MTP_inputUserSelf())), main->rpcDone(&MainWidget::startFull));
|
MTP::send(MTPusers_GetUsers(MTP_vector<MTPInputUser>(1, MTP_inputUserSelf())), main->rpcDone(&MainWidget::startFull));
|
||||||
}
|
}
|
||||||
title->resizeEvent(0);
|
title->updateControlsVisibility();
|
||||||
|
|
||||||
fixOrder();
|
fixOrder();
|
||||||
|
|
||||||
updateTitleStatus();
|
updateConnectingStatus();
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::updateUnreadCounter() {
|
void MainWindow::updateUnreadCounter() {
|
||||||
|
@ -713,12 +713,12 @@ void MainWindow::ui_hideSettingsAndLayer(ShowLayerOptions options) {
|
||||||
|
|
||||||
void MainWindow::mtpStateChanged(int32 dc, int32 state) {
|
void MainWindow::mtpStateChanged(int32 dc, int32 state) {
|
||||||
if (dc == MTP::maindc()) {
|
if (dc == MTP::maindc()) {
|
||||||
updateTitleStatus();
|
updateConnectingStatus();
|
||||||
Global::RefConnectionTypeChanged().notify();
|
Global::RefConnectionTypeChanged().notify();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::updateTitleStatus() {
|
void MainWindow::updateConnectingStatus() {
|
||||||
int32 state = MTP::dcstate();
|
int32 state = MTP::dcstate();
|
||||||
if (state == MTP::ConnectingState || state == MTP::DisconnectedState || (state < 0 && state > -600)) {
|
if (state == MTP::ConnectingState || state == MTP::DisconnectedState || (state < 0 && state > -600)) {
|
||||||
if (main || getms() > 5000 || _connecting) {
|
if (main || getms() > 5000 || _connecting) {
|
||||||
|
@ -726,7 +726,7 @@ void MainWindow::updateTitleStatus() {
|
||||||
}
|
}
|
||||||
} else if (state < 0) {
|
} else if (state < 0) {
|
||||||
showConnecting(lng_reconnecting(lt_count, ((-state) / 1000) + 1), lang(lng_reconnecting_try_now));
|
showConnecting(lng_reconnecting(lt_count, ((-state) / 1000) + 1), lang(lng_reconnecting_try_now));
|
||||||
QTimer::singleShot((-state) % 1000, this, SLOT(updateTitleStatus()));
|
QTimer::singleShot((-state) % 1000, this, SLOT(updateConnectingStatus()));
|
||||||
} else {
|
} else {
|
||||||
hideConnecting();
|
hideConnecting();
|
||||||
}
|
}
|
||||||
|
@ -853,28 +853,21 @@ void MainWindow::showConnecting(const QString &text, const QString &reconnect) {
|
||||||
if (_connecting) {
|
if (_connecting) {
|
||||||
_connecting->set(text, reconnect);
|
_connecting->set(text, reconnect);
|
||||||
} else {
|
} else {
|
||||||
_connecting = new ConnectingWidget(this, text, reconnect);
|
_connecting.create(this, text, reconnect);
|
||||||
_connecting->show();
|
_connecting->show();
|
||||||
resizeEvent(0);
|
resizeEvent(0);
|
||||||
fixOrder();
|
fixOrder();
|
||||||
}
|
}
|
||||||
if (settings) settings->update();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool MainWindow::connectingVisible() const {
|
|
||||||
return _connecting && !_connecting->isHidden();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::hideConnecting() {
|
void MainWindow::hideConnecting() {
|
||||||
if (_connecting) {
|
if (_connecting) {
|
||||||
_connecting->deleteLater();
|
_connecting.destroyDelayed();
|
||||||
_connecting = 0;
|
|
||||||
}
|
}
|
||||||
if (settings) settings->update();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool MainWindow::doWeReadServerHistory() const {
|
bool MainWindow::doWeReadServerHistory() const {
|
||||||
return isActive(false) && main && (!settings || !settings->isVisible()) && main->doWeReadServerHistory();
|
return isActive(false) && main && !Ui::isLayerShown() && main->doWeReadServerHistory();
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::checkHistoryActivation() {
|
void MainWindow::checkHistoryActivation() {
|
||||||
|
|
|
@ -175,10 +175,6 @@ public:
|
||||||
MainWidget *mainWidget();
|
MainWidget *mainWidget();
|
||||||
PasscodeWidget *passcodeWidget();
|
PasscodeWidget *passcodeWidget();
|
||||||
|
|
||||||
void showConnecting(const QString &text, const QString &reconnect = QString());
|
|
||||||
void hideConnecting();
|
|
||||||
bool connectingVisible() const;
|
|
||||||
|
|
||||||
void showPhoto(const PhotoOpenClickHandler *lnk, HistoryItem *item = 0);
|
void showPhoto(const PhotoOpenClickHandler *lnk, HistoryItem *item = 0);
|
||||||
void showPhoto(PhotoData *photo, HistoryItem *item);
|
void showPhoto(PhotoData *photo, HistoryItem *item);
|
||||||
void showPhoto(PhotoData *photo, PeerData *item);
|
void showPhoto(PhotoData *photo, PeerData *item);
|
||||||
|
@ -204,7 +200,7 @@ public:
|
||||||
TempDirState localStorageState();
|
TempDirState localStorageState();
|
||||||
void tempDirDelete(int task);
|
void tempDirDelete(int task);
|
||||||
|
|
||||||
void notifySettingGot();
|
void notifySettingGot();
|
||||||
void notifySchedule(History *history, HistoryItem *item);
|
void notifySchedule(History *history, HistoryItem *item);
|
||||||
void notifyClear(History *history = 0);
|
void notifyClear(History *history = 0);
|
||||||
void notifyClearFast();
|
void notifyClearFast();
|
||||||
|
@ -215,7 +211,7 @@ public:
|
||||||
void notifyUpdateAll();
|
void notifyUpdateAll();
|
||||||
void notifyActivateAll();
|
void notifyActivateAll();
|
||||||
|
|
||||||
QImage iconLarge() const;
|
QImage iconLarge() const;
|
||||||
|
|
||||||
void sendPaths();
|
void sendPaths();
|
||||||
|
|
||||||
|
@ -257,7 +253,7 @@ public slots:
|
||||||
void showSettings();
|
void showSettings();
|
||||||
void layerHidden();
|
void layerHidden();
|
||||||
void setInnerFocus();
|
void setInnerFocus();
|
||||||
void updateTitleStatus();
|
void updateConnectingStatus();
|
||||||
|
|
||||||
void quitFromTray();
|
void quitFromTray();
|
||||||
void showFromTray(QSystemTrayIcon::ActivationReason reason = QSystemTrayIcon::Unknown);
|
void showFromTray(QSystemTrayIcon::ActivationReason reason = QSystemTrayIcon::Unknown);
|
||||||
|
@ -294,11 +290,13 @@ signals:
|
||||||
|
|
||||||
void imageLoaded();
|
void imageLoaded();
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void onStateChanged(Qt::WindowState state);
|
void onStateChanged(Qt::WindowState state);
|
||||||
void onSettingsDestroyed(QObject *was);
|
void onSettingsDestroyed(QObject *was);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
void showConnecting(const QString &text, const QString &reconnect = QString());
|
||||||
|
void hideConnecting();
|
||||||
|
|
||||||
QPixmap grabInner();
|
QPixmap grabInner();
|
||||||
|
|
||||||
|
@ -322,7 +320,7 @@ private:
|
||||||
QTimer _isActiveTimer;
|
QTimer _isActiveTimer;
|
||||||
bool _isActive = false;
|
bool _isActive = false;
|
||||||
|
|
||||||
ConnectingWidget *_connecting = nullptr;
|
ChildWidget<ConnectingWidget> _connecting = { nullptr };
|
||||||
|
|
||||||
Local::ClearManager *_clearManager = nullptr;
|
Local::ClearManager *_clearManager = nullptr;
|
||||||
|
|
||||||
|
|
|
@ -308,6 +308,7 @@ _loader(new AudioPlayerLoaders(&_loaderThread)) {
|
||||||
connect(_fader, SIGNAL(audioStopped(const AudioMsgId&)), this, SLOT(onStopped(const AudioMsgId&)));
|
connect(_fader, SIGNAL(audioStopped(const AudioMsgId&)), this, SLOT(onStopped(const AudioMsgId&)));
|
||||||
connect(_fader, SIGNAL(error(const AudioMsgId&)), this, SLOT(onError(const AudioMsgId&)));
|
connect(_fader, SIGNAL(error(const AudioMsgId&)), this, SLOT(onError(const AudioMsgId&)));
|
||||||
connect(this, SIGNAL(stoppedOnError(const AudioMsgId&)), this, SIGNAL(updated(const AudioMsgId&)), Qt::QueuedConnection);
|
connect(this, SIGNAL(stoppedOnError(const AudioMsgId&)), this, SIGNAL(updated(const AudioMsgId&)), Qt::QueuedConnection);
|
||||||
|
connect(this, SIGNAL(updated(const AudioMsgId&)), this, SLOT(onUpdated(const AudioMsgId&)));
|
||||||
_loaderThread.start();
|
_loaderThread.start();
|
||||||
_faderThread.start();
|
_faderThread.start();
|
||||||
}
|
}
|
||||||
|
@ -344,6 +345,13 @@ AudioPlayer::~AudioPlayer() {
|
||||||
_loaderThread.wait();
|
_loaderThread.wait();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void AudioPlayer::onUpdated(const AudioMsgId &audio) {
|
||||||
|
if (audio.type() == AudioMsgId::Type::Video) {
|
||||||
|
videoSoundProgress(audio);
|
||||||
|
}
|
||||||
|
notify(AudioMsgId(audio));
|
||||||
|
}
|
||||||
|
|
||||||
void AudioPlayer::onError(const AudioMsgId &audio) {
|
void AudioPlayer::onError(const AudioMsgId &audio) {
|
||||||
emit stoppedOnError(audio);
|
emit stoppedOnError(audio);
|
||||||
if (audio.type() == AudioMsgId::Type::Voice) {
|
if (audio.type() == AudioMsgId::Type::Voice) {
|
||||||
|
@ -906,24 +914,16 @@ bool audioCheckError() {
|
||||||
} // namespace internal
|
} // namespace internal
|
||||||
|
|
||||||
AudioCapture::AudioCapture() : _capture(new AudioCaptureInner(&_captureThread)) {
|
AudioCapture::AudioCapture() : _capture(new AudioCaptureInner(&_captureThread)) {
|
||||||
connect(this, SIGNAL(captureOnStart()), _capture, SLOT(onStart()));
|
connect(this, SIGNAL(start()), _capture, SLOT(onStart()));
|
||||||
connect(this, SIGNAL(captureOnStop(bool)), _capture, SLOT(onStop(bool)));
|
connect(this, SIGNAL(stop(bool)), _capture, SLOT(onStop(bool)));
|
||||||
connect(_capture, SIGNAL(done(QByteArray,VoiceWaveform,qint32)), this, SIGNAL(onDone(QByteArray,VoiceWaveform,qint32)));
|
connect(_capture, SIGNAL(done(QByteArray,VoiceWaveform,qint32)), this, SIGNAL(done(QByteArray,VoiceWaveform,qint32)));
|
||||||
connect(_capture, SIGNAL(update(quint16,qint32)), this, SIGNAL(onUpdate(quint16,qint32)));
|
connect(_capture, SIGNAL(updated(quint16,qint32)), this, SIGNAL(updated(quint16,qint32)));
|
||||||
connect(_capture, SIGNAL(error()), this, SIGNAL(onError()));
|
connect(_capture, SIGNAL(error()), this, SIGNAL(error()));
|
||||||
connect(&_captureThread, SIGNAL(started()), _capture, SLOT(onInit()));
|
connect(&_captureThread, SIGNAL(started()), _capture, SLOT(onInit()));
|
||||||
connect(&_captureThread, SIGNAL(finished()), _capture, SLOT(deleteLater()));
|
connect(&_captureThread, SIGNAL(finished()), _capture, SLOT(deleteLater()));
|
||||||
_captureThread.start();
|
_captureThread.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
void AudioCapture::start() {
|
|
||||||
emit captureOnStart();
|
|
||||||
}
|
|
||||||
|
|
||||||
void AudioCapture::stop(bool needResult) {
|
|
||||||
emit captureOnStop(needResult);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool AudioCapture::check() {
|
bool AudioCapture::check() {
|
||||||
if (auto defaultDevice = alcGetString(0, ALC_CAPTURE_DEFAULT_DEVICE_SPECIFIER)) {
|
if (auto defaultDevice = alcGetString(0, ALC_CAPTURE_DEFAULT_DEVICE_SPECIFIER)) {
|
||||||
if (auto device = alcCaptureOpenDevice(defaultDevice, AudioVoiceMsgFrequency, AL_FORMAT_MONO16, AudioVoiceMsgFrequency / 5)) {
|
if (auto device = alcCaptureOpenDevice(defaultDevice, AudioVoiceMsgFrequency, AL_FORMAT_MONO16, AudioVoiceMsgFrequency / 5)) {
|
||||||
|
@ -1664,7 +1664,7 @@ void AudioCaptureInner::onTimeout() {
|
||||||
}
|
}
|
||||||
qint32 samplesFull = d->fullSamples + _captured.size() / sizeof(short), samplesSinceUpdate = samplesFull - d->lastUpdate;
|
qint32 samplesFull = d->fullSamples + _captured.size() / sizeof(short), samplesSinceUpdate = samplesFull - d->lastUpdate;
|
||||||
if (samplesSinceUpdate > AudioVoiceMsgUpdateView * AudioVoiceMsgFrequency / 1000) {
|
if (samplesSinceUpdate > AudioVoiceMsgUpdateView * AudioVoiceMsgFrequency / 1000) {
|
||||||
emit update(d->levelMax, samplesFull);
|
emit updated(d->levelMax, samplesFull);
|
||||||
d->lastUpdate = samplesFull;
|
d->lastUpdate = samplesFull;
|
||||||
d->levelMax = 0;
|
d->levelMax = 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,7 +55,7 @@ struct AudioPlaybackState {
|
||||||
int32 frequency = 0;
|
int32 frequency = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
class AudioPlayer : public QObject {
|
class AudioPlayer : public QObject, public base::Observable<AudioMsgId> {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
@ -70,7 +70,6 @@ public:
|
||||||
void initFromVideo(uint64 videoPlayId, std_::unique_ptr<VideoSoundData> &&data, int64 position);
|
void initFromVideo(uint64 videoPlayId, std_::unique_ptr<VideoSoundData> &&data, int64 position);
|
||||||
void feedFromVideo(VideoSoundPart &&part);
|
void feedFromVideo(VideoSoundPart &&part);
|
||||||
int64 getVideoCorrectedTime(uint64 playId, int64 frameMs, uint64 systemMs);
|
int64 getVideoCorrectedTime(uint64 playId, int64 frameMs, uint64 systemMs);
|
||||||
void videoSoundProgress(const AudioMsgId &audio);
|
|
||||||
AudioPlaybackState currentVideoState(uint64 videoPlayId);
|
AudioPlaybackState currentVideoState(uint64 videoPlayId);
|
||||||
void stopFromVideo(uint64 videoPlayId);
|
void stopFromVideo(uint64 videoPlayId);
|
||||||
void pauseFromVideo(uint64 videoPlayId);
|
void pauseFromVideo(uint64 videoPlayId);
|
||||||
|
@ -86,10 +85,12 @@ public:
|
||||||
|
|
||||||
~AudioPlayer();
|
~AudioPlayer();
|
||||||
|
|
||||||
public slots:
|
private slots:
|
||||||
void onError(const AudioMsgId &audio);
|
void onError(const AudioMsgId &audio);
|
||||||
void onStopped(const AudioMsgId &audio);
|
void onStopped(const AudioMsgId &audio);
|
||||||
|
|
||||||
|
void onUpdated(const AudioMsgId &audio);
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
void updated(const AudioMsgId &audio);
|
void updated(const AudioMsgId &audio);
|
||||||
void stoppedOnError(const AudioMsgId &audio);
|
void stoppedOnError(const AudioMsgId &audio);
|
||||||
|
@ -110,6 +111,8 @@ private:
|
||||||
bool updateCurrentStarted(AudioMsgId::Type type, int32 pos = -1);
|
bool updateCurrentStarted(AudioMsgId::Type type, int32 pos = -1);
|
||||||
bool checkCurrentALError(AudioMsgId::Type type);
|
bool checkCurrentALError(AudioMsgId::Type type);
|
||||||
|
|
||||||
|
void videoSoundProgress(const AudioMsgId &audio);
|
||||||
|
|
||||||
struct AudioMsg {
|
struct AudioMsg {
|
||||||
void clear();
|
void clear();
|
||||||
|
|
||||||
|
@ -185,27 +188,21 @@ class AudioCapture : public QObject {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
AudioCapture();
|
AudioCapture();
|
||||||
|
|
||||||
void start();
|
|
||||||
void stop(bool needResult);
|
|
||||||
|
|
||||||
bool check();
|
bool check();
|
||||||
|
|
||||||
~AudioCapture();
|
~AudioCapture();
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
|
void start();
|
||||||
|
void stop(bool needResult);
|
||||||
|
|
||||||
void captureOnStart();
|
void done(QByteArray data, VoiceWaveform waveform, qint32 samples);
|
||||||
void captureOnStop(bool needResult);
|
void updated(quint16 level, qint32 samples);
|
||||||
|
void error();
|
||||||
void onDone(QByteArray data, VoiceWaveform waveform, qint32 samples);
|
|
||||||
void onUpdate(quint16 level, qint32 samples);
|
|
||||||
void onError();
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
friend class AudioCaptureInner;
|
friend class AudioCaptureInner;
|
||||||
|
|
||||||
QThread _captureThread;
|
QThread _captureThread;
|
||||||
|
@ -270,18 +267,15 @@ class AudioCaptureInner : public QObject {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
AudioCaptureInner(QThread *thread);
|
AudioCaptureInner(QThread *thread);
|
||||||
~AudioCaptureInner();
|
~AudioCaptureInner();
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
|
|
||||||
void error();
|
void error();
|
||||||
void update(quint16 level, qint32 samples);
|
void updated(quint16 level, qint32 samples);
|
||||||
void done(QByteArray data, VoiceWaveform waveform, qint32 samples);
|
void done(QByteArray data, VoiceWaveform waveform, qint32 samples);
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
|
|
||||||
void onInit();
|
void onInit();
|
||||||
void onStart();
|
void onStart();
|
||||||
void onStop(bool needResult);
|
void onStop(bool needResult);
|
||||||
|
@ -289,7 +283,6 @@ signals:
|
||||||
void onTimeout();
|
void onTimeout();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
void processFrame(int32 offset, int32 framesize);
|
void processFrame(int32 offset, int32 framesize);
|
||||||
|
|
||||||
void writeFrame(AVFrame *frame);
|
void writeFrame(AVFrame *frame);
|
||||||
|
|
|
@ -851,7 +851,7 @@ void finish() {
|
||||||
_started = false;
|
_started = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void authed(int32 uid) {
|
void setAuthedId(int32 uid) {
|
||||||
internal::authed(uid);
|
internal::authed(uid);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -180,7 +180,7 @@ int32 state(mtpRequestId req); // < 0 means waiting for such count of ms
|
||||||
|
|
||||||
void finish();
|
void finish();
|
||||||
|
|
||||||
void authed(int32 uid);
|
void setAuthedId(int32 uid);
|
||||||
int32 authedId();
|
int32 authedId();
|
||||||
void logoutKeys(RPCDoneHandlerPtr onDone, RPCFailHandlerPtr onFail);
|
void logoutKeys(RPCDoneHandlerPtr onDone, RPCFailHandlerPtr onFail);
|
||||||
|
|
||||||
|
|
|
@ -217,7 +217,7 @@ void ScaleWidget::setScale(DBIScale newScale) {
|
||||||
|
|
||||||
cSetConfigScale(newScale);
|
cSetConfigScale(newScale);
|
||||||
Local::writeSettings();
|
Local::writeSettings();
|
||||||
App::wnd()->getTitle()->showUpdateBtn();
|
App::wnd()->getTitle()->updateControlsVisibility();
|
||||||
if (newScale == dbisAuto && !_auto->checked()) {
|
if (newScale == dbisAuto && !_auto->checked()) {
|
||||||
_auto->setChecked(true);
|
_auto->setChecked(true);
|
||||||
} else if (newScale != dbisAuto && _auto->checked()) {
|
} else if (newScale != dbisAuto && _auto->checked()) {
|
||||||
|
|
|
@ -35,7 +35,6 @@ SysBtn::SysBtn(QWidget *parent, const style::sysButton &st, const QString &text)
|
||||||
int32 w = _st.size.width() + (_text.isEmpty() ? 0 : ((_st.size.width() - _st.img.pxWidth()) / 2 + st::titleTextButton.font->width(_text)));
|
int32 w = _st.size.width() + (_text.isEmpty() ? 0 : ((_st.size.width() - _st.img.pxWidth()) / 2 + st::titleTextButton.font->width(_text)));
|
||||||
resize(w, _st.size.height());
|
resize(w, _st.size.height());
|
||||||
setCursor(style::cur_default);
|
setCursor(style::cur_default);
|
||||||
connect(this, SIGNAL(stateChanged(int, ButtonStateChangeSource)), this, SLOT(onStateChange(int, ButtonStateChangeSource)));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void SysBtn::setText(const QString &text) {
|
void SysBtn::setText(const QString &text) {
|
||||||
|
@ -49,7 +48,7 @@ void SysBtn::setOverLevel(float64 level) {
|
||||||
update();
|
update();
|
||||||
}
|
}
|
||||||
|
|
||||||
void SysBtn::onStateChange(int oldState, ButtonStateChangeSource source) {
|
void SysBtn::onStateChanged(int oldState, ButtonStateChangeSource source) {
|
||||||
a_color.start((_state & StateOver ? _st.overColor : _st.color)->c);
|
a_color.start((_state & StateOver ? _st.overColor : _st.color)->c);
|
||||||
|
|
||||||
if (source == ButtonByUser || source == ButtonByPress) {
|
if (source == ButtonByUser || source == ButtonByPress) {
|
||||||
|
@ -109,60 +108,48 @@ void SysBtn::step_color(float64 ms, bool timer) {
|
||||||
if (timer) update();
|
if (timer) update();
|
||||||
}
|
}
|
||||||
|
|
||||||
MinimizeBtn::MinimizeBtn(QWidget *parent, MainWindow *window) : SysBtn(parent, st::sysMin), wnd(window) {
|
MinimizeBtn::MinimizeBtn(QWidget *parent) : SysBtn(parent, st::sysMin) {
|
||||||
connect(this, SIGNAL(clicked()), this, SLOT(onClick()));
|
setClickedCallback([this]() {
|
||||||
|
window()->setWindowState(Qt::WindowMinimized);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
void MinimizeBtn::onClick() {
|
MaximizeBtn::MaximizeBtn(QWidget *parent) : SysBtn(parent, st::sysMax) {
|
||||||
wnd->setWindowState(Qt::WindowMinimized);
|
setClickedCallback([this]() {
|
||||||
|
window()->setWindowState(Qt::WindowMaximized);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
MaximizeBtn::MaximizeBtn(QWidget *parent, MainWindow *window) : SysBtn(parent, st::sysMax), wnd(window) {
|
RestoreBtn::RestoreBtn(QWidget *parent) : SysBtn(parent, st::sysRes) {
|
||||||
connect(this, SIGNAL(clicked()), this, SLOT(onClick()));
|
setClickedCallback([this]() {
|
||||||
|
window()->setWindowState(Qt::WindowNoState);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
void MaximizeBtn::onClick() {
|
CloseBtn::CloseBtn(QWidget *parent) : SysBtn(parent, st::sysCls) {
|
||||||
wnd->setWindowState(Qt::WindowMaximized);
|
setClickedCallback([this]() {
|
||||||
|
window()->close();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
RestoreBtn::RestoreBtn(QWidget *parent, MainWindow *window) : SysBtn(parent, st::sysRes), wnd(window) {
|
UpdateBtn::UpdateBtn(QWidget *parent) : SysBtn(parent, st::sysUpd, lang(lng_menu_update)) {
|
||||||
connect(this, SIGNAL(clicked()), this, SLOT(onClick()));
|
setClickedCallback([]() {
|
||||||
}
|
|
||||||
|
|
||||||
void RestoreBtn::onClick() {
|
|
||||||
wnd->setWindowState(Qt::WindowNoState);
|
|
||||||
}
|
|
||||||
|
|
||||||
CloseBtn::CloseBtn(QWidget *parent, MainWindow *window) : SysBtn(parent, st::sysCls), wnd(window) {
|
|
||||||
connect(this, SIGNAL(clicked()), this, SLOT(onClick()));
|
|
||||||
}
|
|
||||||
|
|
||||||
void CloseBtn::onClick() {
|
|
||||||
wnd->close();
|
|
||||||
}
|
|
||||||
|
|
||||||
UpdateBtn::UpdateBtn(QWidget *parent, MainWindow *window, const QString &text) : SysBtn(parent, st::sysUpd, text), wnd(window) {
|
|
||||||
connect(this, SIGNAL(clicked()), this, SLOT(onClick()));
|
|
||||||
}
|
|
||||||
|
|
||||||
void UpdateBtn::onClick() {
|
|
||||||
#ifndef TDESKTOP_DISABLE_AUTOUPDATE
|
#ifndef TDESKTOP_DISABLE_AUTOUPDATE
|
||||||
checkReadyUpdate();
|
checkReadyUpdate();
|
||||||
if (Sandbox::updatingState() == Application::UpdatingReady) {
|
if (Sandbox::updatingState() == Application::UpdatingReady) {
|
||||||
cSetRestartingUpdate(true);
|
cSetRestartingUpdate(true);
|
||||||
} else
|
} else
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
cSetRestarting(true);
|
cSetRestarting(true);
|
||||||
cSetRestartingToSettings(false);
|
cSetRestartingToSettings(false);
|
||||||
}
|
}
|
||||||
App::quit();
|
App::quit();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
LockBtn::LockBtn(QWidget *parent, MainWindow *window) : SysBtn(parent, st::sysLock), wnd(window) {
|
LockBtn::LockBtn(QWidget *parent) : SysBtn(parent, st::sysLock) {
|
||||||
connect(this, SIGNAL(clicked()), this, SLOT(onClick()));
|
setClickedCallback([] {
|
||||||
}
|
Shortcuts::launch(qsl("lock_telegram"));
|
||||||
|
});
|
||||||
void LockBtn::onClick() {
|
|
||||||
Shortcuts::launch(qsl("lock_telegram"));
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,13 +23,8 @@ Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
|
||||||
#include "ui/animation.h"
|
#include "ui/animation.h"
|
||||||
#include "ui/button.h"
|
#include "ui/button.h"
|
||||||
|
|
||||||
class MainWindow;
|
|
||||||
|
|
||||||
class SysBtn : public Button {
|
class SysBtn : public Button {
|
||||||
Q_OBJECT
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
SysBtn(QWidget *parent, const style::sysButton &st, const QString &text = QString());
|
SysBtn(QWidget *parent, const style::sysButton &st, const QString &text = QString());
|
||||||
|
|
||||||
void setText(const QString &text);
|
void setText(const QString &text);
|
||||||
|
@ -42,11 +37,8 @@ public:
|
||||||
|
|
||||||
void step_color(float64 ms, bool timer);
|
void step_color(float64 ms, bool timer);
|
||||||
|
|
||||||
public slots:
|
|
||||||
|
|
||||||
void onStateChange(int oldState, ButtonStateChangeSource source);
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
void onStateChanged(int oldState, ButtonStateChangeSource source) override;
|
||||||
|
|
||||||
style::sysButton _st;
|
style::sysButton _st;
|
||||||
anim::cvalue a_color;
|
anim::cvalue a_color;
|
||||||
|
@ -58,97 +50,37 @@ protected:
|
||||||
};
|
};
|
||||||
|
|
||||||
class MinimizeBtn : public SysBtn {
|
class MinimizeBtn : public SysBtn {
|
||||||
Q_OBJECT
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
MinimizeBtn(QWidget *parent);
|
||||||
|
|
||||||
MinimizeBtn(QWidget *parent, MainWindow *window);
|
|
||||||
|
|
||||||
public slots:
|
|
||||||
|
|
||||||
void onClick();
|
|
||||||
|
|
||||||
private:
|
|
||||||
|
|
||||||
MainWindow *wnd;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class MaximizeBtn : public SysBtn {
|
class MaximizeBtn : public SysBtn {
|
||||||
Q_OBJECT
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
MaximizeBtn(QWidget *parent);
|
||||||
|
|
||||||
MaximizeBtn(QWidget *parent, MainWindow *window);
|
|
||||||
|
|
||||||
public slots:
|
|
||||||
|
|
||||||
void onClick();
|
|
||||||
|
|
||||||
private:
|
|
||||||
|
|
||||||
MainWindow *wnd;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class RestoreBtn : public SysBtn {
|
class RestoreBtn : public SysBtn {
|
||||||
Q_OBJECT
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
RestoreBtn(QWidget *parent);
|
||||||
|
|
||||||
RestoreBtn(QWidget *parent, MainWindow *window);
|
|
||||||
|
|
||||||
public slots:
|
|
||||||
|
|
||||||
void onClick();
|
|
||||||
|
|
||||||
private:
|
|
||||||
|
|
||||||
MainWindow *wnd;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class CloseBtn : public SysBtn {
|
class CloseBtn : public SysBtn {
|
||||||
Q_OBJECT
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
CloseBtn(QWidget *parent);
|
||||||
|
|
||||||
CloseBtn(QWidget *parent, MainWindow *window);
|
|
||||||
|
|
||||||
public slots:
|
|
||||||
|
|
||||||
void onClick();
|
|
||||||
|
|
||||||
private:
|
|
||||||
|
|
||||||
MainWindow *wnd;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class UpdateBtn : public SysBtn {
|
class UpdateBtn : public SysBtn {
|
||||||
Q_OBJECT
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
UpdateBtn(QWidget *parent);
|
||||||
|
|
||||||
UpdateBtn(QWidget *parent, MainWindow *window, const QString &text = QString());
|
|
||||||
|
|
||||||
public slots:
|
|
||||||
|
|
||||||
void onClick();
|
|
||||||
|
|
||||||
private:
|
|
||||||
|
|
||||||
MainWindow *wnd;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class LockBtn : public SysBtn {
|
class LockBtn : public SysBtn {
|
||||||
Q_OBJECT
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
LockBtn(QWidget *parent);
|
||||||
|
|
||||||
LockBtn(QWidget *parent, MainWindow *window);
|
|
||||||
|
|
||||||
public slots:
|
|
||||||
|
|
||||||
void onClick();
|
|
||||||
|
|
||||||
private:
|
|
||||||
|
|
||||||
MainWindow *wnd;
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -27,71 +27,86 @@ Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
|
||||||
#include "application.h"
|
#include "application.h"
|
||||||
#include "boxes/contactsbox.h"
|
#include "boxes/contactsbox.h"
|
||||||
#include "boxes/aboutbox.h"
|
#include "boxes/aboutbox.h"
|
||||||
|
#include "media/media_audio.h"
|
||||||
#include "media/player/media_player_button.h"
|
#include "media/player/media_player_button.h"
|
||||||
|
|
||||||
TitleHider::TitleHider(QWidget *parent) : QWidget(parent), _level(0) {
|
class TitleWidget::Hider : public TWidget {
|
||||||
|
public:
|
||||||
|
Hider(QWidget *parent);
|
||||||
|
|
||||||
|
using ClickedCallback = base::lambda_unique<void()>;
|
||||||
|
void setClickedCallback(ClickedCallback &&callback) {
|
||||||
|
_callback = std_::move(callback);
|
||||||
|
}
|
||||||
|
void setLevel(float64 level);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
void paintEvent(QPaintEvent *e) override;
|
||||||
|
void mousePressEvent(QMouseEvent *e) override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
ClickedCallback _callback;
|
||||||
|
float64 _level = 0;
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
TitleWidget::Hider::Hider(QWidget *parent) : TWidget(parent) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void TitleHider::paintEvent(QPaintEvent *e) {
|
void TitleWidget::Hider::paintEvent(QPaintEvent *e) {
|
||||||
QPainter p(this);
|
QPainter p(this);
|
||||||
p.setOpacity(_level * st::layerAlpha);
|
p.setOpacity(_level * st::layerAlpha);
|
||||||
p.fillRect(App::main()->dlgsWidth(), 0, width() - App::main()->dlgsWidth(), height(), st::layerBg->b);
|
p.fillRect(App::main()->dlgsWidth(), 0, width() - App::main()->dlgsWidth(), height(), st::layerBg->b);
|
||||||
}
|
}
|
||||||
|
|
||||||
void TitleHider::mousePressEvent(QMouseEvent *e) {
|
void TitleWidget::Hider::mousePressEvent(QMouseEvent *e) {
|
||||||
if (e->button() == Qt::LeftButton) {
|
if (e->button() == Qt::LeftButton && _callback) {
|
||||||
emit static_cast<TitleWidget*>(parentWidget())->hiderClicked();
|
_callback();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void TitleHider::setLevel(float64 level) {
|
void TitleWidget::Hider::setLevel(float64 level) {
|
||||||
_level = level;
|
_level = level;
|
||||||
update();
|
update();
|
||||||
}
|
}
|
||||||
|
|
||||||
TitleWidget::TitleWidget(MainWindow *window) : TWidget(window)
|
TitleWidget::TitleWidget(QWidget *parent) : TWidget(parent)
|
||||||
, wnd(window)
|
|
||||||
, hideLevel(0)
|
|
||||||
, hider(0)
|
|
||||||
, _cancel(this, lang(lng_cancel), st::titleTextButton)
|
, _cancel(this, lang(lng_cancel), st::titleTextButton)
|
||||||
, _settings(this, lang(lng_menu_settings), st::titleTextButton)
|
, _settings(this, lang(lng_menu_settings), st::titleTextButton)
|
||||||
, _contacts(this, lang(lng_menu_contacts), st::titleTextButton)
|
, _contacts(this, lang(lng_menu_contacts), st::titleTextButton)
|
||||||
, _about(this, lang(lng_menu_about), st::titleTextButton)
|
, _about(this, lang(lng_menu_about), st::titleTextButton)
|
||||||
, _player(this)
|
, _lock(this)
|
||||||
, _lock(this, window)
|
, _update(this)
|
||||||
, _update(this, window, lang(lng_menu_update))
|
, _minimize(this)
|
||||||
, _minimize(this, window)
|
, _maximize(this)
|
||||||
, _maximize(this, window)
|
, _restore(this)
|
||||||
, _restore(this, window)
|
, _close(this)
|
||||||
, _close(this, window)
|
|
||||||
, _a_update(animation(this, &TitleWidget::step_update))
|
, _a_update(animation(this, &TitleWidget::step_update))
|
||||||
, lastMaximized(!(window->windowState() & Qt::WindowMaximized)) {
|
, lastMaximized(!(parent->windowState() & Qt::WindowMaximized)) {
|
||||||
setGeometry(0, 0, wnd->width(), st::titleHeight);
|
setGeometry(0, 0, parent->width(), st::titleHeight);
|
||||||
setAttribute(Qt::WA_OpaquePaintEvent);
|
setAttribute(Qt::WA_OpaquePaintEvent);
|
||||||
_lock.hide();
|
|
||||||
_update.hide();
|
|
||||||
_cancel.hide();
|
|
||||||
if (
|
|
||||||
#ifndef TDESKTOP_DISABLE_AUTOUPDATE
|
|
||||||
Sandbox::updatingState() == Application::UpdatingReady ||
|
|
||||||
#endif
|
|
||||||
Global::LocalPasscode()
|
|
||||||
) {
|
|
||||||
showUpdateBtn();
|
|
||||||
}
|
|
||||||
onWindowStateChanged();
|
onWindowStateChanged();
|
||||||
|
updateControlsVisibility();
|
||||||
|
|
||||||
connect(&_cancel, SIGNAL(clicked()), this, SIGNAL(hiderClicked()));
|
connect(&_cancel, SIGNAL(clicked()), this, SIGNAL(hiderClicked()));
|
||||||
connect(&_settings, SIGNAL(clicked()), window, SLOT(showSettings()));
|
connect(&_settings, SIGNAL(clicked()), parent, SLOT(showSettings()));
|
||||||
connect(&_contacts, SIGNAL(clicked()), this, SLOT(onContacts()));
|
connect(&_contacts, SIGNAL(clicked()), this, SLOT(onContacts()));
|
||||||
connect(&_about, SIGNAL(clicked()), this, SLOT(onAbout()));
|
connect(&_about, SIGNAL(clicked()), this, SLOT(onAbout()));
|
||||||
connect(wnd->windowHandle(), SIGNAL(windowStateChanged(Qt::WindowState)), this, SLOT(onWindowStateChanged(Qt::WindowState)));
|
connect(parent->windowHandle(), SIGNAL(windowStateChanged(Qt::WindowState)), this, SLOT(onWindowStateChanged(Qt::WindowState)));
|
||||||
|
|
||||||
#ifndef TDESKTOP_DISABLE_AUTOUPDATE
|
#ifndef TDESKTOP_DISABLE_AUTOUPDATE
|
||||||
Sandbox::connect(SIGNAL(updateReady()), this, SLOT(showUpdateBtn()));
|
Sandbox::connect(SIGNAL(updateReady()), this, SLOT(updateControlsVisibility()));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
subscribe(Adaptive::Changed(), [this]() { updateAdaptiveLayout(); });
|
subscribe(Adaptive::Changed(), [this]() { updateAdaptiveLayout(); });
|
||||||
|
if (auto player = audioPlayer()) {
|
||||||
|
subscribe(player, [this](const AudioMsgId &audio) {
|
||||||
|
if (audio.type() == AudioMsgId::Type::Song) {
|
||||||
|
handleSongUpdate(audio);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
if (cPlatform() != dbipWindows) {
|
if (cPlatform() != dbipWindows) {
|
||||||
_minimize.hide();
|
_minimize.hide();
|
||||||
|
@ -127,20 +142,31 @@ void TitleWidget::setHideLevel(float64 level) {
|
||||||
if (level != hideLevel) {
|
if (level != hideLevel) {
|
||||||
hideLevel = level;
|
hideLevel = level;
|
||||||
if (hideLevel) {
|
if (hideLevel) {
|
||||||
if (!hider) {
|
if (!_hider) {
|
||||||
hider = new TitleHider(this);
|
_hider.create(this);
|
||||||
hider->move(0, 0);
|
_hider->setGeometry(rect());
|
||||||
hider->resize(size());
|
_hider->setClickedCallback([this]() { emit hiderClicked(); });
|
||||||
if (Adaptive::OneColumn()) {
|
_hider->setVisible(!Adaptive::OneColumn());
|
||||||
hider->hide();
|
|
||||||
} else {
|
|
||||||
hider->show();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
hider->setLevel(hideLevel);
|
_hider->setLevel(hideLevel);
|
||||||
} else {
|
} else {
|
||||||
if (hider) hider->deleteLater();
|
if (_hider) {
|
||||||
hider = 0;
|
_hider.destroyDelayed();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void TitleWidget::handleSongUpdate(const AudioMsgId &audioId) {
|
||||||
|
t_assert(audioId.type() == AudioMsgId::Type::Song);
|
||||||
|
|
||||||
|
AudioMsgId playing;
|
||||||
|
auto playbackState = audioPlayer()->currentState(&playing, audioId.type());
|
||||||
|
if (playing == audioId) {
|
||||||
|
auto songIsPlaying = !(playbackState.state & AudioPlayerStoppedMask) && (playbackState.state != AudioPlayerFinishing);
|
||||||
|
if (songIsPlaying && !_player) {
|
||||||
|
_player.create(this);
|
||||||
|
updateControlsVisibility();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -157,12 +183,7 @@ void TitleWidget::onAbout() {
|
||||||
Ui::showLayer(new AboutBox());
|
Ui::showLayer(new AboutBox());
|
||||||
}
|
}
|
||||||
|
|
||||||
TitleWidget::~TitleWidget() {
|
void TitleWidget::updateControlsPosition() {
|
||||||
delete hider;
|
|
||||||
hider = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
void TitleWidget::resizeEvent(QResizeEvent *e) {
|
|
||||||
QPoint p(width() - ((cPlatform() == dbipWindows && lastMaximized) ? 0 : st::sysBtnDelta), 0);
|
QPoint p(width() - ((cPlatform() == dbipWindows && lastMaximized) ? 0 : st::sysBtnDelta), 0);
|
||||||
|
|
||||||
if (!_update.isHidden()) {
|
if (!_update.isHidden()) {
|
||||||
|
@ -177,16 +198,16 @@ void TitleWidget::resizeEvent(QResizeEvent *e) {
|
||||||
}
|
}
|
||||||
_cancel.move(p.x() - _cancel.width(), 0);
|
_cancel.move(p.x() - _cancel.width(), 0);
|
||||||
|
|
||||||
if (cPlatform() == dbipWindows) {
|
if (cPlatform() == dbipWindows) {
|
||||||
p.setX(p.x() - _close.width());
|
p.setX(p.x() - _close.width());
|
||||||
_close.move(p);
|
_close.move(p);
|
||||||
|
|
||||||
p.setX(p.x() - _maximize.width());
|
p.setX(p.x() - _maximize.width());
|
||||||
_restore.move(p); _maximize.move(p);
|
_restore.move(p); _maximize.move(p);
|
||||||
|
|
||||||
p.setX(p.x() - _minimize.width());
|
p.setX(p.x() - _minimize.width());
|
||||||
_minimize.move(p);
|
_minimize.move(p);
|
||||||
}
|
}
|
||||||
if (_update.isHidden() && !_lock.isHidden()) {
|
if (_update.isHidden() && !_lock.isHidden()) {
|
||||||
p.setX(p.x() - _lock.width());
|
p.setX(p.x() - _lock.width());
|
||||||
_lock.move(p);
|
_lock.move(p);
|
||||||
|
@ -197,61 +218,108 @@ void TitleWidget::resizeEvent(QResizeEvent *e) {
|
||||||
}
|
}
|
||||||
|
|
||||||
_settings.move(st::titleMenuOffset, 0);
|
_settings.move(st::titleMenuOffset, 0);
|
||||||
if (MTP::authedId() && _cancel.isHidden() && !App::passcoded()) {
|
if (_contacts.isHidden()) {
|
||||||
if (_contacts.isHidden()) _contacts.show();
|
_about.move(_settings.x() + _settings.width(), 0);
|
||||||
|
} else {
|
||||||
_contacts.move(_settings.x() + _settings.width(), 0);
|
_contacts.move(_settings.x() + _settings.width(), 0);
|
||||||
_about.move(_contacts.x() + _contacts.width(), 0);
|
_about.move(_contacts.x() + _contacts.width(), 0);
|
||||||
} else {
|
|
||||||
if (!_contacts.isHidden()) _contacts.hide();
|
|
||||||
if (!MTP::authedId()) _about.move(_settings.x() + _settings.width(), 0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (hider) hider->resize(size());
|
if (_hider) {
|
||||||
|
_hider->resize(size());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void TitleWidget::updateBackButton() {
|
void TitleWidget::resizeEvent(QResizeEvent *e) {
|
||||||
if (App::passcoded()) {
|
updateControlsPosition();
|
||||||
if (!_cancel.isHidden()) _cancel.hide();
|
}
|
||||||
if (!_settings.isHidden()) _settings.hide();
|
|
||||||
if (!_contacts.isHidden()) _contacts.hide();
|
void TitleWidget::updateControlsVisibility() {
|
||||||
if (!_about.isHidden()) _about.hide();
|
auto passcoded = App::passcoded();
|
||||||
_lock.setSysBtnStyle(st::sysUnlock);
|
auto authed = (App::main() != nullptr);
|
||||||
} else {
|
auto selecting = authed && App::main()->selectingPeer();
|
||||||
_lock.setSysBtnStyle(st::sysLock);
|
auto oneColumnSelecting = (Adaptive::OneColumn() && selecting && !passcoded);
|
||||||
if (Adaptive::OneColumn() && App::main() && App::main()->selectingPeer()) {
|
|
||||||
_cancel.show();
|
_cancel.setVisible(oneColumnSelecting);
|
||||||
if (!_settings.isHidden()) _settings.hide();
|
|
||||||
if (!_contacts.isHidden()) _contacts.hide();
|
updateRestartButtonVisibility();
|
||||||
if (!_about.isHidden()) _about.hide();
|
updateMenuButtonsVisibility();
|
||||||
} else {
|
updateSystemButtonsVisibility();
|
||||||
if (!_cancel.isHidden()) _cancel.hide();
|
|
||||||
bool authed = (MTP::authedId() > 0);
|
updateControlsPosition();
|
||||||
if (Adaptive::OneColumn()) {
|
|
||||||
if (_settings.isHidden()) _settings.show();
|
|
||||||
if (authed && _contacts.isHidden()) _contacts.show();
|
|
||||||
if (_about.isHidden()) _about.show();
|
|
||||||
} else {
|
|
||||||
if (_settings.isHidden()) _settings.show();
|
|
||||||
if (authed && _contacts.isHidden()) _contacts.show();
|
|
||||||
if (_about.isHidden()) _about.show();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
showUpdateBtn();
|
|
||||||
update();
|
update();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void TitleWidget::updateRestartButtonVisibility() {
|
||||||
|
#ifndef TDESKTOP_DISABLE_AUTOUPDATE
|
||||||
|
bool updateReady = (Sandbox::updatingState() == Application::UpdatingReady);
|
||||||
|
#else
|
||||||
|
bool updateReady = false;
|
||||||
|
#endif
|
||||||
|
auto scaleRestarting = cEvalScale(cConfigScale()) != cEvalScale(cRealScale());
|
||||||
|
|
||||||
|
auto updateVisible = _cancel.isHidden() && (updateReady || scaleRestarting);
|
||||||
|
if (updateVisible) {
|
||||||
|
_update.setText(lang(updateReady ? lng_menu_update : lng_menu_restart));
|
||||||
|
_update.show();
|
||||||
|
_a_update.start();
|
||||||
|
} else {
|
||||||
|
_update.hide();
|
||||||
|
_a_update.stop();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void TitleWidget::updateMenuButtonsVisibility() {
|
||||||
|
if (_cancel.isHidden()) {
|
||||||
|
if (App::passcoded()) {
|
||||||
|
_settings.hide();
|
||||||
|
_contacts.hide();
|
||||||
|
_about.hide();
|
||||||
|
_lock.setSysBtnStyle(st::sysUnlock);
|
||||||
|
} else {
|
||||||
|
_lock.setSysBtnStyle(st::sysLock);
|
||||||
|
_settings.show();
|
||||||
|
_contacts.setVisible(App::main() != nullptr);
|
||||||
|
_about.show();
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
_settings.hide();
|
||||||
|
_contacts.hide();
|
||||||
|
_about.hide();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void TitleWidget::updateSystemButtonsVisibility() {
|
||||||
|
if (_cancel.isHidden()) {
|
||||||
|
_lock.setVisible(Global::LocalPasscode());
|
||||||
|
if (_player) {
|
||||||
|
_player->show();
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
_lock.hide();
|
||||||
|
if (_player) {
|
||||||
|
_player->hide();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (_update.isHidden() && _cancel.isHidden() && cPlatform() == dbipWindows) {
|
||||||
|
_minimize.show();
|
||||||
|
maximizedChanged(lastMaximized, true);
|
||||||
|
_close.show();
|
||||||
|
} else {
|
||||||
|
_minimize.hide();
|
||||||
|
_restore.hide();
|
||||||
|
_maximize.hide();
|
||||||
|
_close.hide();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void TitleWidget::updateAdaptiveLayout() {
|
void TitleWidget::updateAdaptiveLayout() {
|
||||||
updateBackButton();
|
updateControlsVisibility();
|
||||||
if (Adaptive::OneColumn()) {
|
if (Adaptive::OneColumn()) {
|
||||||
updateCounter();
|
updateCounter();
|
||||||
}
|
}
|
||||||
if (hider) {
|
if (_hider) {
|
||||||
if (Adaptive::OneColumn()) {
|
_hider->setVisible(!Adaptive::OneColumn());
|
||||||
hider->hide();
|
|
||||||
} else {
|
|
||||||
hider->show();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -282,20 +350,24 @@ void TitleWidget::updateCounter() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void TitleWidget::mousePressEvent(QMouseEvent *e) {
|
void TitleWidget::mousePressEvent(QMouseEvent *e) {
|
||||||
if (wnd->psHandleTitle()) return;
|
if (auto wnd = App::wnd()) {
|
||||||
if (e->buttons() & Qt::LeftButton) {
|
if (wnd->psHandleTitle()) return;
|
||||||
wnd->wStartDrag(e);
|
if (e->buttons() & Qt::LeftButton) {
|
||||||
e->accept();
|
wnd->wStartDrag(e);
|
||||||
|
e->accept();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void TitleWidget::mouseDoubleClickEvent(QMouseEvent *e) {
|
void TitleWidget::mouseDoubleClickEvent(QMouseEvent *e) {
|
||||||
if (wnd->psHandleTitle()) return;
|
if (auto wnd = App::wnd()) {
|
||||||
Qt::WindowStates s(wnd->windowState());
|
if (wnd->psHandleTitle()) return;
|
||||||
if (s.testFlag(Qt::WindowMaximized)) {
|
Qt::WindowStates s(wnd->windowState());
|
||||||
wnd->setWindowState(s & ~Qt::WindowMaximized);
|
if (s.testFlag(Qt::WindowMaximized)) {
|
||||||
} else {
|
wnd->setWindowState(s & ~Qt::WindowMaximized);
|
||||||
wnd->setWindowState(s | Qt::WindowMaximized);
|
} else {
|
||||||
|
wnd->setWindowState(s | Qt::WindowMaximized);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -304,49 +376,6 @@ void TitleWidget::onWindowStateChanged(Qt::WindowState state) {
|
||||||
maximizedChanged(state == Qt::WindowMaximized);
|
maximizedChanged(state == Qt::WindowMaximized);
|
||||||
}
|
}
|
||||||
|
|
||||||
void TitleWidget::showUpdateBtn() {
|
|
||||||
if (Adaptive::OneColumn() && App::main() && App::main()->selectingPeer()) {
|
|
||||||
_cancel.show();
|
|
||||||
_lock.hide();
|
|
||||||
_update.hide();
|
|
||||||
_minimize.hide();
|
|
||||||
_restore.hide();
|
|
||||||
_maximize.hide();
|
|
||||||
_close.hide();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (Global::LocalPasscode()) {
|
|
||||||
_lock.show();
|
|
||||||
} else {
|
|
||||||
_lock.hide();
|
|
||||||
}
|
|
||||||
#ifndef TDESKTOP_DISABLE_AUTOUPDATE
|
|
||||||
bool updateReady = (Sandbox::updatingState() == Application::UpdatingReady);
|
|
||||||
#else
|
|
||||||
bool updateReady = false;
|
|
||||||
#endif
|
|
||||||
if (updateReady || cEvalScale(cConfigScale()) != cEvalScale(cRealScale())) {
|
|
||||||
_update.setText(lang(updateReady ? lng_menu_update : lng_menu_restart));
|
|
||||||
_update.show();
|
|
||||||
resizeEvent(0);
|
|
||||||
_minimize.hide();
|
|
||||||
_restore.hide();
|
|
||||||
_maximize.hide();
|
|
||||||
_close.hide();
|
|
||||||
_a_update.start();
|
|
||||||
} else {
|
|
||||||
_update.hide();
|
|
||||||
if (cPlatform() == dbipWindows) {
|
|
||||||
_minimize.show();
|
|
||||||
maximizedChanged(lastMaximized, true);
|
|
||||||
_close.show();
|
|
||||||
}
|
|
||||||
_a_update.stop();
|
|
||||||
}
|
|
||||||
resizeEvent(0);
|
|
||||||
update();
|
|
||||||
}
|
|
||||||
|
|
||||||
void TitleWidget::maximizedChanged(bool maximized, bool force) {
|
void TitleWidget::maximizedChanged(bool maximized, bool force) {
|
||||||
if (lastMaximized == maximized && !force) return;
|
if (lastMaximized == maximized && !force) return;
|
||||||
|
|
||||||
|
@ -362,14 +391,14 @@ void TitleWidget::maximizedChanged(bool maximized, bool force) {
|
||||||
_maximize.setVisible(!maximized);
|
_maximize.setVisible(!maximized);
|
||||||
_restore.setVisible(maximized);
|
_restore.setVisible(maximized);
|
||||||
|
|
||||||
resizeEvent(0);
|
updateControlsPosition();
|
||||||
}
|
}
|
||||||
|
|
||||||
HitTestType TitleWidget::hitTest(const QPoint &p) {
|
HitTestType TitleWidget::hitTest(const QPoint &p) {
|
||||||
if (App::wnd() && Ui::isLayerShown()) return HitTestNone;
|
if (App::wnd() && Ui::isLayerShown()) return HitTestNone;
|
||||||
|
|
||||||
int x(p.x()), y(p.y()), w(width()), h(height());
|
int x(p.x()), y(p.y()), w(width()), h(height());
|
||||||
if (!Adaptive::OneColumn() && hider && x >= App::main()->dlgsWidth()) return HitTestNone;
|
if (!Adaptive::OneColumn() && _hider && x >= App::main()->dlgsWidth()) return HitTestNone;
|
||||||
|
|
||||||
if (x >= st::titleIconPos.x() && y >= st::titleIconPos.y() && x < st::titleIconPos.x() + st::titleIconImg.pxWidth() && y < st::titleIconPos.y() + st::titleIconImg.pxHeight()) {
|
if (x >= st::titleIconPos.x() && y >= st::titleIconPos.y() && x < st::titleIconPos.x() + st::titleIconImg.pxWidth() && y < st::titleIconPos.y() + st::titleIconImg.pxHeight()) {
|
||||||
return HitTestIcon;
|
return HitTestIcon;
|
||||||
|
|
|
@ -29,31 +29,14 @@ namespace Player {
|
||||||
class TitleButton;
|
class TitleButton;
|
||||||
} // namespace Player
|
} // namespace Player
|
||||||
} // namespace Media
|
} // namespace Media
|
||||||
|
class AudioMsgId;
|
||||||
class TitleHider : public QWidget {
|
|
||||||
public:
|
|
||||||
|
|
||||||
TitleHider(QWidget *parent);
|
|
||||||
void paintEvent(QPaintEvent *e);
|
|
||||||
void mousePressEvent(QMouseEvent *e);
|
|
||||||
void setLevel(float64 level);
|
|
||||||
|
|
||||||
private:
|
|
||||||
|
|
||||||
float64 _level;
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
class TitleWidget : public TWidget, private base::Subscriber {
|
class TitleWidget : public TWidget, private base::Subscriber {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
TitleWidget(QWidget *parent);
|
||||||
|
|
||||||
TitleWidget(MainWindow *parent);
|
|
||||||
void paintEvent(QPaintEvent *e);
|
|
||||||
void resizeEvent(QResizeEvent *e);
|
|
||||||
|
|
||||||
void updateBackButton();
|
|
||||||
void updateCounter();
|
void updateCounter();
|
||||||
|
|
||||||
void mousePressEvent(QMouseEvent *e);
|
void mousePressEvent(QMouseEvent *e);
|
||||||
|
@ -71,28 +54,33 @@ public:
|
||||||
|
|
||||||
void step_update(float64 ms, bool timer);
|
void step_update(float64 ms, bool timer);
|
||||||
|
|
||||||
~TitleWidget();
|
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
|
|
||||||
void onWindowStateChanged(Qt::WindowState state = Qt::WindowNoState);
|
void onWindowStateChanged(Qt::WindowState state = Qt::WindowNoState);
|
||||||
void showUpdateBtn();
|
void updateControlsVisibility();
|
||||||
void onContacts();
|
void onContacts();
|
||||||
void onAbout();
|
void onAbout();
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
|
|
||||||
void hiderClicked();
|
void hiderClicked();
|
||||||
|
|
||||||
|
protected:
|
||||||
|
void paintEvent(QPaintEvent *e) override;
|
||||||
|
void resizeEvent(QResizeEvent *e) override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void updateAdaptiveLayout();
|
void updateAdaptiveLayout();
|
||||||
|
void updateRestartButtonVisibility();
|
||||||
|
void updateMenuButtonsVisibility();
|
||||||
|
void updateSystemButtonsVisibility();
|
||||||
|
void updateControlsPosition();
|
||||||
|
|
||||||
MainWindow *wnd;
|
void handleSongUpdate(const AudioMsgId &audioId);
|
||||||
|
|
||||||
style::color statusColor;
|
style::color statusColor;
|
||||||
|
|
||||||
float64 hideLevel;
|
class Hider;
|
||||||
TitleHider *hider;
|
float64 hideLevel = 0;
|
||||||
|
ChildWidget<Hider> _hider = { nullptr };
|
||||||
|
|
||||||
float64 _lastUpdateMs;
|
float64 _lastUpdateMs;
|
||||||
|
|
||||||
|
|
|
@ -350,6 +350,12 @@ public:
|
||||||
return ptr();
|
return ptr();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Use that instead "= new T(parent, ...)"
|
||||||
|
template <typename Parent, typename... Args>
|
||||||
|
void create(Parent &&parent, Args&&... args) {
|
||||||
|
delete _widget;
|
||||||
|
_widget = new T(std_::forward<Parent>(parent), std_::forward<Args>(args)...);
|
||||||
|
}
|
||||||
void destroy() {
|
void destroy() {
|
||||||
if (_widget) {
|
if (_widget) {
|
||||||
delete _widget;
|
delete _widget;
|
||||||
|
|
Loading…
Reference in New Issue