mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
added settingsdialog
This commit is contained in:
parent
c3a8cd01f3
commit
28e8406be9
5
core.cpp
5
core.cpp
@ -718,12 +718,11 @@ void Core::setUsername(const QString& username)
|
||||
}
|
||||
}
|
||||
|
||||
QString Core::getSelfId()
|
||||
ToxID Core::getSelfId()
|
||||
{
|
||||
uint8_t friendAddress[TOX_FRIEND_ADDRESS_SIZE];
|
||||
tox_get_address(tox, friendAddress);
|
||||
|
||||
return CFriendAddress::toString(friendAddress);
|
||||
return ToxID::fromString(CFriendAddress::toString(friendAddress));
|
||||
}
|
||||
|
||||
QString Core::getStatusMessage()
|
||||
|
2
core.h
2
core.h
@ -49,7 +49,7 @@ public:
|
||||
|
||||
QString getUsername();
|
||||
QString getStatusMessage();
|
||||
QString getSelfId();
|
||||
ToxID getSelfId();
|
||||
|
||||
void increaseVideoBusyness();
|
||||
void decreaseVideoBusyness();
|
||||
|
6
qtox.pro
6
qtox.pro
@ -109,7 +109,8 @@ HEADERS += widget/form/addfriendform.h \
|
||||
filetransferinstance.h \
|
||||
corestructs.h \
|
||||
coredefines.h \
|
||||
coreav.h
|
||||
coreav.h \
|
||||
widget/settingsdialog.h
|
||||
|
||||
SOURCES += \
|
||||
widget/form/addfriendform.cpp \
|
||||
@ -145,4 +146,5 @@ SOURCES += \
|
||||
widget/tool/chataction.cpp \
|
||||
widget/chatareawidget.cpp \
|
||||
filetransferinstance.cpp \
|
||||
corestructs.cpp
|
||||
corestructs.cpp \
|
||||
widget/settingsdialog.cpp
|
||||
|
@ -95,7 +95,7 @@ void AddFriendForm::onSendTriggered()
|
||||
if (id.isEmpty()) {
|
||||
showWarning(tr("Please fill in a valid Tox ID","Tox ID of the friend you're sending a friend request to"));
|
||||
} else if (isToxId(id)) {
|
||||
if (id.toUpper() == Core::getInstance()->getSelfId().toUpper())
|
||||
if (id.toUpper() == Core::getInstance()->getSelfId().toString().toUpper())
|
||||
showWarning(tr("You can't add yourself as a friend !","When trying to add your own Tox ID as friend"));
|
||||
else
|
||||
emit friendRequested(id, getMessage());
|
||||
|
355
widget/settingsdialog.cpp
Normal file
355
widget/settingsdialog.cpp
Normal file
@ -0,0 +1,355 @@
|
||||
#include "settingsdialog.h"
|
||||
#include "settings.h"
|
||||
#include "widget.h"
|
||||
#include "camera.h"
|
||||
#include "selfcamview.h"
|
||||
#include "core.h"
|
||||
|
||||
#include <QListWidget>
|
||||
#include <QListWidgetItem>
|
||||
#include <QStackedWidget>
|
||||
#include <QPushButton>
|
||||
#include <QBoxLayout>
|
||||
#include <QLabel>
|
||||
#include <QGroupBox>
|
||||
#include <QCheckBox>
|
||||
#include <QLineEdit>
|
||||
|
||||
|
||||
// =======================================
|
||||
// settings pages
|
||||
//========================================
|
||||
class GeneralPage : public QWidget
|
||||
{
|
||||
public:
|
||||
GeneralPage(QWidget *parent = 0) :
|
||||
QWidget(parent)
|
||||
{
|
||||
QGroupBox *group = new QGroupBox(tr("General Settings"), this);
|
||||
|
||||
enableIPv6 = new QCheckBox(this);
|
||||
enableIPv6->setText(tr("Enable IPv6 (recommended)","Text on a checkbox to enable IPv6"));
|
||||
useTranslations = new QCheckBox(this);
|
||||
useTranslations->setText(tr("Use translations","Text on a checkbox to enable translations"));
|
||||
makeToxPortable = new QCheckBox(this);
|
||||
makeToxPortable->setText(tr("Make Tox portable","Text on a checkbox to make qTox a portable application"));
|
||||
makeToxPortable->setToolTip(tr("Save settings to the working directory instead of the usual conf dir","describes makeToxPortable checkbox"));
|
||||
|
||||
QVBoxLayout *vLayout = new QVBoxLayout();
|
||||
vLayout->addWidget(enableIPv6);
|
||||
vLayout->addWidget(useTranslations);
|
||||
vLayout->addWidget(makeToxPortable);
|
||||
group->setLayout(vLayout);
|
||||
|
||||
QVBoxLayout *mainLayout = new QVBoxLayout();
|
||||
mainLayout->addWidget(group);
|
||||
mainLayout->addStretch(1);
|
||||
setLayout(mainLayout);
|
||||
}
|
||||
|
||||
QCheckBox* enableIPv6;
|
||||
QCheckBox* useTranslations;
|
||||
QCheckBox* makeToxPortable;
|
||||
};
|
||||
|
||||
class IdentityPage : public QWidget
|
||||
{
|
||||
public:
|
||||
IdentityPage(QWidget* parent = 0) :
|
||||
QWidget(parent)
|
||||
{
|
||||
// public
|
||||
QGroupBox *publicGroup = new QGroupBox(tr("Public Information"), this);
|
||||
QLabel* userNameLabel = new QLabel(tr("Name","Username/nick"), this);
|
||||
userName = new QLineEdit(this);
|
||||
QLabel* statusMessageLabel = new QLabel(tr("Status","Status message"), this);
|
||||
statusMessage = new QLineEdit(this);
|
||||
QVBoxLayout *vLayout = new QVBoxLayout();
|
||||
vLayout->addWidget(userNameLabel);
|
||||
vLayout->addWidget(userName);
|
||||
vLayout->addWidget(statusMessageLabel);
|
||||
vLayout->addWidget(statusMessage);
|
||||
publicGroup->setLayout(vLayout);
|
||||
|
||||
// tox
|
||||
QGroupBox* toxGroup = new QGroupBox(tr("Tox ID"), this);
|
||||
QLabel* toxIdLabel = new QLabel(tr("Your Tox ID"), this);
|
||||
toxID = new QLineEdit(this);
|
||||
toxID->setReadOnly(true);
|
||||
QVBoxLayout* toxLayout = new QVBoxLayout();
|
||||
toxLayout->addWidget(toxIdLabel);
|
||||
toxLayout->addWidget(toxID);
|
||||
toxGroup->setLayout(toxLayout);
|
||||
|
||||
QVBoxLayout *mainLayout = new QVBoxLayout();
|
||||
mainLayout->setSpacing(30);
|
||||
mainLayout->addWidget(publicGroup);
|
||||
mainLayout->addWidget(toxGroup);
|
||||
mainLayout->addStretch(1);
|
||||
setLayout(mainLayout);
|
||||
}
|
||||
|
||||
QLineEdit* userName;
|
||||
QLineEdit* statusMessage;
|
||||
QLineEdit* toxID;
|
||||
};
|
||||
|
||||
class PrivacyPage : public QWidget
|
||||
{
|
||||
public:
|
||||
PrivacyPage(QWidget* parent = 0) :
|
||||
QWidget(parent)
|
||||
{}
|
||||
};
|
||||
|
||||
class AVPage : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
AVPage(SettingsDialog* parent = 0) :
|
||||
QWidget(parent)
|
||||
{
|
||||
QGroupBox *group = new QGroupBox(tr("Video Settings"), this);
|
||||
|
||||
camView = new SelfCamView(Camera::getInstance());
|
||||
camView->hide(); // hide by default
|
||||
testVideo = new QPushButton("enable video");
|
||||
connect(testVideo, SIGNAL(clicked()), this, SLOT(onTestVideoPressed()));
|
||||
|
||||
QVBoxLayout *vLayout = new QVBoxLayout();
|
||||
vLayout->addWidget(testVideo);
|
||||
vLayout->addWidget(camView);
|
||||
group->setLayout(vLayout);
|
||||
|
||||
QVBoxLayout *mainLayout = new QVBoxLayout();
|
||||
mainLayout->addWidget(group);
|
||||
mainLayout->addStretch(1);
|
||||
setLayout(mainLayout);
|
||||
}
|
||||
|
||||
~AVPage()
|
||||
{
|
||||
delete camView;
|
||||
}
|
||||
|
||||
void showTestVideo()
|
||||
{
|
||||
testVideo->setText("disable video");
|
||||
camView->show();
|
||||
}
|
||||
|
||||
void closeTestVideo()
|
||||
{
|
||||
testVideo->setText("enable video");
|
||||
camView->close();
|
||||
}
|
||||
|
||||
QPushButton* testVideo;
|
||||
SelfCamView* camView;
|
||||
|
||||
public slots:
|
||||
void onTestVideoPressed()
|
||||
{
|
||||
if (camView->isVisible()) {
|
||||
closeTestVideo();
|
||||
} else {
|
||||
showTestVideo();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
// allows Q_OBJECT macro inside cpp
|
||||
#include "settingsdialog.moc"
|
||||
|
||||
|
||||
|
||||
// =======================================
|
||||
// settings dialog
|
||||
//========================================
|
||||
SettingsDialog::SettingsDialog(Widget *parent) :
|
||||
QDialog(parent),
|
||||
widget(parent)
|
||||
{
|
||||
createPages();
|
||||
createButtons();
|
||||
createConnections();
|
||||
createLayout();
|
||||
setWindowTitle(tr("Settings Dialog"));
|
||||
}
|
||||
|
||||
void SettingsDialog::createPages()
|
||||
{
|
||||
generalPage = new GeneralPage(this);
|
||||
identityPage = new IdentityPage(this);
|
||||
privacyPage = new PrivacyPage(this);
|
||||
avPage = new AVPage(this);
|
||||
|
||||
contentsWidget = new QListWidget;
|
||||
contentsWidget->setViewMode(QListView::IconMode);
|
||||
contentsWidget->setIconSize(QSize(100, 73));
|
||||
contentsWidget->setMovement(QListView::Static);
|
||||
contentsWidget->setMaximumWidth(110);
|
||||
contentsWidget->setMinimumWidth(110);
|
||||
contentsWidget->setSpacing(0);
|
||||
contentsWidget->setFlow(QListView::TopToBottom);
|
||||
|
||||
pagesWidget = new QStackedWidget;
|
||||
pagesWidget->addWidget(generalPage);
|
||||
pagesWidget->addWidget(identityPage);
|
||||
pagesWidget->addWidget(privacyPage);
|
||||
pagesWidget->addWidget(avPage);
|
||||
|
||||
QListWidgetItem *generalButton = new QListWidgetItem(contentsWidget);
|
||||
generalButton->setIcon(QIcon(":/img/settings/general.png"));
|
||||
generalButton->setText(tr("General"));
|
||||
generalButton->setTextAlignment(Qt::AlignHCenter);
|
||||
generalButton->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled);
|
||||
|
||||
QListWidgetItem *identity = new QListWidgetItem(contentsWidget);
|
||||
identity->setIcon(QIcon(":/img/settings/identity.png"));
|
||||
identity->setText(tr("Identity"));
|
||||
identity->setTextAlignment(Qt::AlignHCenter);
|
||||
identity->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled);
|
||||
|
||||
QListWidgetItem *privacy = new QListWidgetItem(contentsWidget);
|
||||
privacy->setIcon(QIcon(":/img/settings/privacy.png"));
|
||||
privacy->setText(tr("Privacy"));
|
||||
privacy->setTextAlignment(Qt::AlignHCenter);
|
||||
privacy->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled);
|
||||
|
||||
QListWidgetItem *av = new QListWidgetItem(contentsWidget);
|
||||
av->setIcon(QIcon(":/img/settings/av.png"));
|
||||
av->setText(tr("Audio/Video"));
|
||||
av->setTextAlignment(Qt::AlignHCenter);
|
||||
av->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled);
|
||||
|
||||
contentsWidget->setCurrentRow(0);
|
||||
}
|
||||
|
||||
void SettingsDialog::createButtons()
|
||||
{
|
||||
okButton = new QPushButton(tr("Ok"), this);
|
||||
cancelButton = new QPushButton(tr("Cancel"), this);
|
||||
applyButton = new QPushButton(tr("Apply"), this);
|
||||
}
|
||||
|
||||
void SettingsDialog::createConnections()
|
||||
{
|
||||
connect(okButton, SIGNAL(clicked()), this, SLOT(okPressed()));
|
||||
connect(cancelButton, SIGNAL(clicked()), this, SLOT(close()));
|
||||
connect(applyButton, SIGNAL(clicked()), this, SLOT(applyPressed()));
|
||||
connect(
|
||||
contentsWidget,
|
||||
SIGNAL(currentItemChanged(QListWidgetItem*,QListWidgetItem*)),
|
||||
this,
|
||||
SLOT(changePage(QListWidgetItem*,QListWidgetItem*))
|
||||
);
|
||||
}
|
||||
|
||||
void SettingsDialog::createLayout()
|
||||
{
|
||||
setMinimumSize(800, 500);
|
||||
|
||||
QHBoxLayout *buttonsLayout = new QHBoxLayout();
|
||||
buttonsLayout->addStretch(1);
|
||||
buttonsLayout->addWidget(okButton);
|
||||
buttonsLayout->addWidget(cancelButton);
|
||||
buttonsLayout->addWidget(applyButton);
|
||||
|
||||
QHBoxLayout *hLayout = new QHBoxLayout();
|
||||
hLayout->addWidget(contentsWidget);
|
||||
hLayout->addWidget(pagesWidget, 1);
|
||||
|
||||
QVBoxLayout *mainLayout = new QVBoxLayout();
|
||||
mainLayout->addLayout(hLayout);
|
||||
mainLayout->addLayout(buttonsLayout);
|
||||
setLayout(mainLayout);
|
||||
}
|
||||
|
||||
void SettingsDialog::changePage(QListWidgetItem *current, QListWidgetItem *previous)
|
||||
{
|
||||
if (!current) {
|
||||
current = previous;
|
||||
}
|
||||
pagesWidget->setCurrentIndex(contentsWidget->row(current));
|
||||
}
|
||||
|
||||
void SettingsDialog::okPressed()
|
||||
{
|
||||
writeConfig();
|
||||
close();
|
||||
}
|
||||
|
||||
void SettingsDialog::cancelPressed()
|
||||
{
|
||||
close();
|
||||
}
|
||||
|
||||
void SettingsDialog::applyPressed()
|
||||
{
|
||||
writeConfig();
|
||||
}
|
||||
|
||||
void SettingsDialog::readConfig()
|
||||
{
|
||||
Settings& settings = Settings::getInstance();
|
||||
Core* core = widget->getCore();
|
||||
|
||||
generalPage->enableIPv6->setChecked(settings.getEnableIPv6());
|
||||
generalPage->useTranslations->setChecked(settings.getUseTranslations());
|
||||
generalPage->makeToxPortable->setChecked(settings.getMakeToxPortable());
|
||||
|
||||
identityPage->userName->setText(core->getUsername());
|
||||
identityPage->statusMessage->setText(core->getStatusMessage());
|
||||
identityPage->toxID->setText(core->getSelfId().toString());
|
||||
}
|
||||
|
||||
void SettingsDialog::writeConfig()
|
||||
{
|
||||
Settings& settings = Settings::getInstance();
|
||||
Core* core = widget->getCore();
|
||||
|
||||
|
||||
// only save settings if something changed
|
||||
bool saveSettings = false;
|
||||
if (settings.getEnableIPv6() != generalPage->enableIPv6->isChecked()) {
|
||||
settings.setEnableIPv6(generalPage->enableIPv6->isChecked());
|
||||
saveSettings = true;
|
||||
}
|
||||
|
||||
if (settings.getUseTranslations() != generalPage->useTranslations->isChecked()) {
|
||||
settings.setUseTranslations(generalPage->useTranslations->isChecked());
|
||||
saveSettings = true;
|
||||
}
|
||||
|
||||
if (settings.getMakeToxPortable() != generalPage->makeToxPortable->isChecked()) {
|
||||
settings.setMakeToxPortable(generalPage->makeToxPortable->isChecked());
|
||||
saveSettings = true;
|
||||
}
|
||||
|
||||
if (saveSettings) {
|
||||
settings.save();
|
||||
}
|
||||
|
||||
|
||||
// changing core settings will automatically save them
|
||||
QString userName = identityPage->userName->text();
|
||||
if (core->getUsername() != userName) {
|
||||
core->setUsername(userName);
|
||||
}
|
||||
|
||||
QString statusMessage = identityPage->statusMessage->text();
|
||||
if (core->getStatusMessage() != statusMessage) {
|
||||
core->setStatusMessage(statusMessage);
|
||||
}
|
||||
}
|
||||
|
||||
Widget* SettingsDialog::getWidget()
|
||||
{
|
||||
return widget;
|
||||
}
|
||||
|
||||
void SettingsDialog::closeEvent(QCloseEvent* e){
|
||||
avPage->closeTestVideo();
|
||||
QDialog::closeEvent(e);
|
||||
}
|
64
widget/settingsdialog.h
Normal file
64
widget/settingsdialog.h
Normal file
@ -0,0 +1,64 @@
|
||||
#ifndef SETTINGSDIALOG_H
|
||||
#define SETTINGSDIALOG_H
|
||||
|
||||
#include <QWidget>
|
||||
#include <QDialog>
|
||||
|
||||
class Widget;
|
||||
class SelfCamView;
|
||||
class Camera;
|
||||
class GeneralPage;
|
||||
class IdentityPage;
|
||||
class PrivacyPage;
|
||||
class AVPage;
|
||||
|
||||
class QListWidget;
|
||||
class QListWidgetItem;
|
||||
class QStackedWidget;
|
||||
class QPushButton;
|
||||
class QCheckBox;
|
||||
class QLineEdit;
|
||||
|
||||
// =======================================
|
||||
// settings dialog
|
||||
//========================================
|
||||
class SettingsDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit SettingsDialog(Widget *parent);
|
||||
|
||||
void readConfig();
|
||||
void writeConfig();
|
||||
Widget* getWidget();
|
||||
void closeEvent(QCloseEvent *);
|
||||
|
||||
public slots:
|
||||
void changePage(QListWidgetItem *current, QListWidgetItem *previous);
|
||||
void okPressed();
|
||||
void cancelPressed();
|
||||
void applyPressed();
|
||||
|
||||
private:
|
||||
void createPages();
|
||||
void createButtons();
|
||||
void createConnections();
|
||||
void createLayout();
|
||||
|
||||
Widget* widget;
|
||||
|
||||
// pages
|
||||
GeneralPage* generalPage;
|
||||
IdentityPage* identityPage;
|
||||
PrivacyPage* privacyPage;
|
||||
AVPage* avPage;
|
||||
QListWidget* contentsWidget;
|
||||
QStackedWidget* pagesWidget;
|
||||
|
||||
// buttons
|
||||
QPushButton* okButton;
|
||||
QPushButton* cancelButton;
|
||||
QPushButton* applyButton;
|
||||
};
|
||||
|
||||
#endif // SETTINGSDIALOG_H
|
Loading…
x
Reference in New Issue
Block a user