2014-09-15 18:45:59 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GENERALFORM_H
|
|
|
|
#define GENERALFORM_H
|
|
|
|
|
|
|
|
#include "genericsettings.h"
|
2014-09-30 17:44:27 +08:00
|
|
|
#include <QComboBox>
|
2014-09-15 18:45:59 +08:00
|
|
|
#include <QCheckBox>
|
|
|
|
|
2014-10-06 00:17:01 +08:00
|
|
|
namespace Ui {
|
|
|
|
class GeneralSettings;
|
|
|
|
}
|
|
|
|
|
2014-09-15 18:45:59 +08:00
|
|
|
class GeneralForm : public GenericForm
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
GeneralForm();
|
|
|
|
~GeneralForm();
|
|
|
|
|
2014-09-30 17:44:27 +08:00
|
|
|
private slots:
|
|
|
|
void onEnableIPv6Updated();
|
|
|
|
void onUseTranslationUpdated();
|
|
|
|
void onMakeToxPortableUpdated();
|
|
|
|
void onSmileyBrowserIndexChanged(int index);
|
2014-10-06 04:49:44 +08:00
|
|
|
void onUDPUpdated();
|
|
|
|
void onProxyAddrEdited();
|
2014-10-07 10:09:15 +08:00
|
|
|
void onProxyPortEdited(int port);
|
|
|
|
void onUseProxyUpdated();
|
2014-09-30 17:44:27 +08:00
|
|
|
|
2014-09-15 18:45:59 +08:00
|
|
|
private:
|
2014-10-06 00:17:01 +08:00
|
|
|
Ui::GeneralSettings *bodyUI;
|
2014-09-15 18:45:59 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|