1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/widget/form/settingsform.h

68 lines
1.8 KiB
C
Raw Normal View History

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>
#include <QPushButton>
#include <QTextEdit>
2014-07-30 15:18:41 +08:00
#include <QComboBox>
#include "widget/tool/clickablelabel.h"
#include "ui_mainwindow.h"
#include "widget/selfcamview.h"
2014-06-25 04:11:11 +08:00
class SettingsForm : public QObject
{
Q_OBJECT
public:
SettingsForm();
~SettingsForm();
void show(Ui::MainWindow &ui);
2014-06-25 04:11:11 +08:00
public slots:
void setFriendAddress(const QString& friendAddress);
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-31 23:36:55 +08:00
void onSmileyBrowserIndexChanged(int index);
void copyIdClicked();
2014-06-25 04:11:11 +08:00
private:
2014-07-25 20:52:14 +08:00
QLabel headLabel, nameLabel, statusTextLabel, smileyPackLabel;
QTextEdit id;
ClickableLabel idLabel;
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;
2014-07-30 15:18:41 +08:00
QComboBox smileyPackBrowser;
2014-06-25 04:11:11 +08:00
public:
QLineEdit name, statusText;
};
#endif // SETTINGSFORM_H