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>
|
2014-07-17 06:43:30 +08:00
|
|
|
#include <QComboBox>
|
|
|
|
#include <QDir>
|
|
|
|
#include <QFileInfo>
|
2014-07-17 09:00:23 +08:00
|
|
|
#include <QFileDialog>
|
2014-07-05 00:49:19 +08:00
|
|
|
#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-07-17 09:00:23 +08:00
|
|
|
#include "core.h"
|
2014-06-25 04:11:11 +08:00
|
|
|
|
|
|
|
class SettingsForm : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-07-17 09:00:23 +08:00
|
|
|
SettingsForm(Core* core);
|
2014-06-25 04:11:11 +08:00
|
|
|
~SettingsForm();
|
|
|
|
|
|
|
|
void show(Ui::Widget& ui);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void setFriendAddress(const QString& friendAddress);
|
|
|
|
|
2014-06-29 04:11:42 +08:00
|
|
|
private slots:
|
2014-07-17 09:00:23 +08:00
|
|
|
void onLoadClicked();
|
|
|
|
void onExportClicked();
|
|
|
|
void onDeleteClicked();
|
|
|
|
void onImportClicked();
|
2014-06-29 04:11:42 +08:00
|
|
|
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-17 06:43:30 +08:00
|
|
|
QLabel headLabel;/*, nameLabel, statusTextLabel;*/
|
2014-07-05 00:49:19 +08:00
|
|
|
QTextEdit id;
|
|
|
|
ClickableLabel idLabel;
|
2014-07-17 06:43:30 +08:00
|
|
|
QLabel profilesLabel;
|
|
|
|
QComboBox profiles;
|
|
|
|
QPushButton loadConf, exportConf, delConf, importConf, videoTest;
|
|
|
|
QHBoxLayout cbox, buttons;
|
2014-07-13 04:58:58 +08:00
|
|
|
QCheckBox enableIPv6, useTranslations, makeToxPortable;
|
2014-06-25 04:11:11 +08:00
|
|
|
QVBoxLayout layout, headLayout;
|
2014-07-17 06:43:30 +08:00
|
|
|
QWidget *main, *head, *hboxcont1, *hboxcont2;
|
|
|
|
void populateProfiles();
|
2014-07-17 09:00:23 +08:00
|
|
|
QString getSelectedSavePath();
|
|
|
|
Core* core;
|
2014-06-25 04:11:11 +08:00
|
|
|
|
|
|
|
public:
|
2014-07-17 06:43:30 +08:00
|
|
|
//QLineEdit name, statusText;
|
2014-06-25 04:11:11 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SETTINGSFORM_H
|