mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
2e2e61962d
Fixes #50
42 lines
788 B
C++
42 lines
788 B
C++
#ifndef SETTINGSFORM_H
|
|
#define SETTINGSFORM_H
|
|
|
|
#include <QVBoxLayout>
|
|
#include <QLabel>
|
|
#include <QLineEdit>
|
|
#include <QString>
|
|
#include <QObject>
|
|
#include <QSpacerItem>
|
|
#include <QCheckBox>
|
|
#include "ui_widget.h"
|
|
#include "widget/selfcamview.h"
|
|
|
|
class SettingsForm : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SettingsForm();
|
|
~SettingsForm();
|
|
|
|
void show(Ui::Widget& ui);
|
|
|
|
public slots:
|
|
void setFriendAddress(const QString& friendAddress);
|
|
|
|
private slots:
|
|
void onTestVideoClicked();
|
|
void onEnableIPv6Updated();
|
|
|
|
private:
|
|
QLabel headLabel, nameLabel, statusTextLabel, idLabel, id;
|
|
QPushButton videoTest;
|
|
QCheckBox enableIPv6;
|
|
QVBoxLayout layout, headLayout;
|
|
QWidget *main, *head;
|
|
|
|
public:
|
|
QLineEdit name, statusText;
|
|
};
|
|
|
|
#endif // SETTINGSFORM_H
|