mirror of https://github.com/qTox/qTox.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
730 lines
20 KiB
730 lines
20 KiB
/* |
|
Copyright © 2015-2019 by The qTox Project Contributors |
|
|
|
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 "contentdialog.h" |
|
#include "splitterrestorer.h" |
|
|
|
#include <QBoxLayout> |
|
#include <QCloseEvent> |
|
#include <QDragEnterEvent> |
|
#include <QGuiApplication> |
|
#include <QMimeData> |
|
#include <QShortcut> |
|
#include <QSplitter> |
|
|
|
#include "src/core/core.h" |
|
#include "src/friendlist.h" |
|
#include "src/grouplist.h" |
|
#include "src/model/chatroom/friendchatroom.h" |
|
#include "src/model/friend.h" |
|
#include "src/model/group.h" |
|
#include "src/model/status.h" |
|
#include "src/persistence/settings.h" |
|
#include "src/widget/contentlayout.h" |
|
#include "src/widget/form/chatform.h" |
|
#include "src/widget/friendlistlayout.h" |
|
#include "src/widget/friendwidget.h" |
|
#include "src/widget/groupwidget.h" |
|
#include "src/widget/style.h" |
|
#include "src/widget/tool/adjustingscrollarea.h" |
|
#include "src/widget/translator.h" |
|
#include "src/widget/widget.h" |
|
|
|
namespace { |
|
const int minWidget = 220; |
|
const int minHeight = 220; |
|
const QSize minSize(minHeight, minWidget); |
|
const QSize defaultSize(720, 400); |
|
} // namespace |
|
|
|
ContentDialog::ContentDialog(const Core &core, Settings& settings_, |
|
Style& style_, IMessageBoxManager& messageBoxManager_, FriendList& friendList_, |
|
Profile& profile_, QWidget* parent) |
|
: ActivateDialog(style_, parent, Qt::Window) |
|
, splitter{new QSplitter(this)} |
|
, friendLayout{new FriendListLayout(this)} |
|
, activeChatroomWidget(nullptr) |
|
, videoSurfaceSize(QSize()) |
|
, videoCount(0) |
|
, settings{settings_} |
|
, style{style_} |
|
, messageBoxManager{messageBoxManager_} |
|
, friendList{friendList_} |
|
, profile{profile_} |
|
{ |
|
friendLayout->setMargin(0); |
|
friendLayout->setSpacing(0); |
|
|
|
layouts = {friendLayout->getLayoutOnline(), groupLayout.getLayout(), |
|
friendLayout->getLayoutOffline()}; |
|
|
|
if (settings.getGroupchatPosition()) { |
|
#if (QT_VERSION >= QT_VERSION_CHECK(5, 13, 0)) |
|
layouts.swapItemsAt(0, 1); |
|
#else |
|
layouts.swap(0, 1); |
|
#endif |
|
} |
|
|
|
QWidget* friendWidget = new QWidget(); |
|
friendWidget->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Fixed); |
|
friendWidget->setAutoFillBackground(true); |
|
friendWidget->setLayout(friendLayout); |
|
|
|
onGroupchatPositionChanged(settings.getGroupchatPosition()); |
|
|
|
friendScroll = new QScrollArea(this); |
|
friendScroll->setMinimumWidth(minWidget); |
|
friendScroll->setFrameStyle(QFrame::NoFrame); |
|
friendScroll->setLayoutDirection(Qt::RightToLeft); |
|
friendScroll->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); |
|
friendScroll->setWidgetResizable(true); |
|
friendScroll->setWidget(friendWidget); |
|
|
|
QWidget* contentWidget = new QWidget(this); |
|
contentWidget->setAutoFillBackground(true); |
|
|
|
contentLayout = new ContentLayout(settings, style, contentWidget); |
|
contentLayout->setMargin(0); |
|
contentLayout->setSpacing(0); |
|
|
|
splitter->addWidget(friendScroll); |
|
splitter->addWidget(contentWidget); |
|
splitter->setStretchFactor(1, 1); |
|
splitter->setCollapsible(1, false); |
|
|
|
QVBoxLayout* boxLayout = new QVBoxLayout(this); |
|
boxLayout->setMargin(0); |
|
boxLayout->setSpacing(0); |
|
boxLayout->addWidget(splitter); |
|
|
|
setMinimumSize(minSize); |
|
setAttribute(Qt::WA_DeleteOnClose); |
|
setObjectName("detached"); |
|
|
|
QByteArray geometry = settings.getDialogGeometry(); |
|
|
|
if (!geometry.isNull()) { |
|
restoreGeometry(geometry); |
|
} else { |
|
resize(defaultSize); |
|
} |
|
|
|
SplitterRestorer restorer(splitter); |
|
restorer.restore(settings.getDialogSplitterState(), size()); |
|
|
|
username = core.getUsername(); |
|
|
|
setAcceptDrops(true); |
|
|
|
reloadTheme(); |
|
|
|
new QShortcut(Qt::CTRL + Qt::Key_Q, this, SLOT(close())); |
|
new QShortcut(Qt::CTRL + Qt::SHIFT + Qt::Key_Tab, this, SLOT(previousChat())); |
|
new QShortcut(Qt::CTRL + Qt::Key_Tab, this, SLOT(nextChat())); |
|
new QShortcut(Qt::CTRL + Qt::Key_PageUp, this, SLOT(previousChat())); |
|
new QShortcut(Qt::CTRL + Qt::Key_PageDown, this, SLOT(nextChat())); |
|
|
|
connect(&settings, &Settings::groupchatPositionChanged, this, &ContentDialog::onGroupchatPositionChanged); |
|
connect(splitter, &QSplitter::splitterMoved, this, &ContentDialog::saveSplitterState); |
|
|
|
Translator::registerHandler(std::bind(&ContentDialog::retranslateUi, this), this); |
|
} |
|
|
|
ContentDialog::~ContentDialog() |
|
{ |
|
Translator::unregister(this); |
|
} |
|
|
|
void ContentDialog::closeEvent(QCloseEvent* event) |
|
{ |
|
emit willClose(); |
|
event->accept(); |
|
} |
|
|
|
FriendWidget* ContentDialog::addFriend(std::shared_ptr<FriendChatroom> chatroom, GenericChatForm* form) |
|
{ |
|
const auto compact = settings.getCompactLayout(); |
|
auto frnd = chatroom->getFriend(); |
|
const auto& friendPk = frnd->getPublicKey(); |
|
auto friendWidget = new FriendWidget(chatroom, compact, settings, style, |
|
messageBoxManager, profile); |
|
emit connectFriendWidget(*friendWidget); |
|
chatWidgets[friendPk] = friendWidget; |
|
friendLayout->addFriendWidget(friendWidget, frnd->getStatus()); |
|
chatForms[friendPk] = form; |
|
|
|
// TODO(sudden6): move this connection to the Friend::displayedNameChanged signal |
|
connect(frnd, &Friend::aliasChanged, this, &ContentDialog::updateFriendWidget); |
|
connect(frnd, &Friend::statusMessageChanged, this, &ContentDialog::setStatusMessage); |
|
connect(friendWidget, &FriendWidget::chatroomWidgetClicked, this, &ContentDialog::activate); |
|
|
|
// FIXME: emit should be removed |
|
emit friendWidget->chatroomWidgetClicked(friendWidget); |
|
|
|
return friendWidget; |
|
} |
|
|
|
GroupWidget* ContentDialog::addGroup(std::shared_ptr<GroupChatroom> chatroom, GenericChatForm* form) |
|
{ |
|
const auto g = chatroom->getGroup(); |
|
const auto& groupId = g->getPersistentId(); |
|
const auto compact = settings.getCompactLayout(); |
|
auto groupWidget = new GroupWidget(chatroom, compact, settings, style); |
|
chatWidgets[groupId] = groupWidget; |
|
groupLayout.addSortedWidget(groupWidget); |
|
chatForms[groupId] = form; |
|
|
|
connect(groupWidget, &GroupWidget::chatroomWidgetClicked, this, &ContentDialog::activate); |
|
|
|
// FIXME: emit should be removed |
|
emit groupWidget->chatroomWidgetClicked(groupWidget); |
|
|
|
return groupWidget; |
|
} |
|
|
|
void ContentDialog::removeFriend(const ToxPk& friendPk) |
|
{ |
|
auto chatroomWidget = qobject_cast<FriendWidget*>(chatWidgets[friendPk]); |
|
disconnect(chatroomWidget->getFriend(), &Friend::aliasChanged, this, |
|
&ContentDialog::updateFriendWidget); |
|
|
|
// Need to find replacement to show here instead. |
|
if (activeChatroomWidget == chatroomWidget) { |
|
cycleChats(/* forward = */ true, /* inverse = */ false); |
|
} |
|
|
|
friendLayout->removeFriendWidget(chatroomWidget, Status::Status::Offline); |
|
friendLayout->removeFriendWidget(chatroomWidget, Status::Status::Online); |
|
|
|
chatroomWidget->deleteLater(); |
|
|
|
if (chatroomCount() == 0) { |
|
contentLayout->clear(); |
|
activeChatroomWidget = nullptr; |
|
deleteLater(); |
|
} else { |
|
update(); |
|
} |
|
|
|
chatWidgets.remove(friendPk); |
|
chatForms.remove(friendPk); |
|
closeIfEmpty(); |
|
} |
|
|
|
void ContentDialog::removeGroup(const GroupId& groupId) |
|
{ |
|
auto chatroomWidget = qobject_cast<GroupWidget*>(chatWidgets[groupId]); |
|
// Need to find replacement to show here instead. |
|
if (activeChatroomWidget == chatroomWidget) { |
|
cycleChats(true, false); |
|
} |
|
|
|
groupLayout.removeSortedWidget(chatroomWidget); |
|
chatroomWidget->deleteLater(); |
|
|
|
if (chatroomCount() == 0) { |
|
contentLayout->clear(); |
|
activeChatroomWidget = nullptr; |
|
deleteLater(); |
|
} else { |
|
update(); |
|
} |
|
|
|
chatWidgets.remove(groupId); |
|
chatForms.remove(groupId); |
|
closeIfEmpty(); |
|
} |
|
|
|
void ContentDialog::closeIfEmpty() |
|
{ |
|
if (chatWidgets.isEmpty()) { |
|
close(); |
|
} |
|
} |
|
|
|
int ContentDialog::chatroomCount() const |
|
{ |
|
return friendLayout->friendTotalCount() + groupLayout.getLayout()->count(); |
|
} |
|
|
|
void ContentDialog::ensureSplitterVisible() |
|
{ |
|
if (splitter->sizes().at(0) == 0) { |
|
splitter->setSizes({1, 1}); |
|
} |
|
|
|
update(); |
|
} |
|
|
|
/** |
|
* @brief Get current layout and index of current wiget in it. |
|
* Current layout -- layout contains activated widget. |
|
* |
|
* @param[out] layout Current layout |
|
* @return Index of current widget in current layout. |
|
*/ |
|
int ContentDialog::getCurrentLayout(QLayout*& layout) |
|
{ |
|
layout = friendLayout->getLayoutOnline(); |
|
int index = friendLayout->indexOfFriendWidget(activeChatroomWidget, true); |
|
if (index != -1) { |
|
return index; |
|
} |
|
|
|
layout = friendLayout->getLayoutOffline(); |
|
index = friendLayout->indexOfFriendWidget(activeChatroomWidget, false); |
|
if (index != -1) { |
|
return index; |
|
} |
|
|
|
layout = groupLayout.getLayout(); |
|
index = groupLayout.indexOfSortedWidget(activeChatroomWidget); |
|
if (index != -1) { |
|
return index; |
|
} |
|
|
|
layout = nullptr; |
|
return -1; |
|
} |
|
|
|
/** |
|
* @brief Activate next/previous chat. |
|
* @param forward If true, activate next contace, previous otherwise. |
|
* @param inverse ??? TODO: Add docs. |
|
*/ |
|
void ContentDialog::cycleChats(bool forward, bool inverse) |
|
{ |
|
QLayout* currentLayout; |
|
int index = getCurrentLayout(currentLayout); |
|
if (!currentLayout || index == -1) { |
|
return; |
|
} |
|
|
|
if (!inverse && index == currentLayout->count() - 1) { |
|
bool groupsOnTop = settings.getGroupchatPosition(); |
|
bool offlineEmpty = friendLayout->getLayoutOffline()->isEmpty(); |
|
bool onlineEmpty = friendLayout->getLayoutOnline()->isEmpty(); |
|
bool groupsEmpty = groupLayout.getLayout()->isEmpty(); |
|
bool isCurOffline = currentLayout == friendLayout->getLayoutOffline(); |
|
bool isCurOnline = currentLayout == friendLayout->getLayoutOnline(); |
|
bool isCurGroup = currentLayout == groupLayout.getLayout(); |
|
bool nextIsEmpty = (isCurOnline && offlineEmpty && (groupsEmpty || groupsOnTop)) |
|
|| (isCurGroup && offlineEmpty && (onlineEmpty || !groupsOnTop)) |
|
|| (isCurOffline); |
|
|
|
if (nextIsEmpty) { |
|
forward = !forward; |
|
} |
|
} |
|
|
|
index += forward ? 1 : -1; |
|
// If goes out of the layout, then go to the next and skip empty. This loop goes more |
|
// then 1 time, because for empty layout index will be out of interval (0 < 0 || 0 >= 0) |
|
while (index < 0 || index >= currentLayout->count()) { |
|
int oldCount = currentLayout->count(); |
|
currentLayout = nextLayout(currentLayout, forward); |
|
int newCount = currentLayout->count(); |
|
if (index < 0) { |
|
index = newCount - 1; |
|
} else if (index >= oldCount) { |
|
index = 0; |
|
} |
|
} |
|
|
|
QWidget* widget = currentLayout->itemAt(index)->widget(); |
|
GenericChatroomWidget* chatWidget = qobject_cast<GenericChatroomWidget*>(widget); |
|
if (chatWidget && chatWidget != activeChatroomWidget) { |
|
// FIXME: emit should be removed |
|
emit chatWidget->chatroomWidgetClicked(chatWidget); |
|
} |
|
} |
|
|
|
void ContentDialog::onVideoShow(QSize size) |
|
{ |
|
++videoCount; |
|
if (videoCount > 1) { |
|
return; |
|
} |
|
|
|
videoSurfaceSize = size; |
|
QSize minSize_ = minimumSize(); |
|
setMinimumSize(minSize_ + videoSurfaceSize); |
|
} |
|
|
|
void ContentDialog::onVideoHide() |
|
{ |
|
videoCount--; |
|
if (videoCount > 0) { |
|
return; |
|
} |
|
|
|
QSize minSize_ = minimumSize(); |
|
setMinimumSize(minSize_ - videoSurfaceSize); |
|
videoSurfaceSize = QSize(); |
|
} |
|
|
|
|
|
/** |
|
* @brief Update window title and icon. |
|
*/ |
|
void ContentDialog::updateTitleAndStatusIcon() |
|
{ |
|
if (!activeChatroomWidget) { |
|
setWindowTitle(username); |
|
return; |
|
} |
|
|
|
setWindowTitle(username + QStringLiteral(" - ") + activeChatroomWidget->getTitle()); |
|
|
|
bool isGroupchat = activeChatroomWidget->getGroup() != nullptr; |
|
if (isGroupchat) { |
|
setWindowIcon(QIcon(":/img/group.svg")); |
|
return; |
|
} |
|
|
|
Status::Status currentStatus = activeChatroomWidget->getFriend()->getStatus(); |
|
setWindowIcon(QIcon{Status::getIconPath(currentStatus)}); |
|
} |
|
|
|
/** |
|
* @brief Update layouts order according to settings. |
|
* @param groupOnTop If true move groupchat layout on the top. Move under online otherwise. |
|
*/ |
|
void ContentDialog::reorderLayouts(bool newGroupOnTop) |
|
{ |
|
bool oldGroupOnTop = layouts.first() == groupLayout.getLayout(); |
|
if (newGroupOnTop != oldGroupOnTop) { |
|
// Kriby: Maintain backwards compatibility |
|
#if (QT_VERSION >= QT_VERSION_CHECK(5, 13, 0)) |
|
layouts.swapItemsAt(0, 1); |
|
#else |
|
layouts.swap(0, 1); |
|
#endif |
|
} |
|
} |
|
|
|
void ContentDialog::previousChat() |
|
{ |
|
cycleChats(false); |
|
} |
|
|
|
/** |
|
* @brief Enable next chat. |
|
*/ |
|
void ContentDialog::nextChat() |
|
{ |
|
cycleChats(true); |
|
} |
|
|
|
/** |
|
* @brief Update username to show in the title. |
|
* @param newName New name to display. |
|
*/ |
|
void ContentDialog::setUsername(const QString& newName) |
|
{ |
|
username = newName; |
|
updateTitleAndStatusIcon(); |
|
} |
|
|
|
void ContentDialog::reloadTheme() |
|
{ |
|
setStyleSheet(style.getStylesheet("contentDialog/contentDialog.css", settings)); |
|
friendScroll->setStyleSheet(style.getStylesheet("friendList/friendList.css", settings)); |
|
} |
|
|
|
bool ContentDialog::event(QEvent* event) |
|
{ |
|
switch (event->type()) { |
|
case QEvent::WindowActivate: |
|
if (activeChatroomWidget) { |
|
activeChatroomWidget->resetEventFlags(); |
|
activeChatroomWidget->updateStatusLight(); |
|
|
|
updateTitleAndStatusIcon(); |
|
|
|
const Friend* frnd = activeChatroomWidget->getFriend(); |
|
Group* group = activeChatroomWidget->getGroup(); |
|
|
|
if (frnd) { |
|
emit friendDialogShown(frnd); |
|
} else if (group) { |
|
emit groupDialogShown(group); |
|
} |
|
} |
|
|
|
emit activated(); |
|
default: |
|
break; |
|
} |
|
|
|
return ActivateDialog::event(event); |
|
} |
|
|
|
void ContentDialog::dragEnterEvent(QDragEnterEvent* event) |
|
{ |
|
QObject* o = event->source(); |
|
FriendWidget* frnd = qobject_cast<FriendWidget*>(o); |
|
GroupWidget* group = qobject_cast<GroupWidget*>(o); |
|
if (frnd) { |
|
assert(event->mimeData()->hasFormat("toxPk")); |
|
ToxPk toxPk{event->mimeData()->data("toxPk")}; |
|
Friend* contact = friendList.findFriend(toxPk); |
|
if (!contact) { |
|
return; |
|
} |
|
|
|
ToxPk friendId = contact->getPublicKey(); |
|
|
|
// If friend is already in a dialog then you can't drop friend where it already is. |
|
if (!hasChat(friendId)) { |
|
event->acceptProposedAction(); |
|
} |
|
} else if (group) { |
|
assert(event->mimeData()->hasFormat("groupId")); |
|
GroupId groupId = GroupId{event->mimeData()->data("groupId")}; |
|
Group* contact = GroupList::findGroup(groupId); |
|
if (!contact) { |
|
return; |
|
} |
|
|
|
if (!hasChat(groupId)) { |
|
event->acceptProposedAction(); |
|
} |
|
} |
|
} |
|
|
|
void ContentDialog::dropEvent(QDropEvent* event) |
|
{ |
|
QObject* o = event->source(); |
|
FriendWidget* frnd = qobject_cast<FriendWidget*>(o); |
|
GroupWidget* group = qobject_cast<GroupWidget*>(o); |
|
if (frnd) { |
|
assert(event->mimeData()->hasFormat("toxPk")); |
|
const ToxPk toxId(event->mimeData()->data("toxPk")); |
|
Friend* contact = friendList.findFriend(toxId); |
|
if (!contact) { |
|
return; |
|
} |
|
|
|
emit addFriendDialog(contact, this); |
|
ensureSplitterVisible(); |
|
} else if (group) { |
|
assert(event->mimeData()->hasFormat("groupId")); |
|
const GroupId groupId(event->mimeData()->data("groupId")); |
|
Group* contact = GroupList::findGroup(groupId); |
|
if (!contact) { |
|
return; |
|
} |
|
|
|
emit addGroupDialog(contact, this); |
|
ensureSplitterVisible(); |
|
} |
|
} |
|
|
|
void ContentDialog::changeEvent(QEvent* event) |
|
{ |
|
QWidget::changeEvent(event); |
|
if (event->type() == QEvent::ActivationChange) { |
|
if (isActiveWindow()) { |
|
emit activated(); |
|
} |
|
} |
|
} |
|
|
|
void ContentDialog::resizeEvent(QResizeEvent* event) |
|
{ |
|
saveDialogGeometry(); |
|
QDialog::resizeEvent(event); |
|
} |
|
|
|
void ContentDialog::moveEvent(QMoveEvent* event) |
|
{ |
|
saveDialogGeometry(); |
|
QDialog::moveEvent(event); |
|
} |
|
|
|
void ContentDialog::keyPressEvent(QKeyEvent* event) |
|
{ |
|
// Ignore escape keyboard shortcut. |
|
if (event->key() != Qt::Key_Escape) { |
|
QDialog::keyPressEvent(event); |
|
} |
|
} |
|
|
|
void ContentDialog::focusChat(const ChatId& chatId) |
|
{ |
|
focusCommon(chatId, chatWidgets); |
|
} |
|
|
|
void ContentDialog::focusCommon(const ChatId& id, QHash<const ChatId&, GenericChatroomWidget*> list) |
|
{ |
|
auto it = list.find(id); |
|
if (it == list.end()) { |
|
return; |
|
} |
|
|
|
activate(*it); |
|
} |
|
|
|
/** |
|
* @brief Show ContentDialog, activate chatroom widget. |
|
* @param widget Widget which should be activated. |
|
*/ |
|
void ContentDialog::activate(GenericChatroomWidget* widget) |
|
{ |
|
// If we clicked on the currently active widget, don't reload and relayout everything |
|
if (activeChatroomWidget == widget) { |
|
return; |
|
} |
|
|
|
contentLayout->clear(); |
|
|
|
if (activeChatroomWidget) { |
|
activeChatroomWidget->setAsInactiveChatroom(); |
|
} |
|
|
|
activeChatroomWidget = widget; |
|
const Chat* chat = widget->getChat(); |
|
chatForms[chat->getPersistentId()]->show(contentLayout); |
|
|
|
widget->setAsActiveChatroom(); |
|
widget->resetEventFlags(); |
|
widget->updateStatusLight(); |
|
updateTitleAndStatusIcon(); |
|
} |
|
|
|
void ContentDialog::updateFriendStatus(const ToxPk& friendPk, Status::Status status) |
|
{ |
|
auto widget = qobject_cast<FriendWidget*>(chatWidgets.value(friendPk)); |
|
addFriendWidget(widget, status); |
|
} |
|
|
|
void ContentDialog::updateChatStatusLight(const ChatId& chatId) |
|
{ |
|
auto widget = chatWidgets.value(chatId); |
|
if (widget != nullptr) { |
|
widget->updateStatusLight(); |
|
} |
|
} |
|
|
|
bool ContentDialog::isChatActive(const ChatId& chatId) const |
|
{ |
|
auto widget = chatWidgets.value(chatId); |
|
if (widget == nullptr) { |
|
return false; |
|
} |
|
|
|
return widget->isActive(); |
|
} |
|
|
|
// TODO: Connect to widget directly |
|
void ContentDialog::setStatusMessage(const ToxPk& friendPk, const QString& message) |
|
{ |
|
auto widget = chatWidgets.value(friendPk); |
|
if (widget != nullptr) { |
|
widget->setStatusMsg(message); |
|
} |
|
} |
|
|
|
/** |
|
* @brief Update friend widget name and position. |
|
* @param friendId Friend Id. |
|
* @param alias Alias to display on widget. |
|
*/ |
|
void ContentDialog::updateFriendWidget(const ToxPk& friendPk, QString alias) |
|
{ |
|
std::ignore = alias; |
|
Friend* f = friendList.findFriend(friendPk); |
|
FriendWidget* friendWidget = qobject_cast<FriendWidget*>(chatWidgets[friendPk]); |
|
|
|
Status::Status status = f->getStatus(); |
|
friendLayout->addFriendWidget(friendWidget, status); |
|
} |
|
|
|
/** |
|
* @brief Handler of `groupchatPositionChanged` action. |
|
* Move group layout on the top or on the buttom. |
|
* |
|
* @param top If true, move group layout on the top, false otherwise. |
|
*/ |
|
void ContentDialog::onGroupchatPositionChanged(bool top) |
|
{ |
|
friendLayout->removeItem(groupLayout.getLayout()); |
|
friendLayout->insertLayout(top ? 0 : 1, groupLayout.getLayout()); |
|
} |
|
|
|
/** |
|
* @brief Retranslate all elements in the form. |
|
*/ |
|
void ContentDialog::retranslateUi() |
|
{ |
|
updateTitleAndStatusIcon(); |
|
} |
|
|
|
/** |
|
* @brief Save size of dialog window. |
|
*/ |
|
void ContentDialog::saveDialogGeometry() |
|
{ |
|
settings.setDialogGeometry(saveGeometry()); |
|
} |
|
|
|
/** |
|
* @brief Save state of splitter between dialog and dialog list. |
|
*/ |
|
void ContentDialog::saveSplitterState() |
|
{ |
|
settings.setDialogSplitterState(splitter->saveState()); |
|
} |
|
|
|
bool ContentDialog::hasChat(const ChatId& chatId) const |
|
{ |
|
return chatWidgets.contains(chatId); |
|
} |
|
|
|
/** |
|
* @brief Find the next or previous layout in layout list. |
|
* @param layout Current layout. |
|
* @param forward If true, move forward, backward othwerwise. |
|
* @return Next/previous layout. |
|
*/ |
|
QLayout* ContentDialog::nextLayout(QLayout* layout, bool forward) const |
|
{ |
|
int index = layouts.indexOf(layout); |
|
if (index == -1) { |
|
return nullptr; |
|
} |
|
|
|
int next = forward ? index + 1 : index - 1; |
|
size_t size = layouts.size(); |
|
next = (next + size) % size; |
|
|
|
return layouts[next]; |
|
} |
|
|
|
void ContentDialog::addFriendWidget(FriendWidget* widget, Status::Status status) |
|
{ |
|
friendLayout->addFriendWidget(widget, status); |
|
} |
|
|
|
bool ContentDialog::isActiveWidget(GenericChatroomWidget* widget) |
|
{ |
|
return activeChatroomWidget == widget; |
|
}
|
|
|