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.
149 lines
5.3 KiB
149 lines
5.3 KiB
/* |
|
Copyright (C) 2014 by Project Tox <https://tox.im> |
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox. |
|
|
|
This program 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. |
|
This program 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 COPYING file for more details. |
|
*/ |
|
|
|
#include "settingsform.h" |
|
#include "widget/widget.h" |
|
#include "settings.h" |
|
#include <QFont> |
|
#include <QClipboard> |
|
#include <QApplication> |
|
|
|
SettingsForm::SettingsForm() |
|
: QObject() |
|
{ |
|
main = new QWidget(), head = new QWidget(); |
|
hboxcont1 = new QWidget(), hboxcont2 = new QWidget(); |
|
QFont bold, small; |
|
bold.setBold(true); |
|
small.setPixelSize(13); |
|
headLabel.setText(tr("User Settings","\"Headline\" of the window")); |
|
headLabel.setFont(bold); |
|
|
|
//nameLabel.setText(tr("Name","Username/nick")); |
|
//statusTextLabel.setText(tr("Status","Status message")); |
|
|
|
idLabel.setText("Tox ID " + tr("(click here to copy)", "Click on this text to copy TID to clipboard")); |
|
id.setFont(small); |
|
id.setTextInteractionFlags(Qt::TextSelectableByMouse); |
|
id.setReadOnly(true); |
|
id.setFrameStyle(QFrame::NoFrame); |
|
id.setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); |
|
id.setFixedHeight(id.document()->size().height()); |
|
|
|
profilesLabel.setText(tr("Available profiles:", "Labels the profile selection box")); |
|
populateProfiles(); |
|
loadConf.setText(tr("Load profile", "button to load selected profile")); |
|
exportConf.setText(tr("Export profile", "button to save selected profile elsewhere")); |
|
delConf.setText(tr("Delete profile", "button to delete selected profile from disk")); |
|
delConf.setToolTip(tr("This is useful to remain safe on public computers", "describes the delete profile button")); |
|
//delConf.setWhatsThis(tr("This is useful to remain safe on public computers", "describes the delete profile button")); |
|
importConf.setText(tr("Import profile", "button to locate a profile")); |
|
|
|
videoTest.setText(tr("Test video","Text on a button to test the video/webcam")); |
|
enableIPv6.setText(tr("Enable IPv6 (recommended)","Text on a checkbox to enable IPv6")); |
|
enableIPv6.setChecked(Settings::getInstance().getEnableIPv6()); |
|
useTranslations.setText(tr("Use translations","Text on a checkbox to enable translations")); |
|
useTranslations.setChecked(Settings::getInstance().getUseTranslations()); |
|
makeToxPortable.setText(tr("Make Tox portable","Text on a checkbox to make qTox a portable application")); |
|
makeToxPortable.setChecked(Settings::getInstance().getMakeToxPortable()); |
|
|
|
main->setLayout(&layout); |
|
//layout.addWidget(&nameLabel); |
|
//layout.addWidget(&name); |
|
//layout.addWidget(&statusTextLabel); |
|
//layout.addWidget(&statusText); |
|
layout.addWidget(&idLabel); |
|
layout.addWidget(&id); |
|
cbox.addWidget(&profilesLabel); |
|
cbox.addWidget(&profiles); |
|
hboxcont1->setLayout(&cbox); |
|
layout.addWidget(hboxcont1); |
|
buttons.addWidget(&loadConf); |
|
buttons.addWidget(&exportConf); |
|
buttons.addWidget(&delConf); |
|
hboxcont2->setLayout(&buttons); |
|
layout.addWidget(hboxcont2); |
|
layout.addWidget(&importConf); |
|
layout.addWidget(&videoTest); |
|
layout.addWidget(&enableIPv6); |
|
layout.addWidget(&useTranslations); |
|
layout.addWidget(&makeToxPortable); |
|
layout.addStretch(); |
|
|
|
head->setLayout(&headLayout); |
|
headLayout.addWidget(&headLabel); |
|
|
|
connect(&videoTest, SIGNAL(clicked()), this, SLOT(onTestVideoClicked())); |
|
connect(&enableIPv6, SIGNAL(stateChanged(int)), this, SLOT(onEnableIPv6Updated())); |
|
connect(&useTranslations, SIGNAL(stateChanged(int)), this, SLOT(onUseTranslationUpdated())); |
|
connect(&makeToxPortable, SIGNAL(stateChanged(int)), this, SLOT(onMakeToxPortableUpdated())); |
|
connect(&idLabel, SIGNAL(clicked()), this, SLOT(copyIdClicked())); |
|
} |
|
|
|
SettingsForm::~SettingsForm() |
|
{ |
|
} |
|
|
|
void SettingsForm::populateProfiles() |
|
{ |
|
QDir dir(Settings::getSettingsDirPath()); |
|
dir.setFilter(QDir::Files | QDir::NoDotAndDotDot); |
|
dir.setNameFilters(QStringList("*.tox")); |
|
for(QFileInfo file : dir.entryInfoList()) { |
|
profiles.addItem(file.completeBaseName()); |
|
} |
|
} |
|
|
|
void SettingsForm::setFriendAddress(const QString& friendAddress) |
|
{ |
|
id.setText(friendAddress); |
|
} |
|
|
|
void SettingsForm::show(Ui::Widget &ui) |
|
{ |
|
//name.setText(ui.nameLabel->text()); |
|
//statusText.setText(ui.statusLabel->text()); |
|
ui.mainContent->layout()->addWidget(main); |
|
ui.mainHead->layout()->addWidget(head); |
|
main->show(); |
|
head->show(); |
|
} |
|
|
|
void SettingsForm::onTestVideoClicked() |
|
{ |
|
Widget::getInstance()->showTestCamview(); |
|
} |
|
|
|
void SettingsForm::onEnableIPv6Updated() |
|
{ |
|
Settings::getInstance().setEnableIPv6(enableIPv6.isChecked()); |
|
} |
|
|
|
void SettingsForm::copyIdClicked() |
|
{ |
|
id.selectAll();; |
|
QApplication::clipboard()->setText(id.toPlainText()); |
|
} |
|
|
|
void SettingsForm::onUseTranslationUpdated() |
|
{ |
|
Settings::getInstance().setUseTranslations(useTranslations.isChecked()); |
|
} |
|
|
|
void SettingsForm::onMakeToxPortableUpdated() |
|
{ |
|
Settings::getInstance().setMakeToxPortable(makeToxPortable.isChecked()); |
|
}
|
|
|