2014-07-07 00:19:45 +08:00
|
|
|
/*
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2014-06-25 04:11:11 +08:00
|
|
|
#ifndef SETTINGSFORM_H
|
|
|
|
#define SETTINGSFORM_H
|
|
|
|
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QString>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QSpacerItem>
|
2014-07-02 06:47:06 +08:00
|
|
|
#include <QCheckBox>
|
2014-07-05 00:49:19 +08:00
|
|
|
#include <QPushButton>
|
|
|
|
#include <QTextEdit>
|
|
|
|
#include "widget/tool/clickablelabel.h"
|
2014-06-25 04:11:11 +08:00
|
|
|
#include "ui_widget.h"
|
2014-06-29 04:11:42 +08:00
|
|
|
#include "widget/selfcamview.h"
|
2014-06-25 04:11:11 +08:00
|
|
|
|
|
|
|
class SettingsForm : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
SettingsForm();
|
|
|
|
~SettingsForm();
|
|
|
|
|
|
|
|
void show(Ui::Widget& ui);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void setFriendAddress(const QString& friendAddress);
|
|
|
|
|
2014-06-29 04:11:42 +08:00
|
|
|
private slots:
|
|
|
|
void onTestVideoClicked();
|
2014-07-02 06:47:06 +08:00
|
|
|
void onEnableIPv6Updated();
|
2014-07-05 01:22:43 +08:00
|
|
|
void onUseTranslationUpdated();
|
2014-07-13 04:58:58 +08:00
|
|
|
void onMakeToxPortableUpdated();
|
2014-07-05 00:49:19 +08:00
|
|
|
void copyIdClicked();
|
2014-06-29 04:11:42 +08:00
|
|
|
|
2014-06-25 04:11:11 +08:00
|
|
|
private:
|
2014-07-05 00:49:19 +08:00
|
|
|
QLabel headLabel, nameLabel, statusTextLabel;
|
|
|
|
QTextEdit id;
|
|
|
|
ClickableLabel idLabel;
|
2014-06-29 04:11:42 +08:00
|
|
|
QPushButton videoTest;
|
2014-07-13 04:58:58 +08:00
|
|
|
QCheckBox enableIPv6, useTranslations, makeToxPortable;
|
2014-06-25 04:11:11 +08:00
|
|
|
QVBoxLayout layout, headLayout;
|
|
|
|
QWidget *main, *head;
|
|
|
|
|
|
|
|
public:
|
|
|
|
QLineEdit name, statusText;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SETTINGSFORM_H
|