1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Merge branch 'pr1843'

This commit is contained in:
tux3 2015-06-24 21:23:48 +02:00
commit a2cf456f1d
No known key found for this signature in database
GPG Key ID: 7E086DD661263264
10 changed files with 412 additions and 10 deletions

View File

@ -486,7 +486,9 @@ SOURCES += \
src/core/toxid.cpp \
src/persistence/profile.cpp \
src/widget/translator.cpp \
src/persistence/settingsserializer.cpp
src/persistence/settingsserializer.cpp \
src/widget/notificationscrollarea.cpp \
src/widget/notificationedgewidget.cpp
HEADERS += \
src/audio/audio.h \
@ -522,4 +524,6 @@ HEADERS += \
src/core/toxid.h \
src/persistence/profile.h \
src/widget/translator.h \
src/persistence/settingsserializer.h
src/persistence/settingsserializer.h \
src/widget/notificationscrollarea.h \
src/widget/notificationedgewidget.h

View File

@ -117,5 +117,6 @@
<file>ui/rejectCall/rejectCall.svg</file>
<file>ui/volButton/volButtonDisabled.png</file>
<file>img/login_logo.svg</file>
<file>ui/notificationEdge/notificationEdge.css</file>
</qresource>
</RCC>

View File

@ -1045,7 +1045,7 @@ QSplitter:handle{
</widget>
</item>
<item>
<widget class="AdjustingScrollArea" name="friendList">
<widget class="NotificationScrollArea" name="friendList">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
<horstretch>0</horstretch>
@ -1072,8 +1072,8 @@ QSplitter:handle{
<rect>
<x>0</x>
<y>0</y>
<width>284</width>
<height>359</height>
<width>292</width>
<height>353</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout_5"/>
@ -1838,7 +1838,7 @@ QSplitter:handle{
<x>0</x>
<y>0</y>
<width>775</width>
<height>19</height>
<height>22</height>
</rect>
</property>
</widget>
@ -1859,9 +1859,9 @@ QSplitter:handle{
<header location="global">src/widget/tool/croppinglabel.h</header>
</customwidget>
<customwidget>
<class>AdjustingScrollArea</class>
<class>NotificationScrollArea</class>
<extends>QScrollArea</extends>
<header location="global">src/widget/tool/adjustingscrollarea.h</header>
<header location="global">src/widget/notificationscrollarea.h</header>
<container>1</container>
</customwidget>
</customwidgets>

View File

@ -0,0 +1,61 @@
/*
Copyright © 2015 by The qTox Project
This file is part of qTox, a Qt-based graphical interface for Tox.
qTox is libre 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.
qTox 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.
You should have received a copy of the GNU General Public License
along with qTox. If not, see <http://www.gnu.org/licenses/>.
*/
#include "notificationedgewidget.h"
#include "style.h"
#include <QLabel>
#include <QBoxLayout>
#include <QDebug>
NotificationEdgeWidget::NotificationEdgeWidget(Position position, QWidget *parent)
: QWidget(parent)
{
setAttribute(Qt::WA_StyledBackground); // Show background.
setStyleSheet(Style::getStylesheet(":/ui/notificationEdge/notificationEdge.css"));
QHBoxLayout* layout = new QHBoxLayout(this);
layout->addStretch();
textLabel = new QLabel(this);
textLabel->setMinimumHeight(textLabel->sizeHint().height()); // Prevent cut-off text.
layout->addWidget(textLabel);
QLabel* arrowLabel = new QLabel(this);
if (position == Top)
arrowLabel->setPixmap(QPixmap("://ui/chatArea/scrollBarUpArrow.svg"));
else
arrowLabel->setPixmap(QPixmap("://ui/chatArea/scrollBarDownArrow.svg"));
layout->addWidget(arrowLabel);
layout->addStretch();
setCursor(Qt::PointingHandCursor);
}
void NotificationEdgeWidget::updateNotificationCount(int count)
{
textLabel->setText(tr("Unread message(s)", "", count));
}
void NotificationEdgeWidget::mouseReleaseEvent(QMouseEvent *event)
{
emit clicked();
QWidget::mousePressEvent(event);
}

View File

@ -0,0 +1,50 @@
/*
Copyright © 2015 by The qTox Project
This file is part of qTox, a Qt-based graphical interface for Tox.
qTox is libre 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.
qTox 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.
You should have received a copy of the GNU General Public License
along with qTox. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef NOTIFICATIONEDGEWIDGET_H
#define NOTIFICATIONEDGEWIDGET_H
#include <QWidget>
class QLabel;
class NotificationEdgeWidget final : public QWidget
{
Q_OBJECT
public:
enum Position : uint8_t
{
Top,
Bottom
};
explicit NotificationEdgeWidget(Position position, QWidget *parent = 0);
void updateNotificationCount(int count);
signals:
void clicked();
protected:
void mouseReleaseEvent(QMouseEvent* event) final override;
private:
QLabel* textLabel;
};
#endif // NOTIFICATIONEDGEWIDGET_H

View File

@ -0,0 +1,211 @@
/*
Copyright © 2015 by The qTox Project
This file is part of qTox, a Qt-based graphical interface for Tox.
qTox is libre 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.
qTox 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.
You should have received a copy of the GNU General Public License
along with qTox. If not, see <http://www.gnu.org/licenses/>.
*/
#include "notificationscrollarea.h"
#include "notificationedgewidget.h"
#include "genericchatroomwidget.h"
#include <QScrollBar>
#include <cassert>
NotificationScrollArea::NotificationScrollArea(QWidget* parent)
: AdjustingScrollArea(parent)
{
connect(verticalScrollBar(), &QAbstractSlider::valueChanged, this, &NotificationScrollArea::updateTracking);
connect(verticalScrollBar(), &QAbstractSlider::rangeChanged, this, &NotificationScrollArea::updateTracking);
}
void NotificationScrollArea::trackWidget(GenericChatroomWidget* widget)
{
if (trackedWidgets.find(widget) != trackedWidgets.end())
return;
Visibility visibility = widgetVisible(widget);
if (visibility != Visible)
{
if (visibility == Above)
{
if (referencesAbove++ == 0)
{
assert(topEdge == nullptr);
topEdge = new NotificationEdgeWidget(NotificationEdgeWidget::Top, this);
connect(topEdge, &NotificationEdgeWidget::clicked, this, &NotificationScrollArea::findPreviousWidget);
recalculateTopEdge();
topEdge->show();
}
topEdge->updateNotificationCount(referencesAbove);
}
else
{
if (referencesBelow++ == 0)
{
assert(bottomEdge == nullptr);
bottomEdge = new NotificationEdgeWidget(NotificationEdgeWidget::Bottom, this);
connect(bottomEdge, &NotificationEdgeWidget::clicked, this, &NotificationScrollArea::findNextWidget);
recalculateBottomEdge();
bottomEdge->show();
}
bottomEdge->updateNotificationCount(referencesBelow);
}
trackedWidgets.insert(widget, visibility);
}
}
void NotificationScrollArea::updateTracking()
{
QHash<GenericChatroomWidget*, Visibility>::iterator i = trackedWidgets.begin();
while (i != trackedWidgets.end())
{
if (widgetVisible(i.key()) == Visible)
{
if (i.value() == Above)
{
if (--referencesAbove == 0)
{
topEdge->deleteLater();
topEdge = nullptr;
}
else
{
topEdge->updateNotificationCount(referencesAbove);
}
}
else
{
if (--referencesBelow == 0)
{
bottomEdge->deleteLater();
bottomEdge = nullptr;
}
else
{
bottomEdge->updateNotificationCount(referencesBelow);
}
}
i = trackedWidgets.erase(i);
continue;
}
++i;
}
}
void NotificationScrollArea::resizeEvent(QResizeEvent *event)
{
if (topEdge != nullptr)
recalculateTopEdge();
if (bottomEdge != nullptr)
recalculateBottomEdge();
AdjustingScrollArea::resizeEvent(event);
}
void NotificationScrollArea::findNextWidget()
{
GenericChatroomWidget* next = nullptr;
int value;
QHash<GenericChatroomWidget*, Visibility>::iterator i = trackedWidgets.begin();
// Find the first next, to avoid nullptr.
for (; i != trackedWidgets.end(); ++i)
{
if (i.value() == Below)
{
next = i.key();
value = next->mapTo(viewport(), QPoint()).y();
break;
}
}
// Try finding a closer one.
for (; i != trackedWidgets.end(); ++i)
{
if (i.value() == Below)
{
int y = i.key()->mapTo(viewport(), QPoint()).y();
if (y < value)
{
next = i.key();
value = y;
}
}
}
if (next != nullptr)
ensureWidgetVisible(next, 0, referencesBelow != 1 ? bottomEdge->height() : 0);
}
void NotificationScrollArea::findPreviousWidget()
{
GenericChatroomWidget* next = nullptr;
int value;
QHash<GenericChatroomWidget*, Visibility>::iterator i = trackedWidgets.begin();
// Find the first next, to avoid nullptr.
for (; i != trackedWidgets.end(); ++i)
{
if (i.value() == Above)
{
next = i.key();
value = next->mapTo(viewport(), QPoint()).y();
break;
}
}
// Try finding a closer one.
for (; i != trackedWidgets.end(); ++i)
{
if (i.value() == Above)
{
int y = i.key()->mapTo(viewport(), QPoint()).y();
if (y > value)
{
next = i.key();
value = y;
}
}
}
if (next != nullptr)
ensureWidgetVisible(next, 0, referencesAbove != 1 ? topEdge->height() : 0);
}
NotificationScrollArea::Visibility NotificationScrollArea::widgetVisible(QWidget *widget) const
{
int y = widget->mapTo(viewport(), QPoint()).y();
if (y < 0)
return Above;
else if (y + widget->height() - 1 > viewport()->height())
return Below;
return Visible;
}
void NotificationScrollArea::recalculateTopEdge()
{
topEdge->move(viewport()->pos());
topEdge->resize(viewport()->width(), topEdge->height());
}
void NotificationScrollArea::recalculateBottomEdge()
{
QPoint position = viewport()->pos();
position.setY(position.y() + viewport()->height() - bottomEdge->height());
bottomEdge->move(position);
bottomEdge->resize(viewport()->width(), bottomEdge->height());
}

View File

@ -0,0 +1,63 @@
/*
Copyright © 2015 by The qTox Project
This file is part of qTox, a Qt-based graphical interface for Tox.
qTox is libre 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.
qTox 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.
You should have received a copy of the GNU General Public License
along with qTox. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef NOTIFICATIONSCROLLAREA_H
#define NOTIFICATIONSCROLLAREA_H
#include "tool/adjustingscrollarea.h"
#include <QHash>
class GenericChatroomWidget;
class NotificationEdgeWidget;
class NotificationScrollArea final : public AdjustingScrollArea
{
public:
NotificationScrollArea(QWidget* parent = 0);
public slots:
void trackWidget(GenericChatroomWidget* widget);
void updateTracking();
protected:
void resizeEvent(QResizeEvent *event) final override;
private slots:
void findNextWidget();
void findPreviousWidget();
private:
enum Visibility : uint8_t
{
Visible,
Above,
Below
};
Visibility widgetVisible(QWidget* widget) const;
void recalculateTopEdge();
void recalculateBottomEdge();
QHash<GenericChatroomWidget*, Visibility> trackedWidgets;
NotificationEdgeWidget* topEdge = nullptr;
NotificationEdgeWidget* bottomEdge = nullptr;
size_t referencesAbove = 0;
size_t referencesBelow = 0;
};
#endif // NOTIFICATIONSCROLLAREA_H

View File

@ -22,14 +22,14 @@
#include <QScrollArea>
class AdjustingScrollArea final : public QScrollArea
class AdjustingScrollArea : public QScrollArea
{
Q_OBJECT
public:
explicit AdjustingScrollArea(QWidget *parent = 0);
protected:
virtual void resizeEvent(QResizeEvent *ev) final override;
virtual void resizeEvent(QResizeEvent *ev) override;
virtual QSize sizeHint() const final override;
};

View File

@ -799,6 +799,9 @@ void Widget::newMessageAlert(GenericChatroomWidget* chat)
Audio::playMono16Sound(sndData);
}
if (activeChatroomWidget != chat)
ui->friendList->trackWidget(chat);
}
void Widget::playRingtone()

View File

@ -0,0 +1,9 @@
NotificationEdgeWidget
{
background-color: #6bc260;
}
NotificationEdgeWidget > QLabel
{
color: white;
}