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

refactor: remove dead code

This commit is contained in:
sudden6 2019-04-04 23:02:54 +02:00
parent 9b6019390b
commit 0da72e22d3
No known key found for this signature in database
GPG Key ID: 279509B499E032B9
5 changed files with 0 additions and 181 deletions

View File

@ -21,12 +21,7 @@
#ifndef AUDIO_H
#define AUDIO_H
#include <atomic>
#include <cmath>
#include <QMutex>
#include <QObject>
#include <QTimer>
#include <cassert>

View File

@ -219,7 +219,6 @@ private:
bool parseConferenceJoinError(Tox_Err_Conference_Join error) const;
bool checkConnection();
void checkEncryptedHistory();
void makeTox(QByteArray savedata, ICoreSettings* s);
void loadFriends();
void loadGroups();
@ -253,9 +252,6 @@ private:
mutable QMutex coreLoopLock{QMutex::Recursive};
std::unique_ptr<QThread> coreThread = nullptr;
friend class Audio; ///< Audio can access our calls directly to reduce latency
friend class CoreAV; ///< CoreAV accesses our toxav* for now
};
#endif // CORE_HPP

View File

@ -25,7 +25,6 @@
#include <QObject>
#include <QSharedMemory>
#include <QTimer>
#include <QVector>
#include <ctime>
#include <functional>

View File

@ -61,17 +61,6 @@ GUI& GUI::getInstance()
// Implementation of the public clean interface
/**
* @brief Clear the GUI's contact list.
*/
void GUI::clearContacts()
{
if (QThread::currentThread() == qApp->thread())
getInstance()._clearContacts();
else
QMetaObject::invokeMethod(&getInstance(), "_clearContacts", Qt::BlockingQueuedConnection);
}
/**
* @brief Will enable or disable the GUI.
* @note A disabled GUI can't be interacted with by the user.
@ -115,19 +104,6 @@ void GUI::reloadTheme()
}
}
/**
* @brief Optionally switches to a view of the qTox update being downloaded.
*/
void GUI::showUpdateDownloadProgress()
{
if (QThread::currentThread() == qApp->thread()) {
getInstance()._showUpdateDownloadProgress();
} else {
QMetaObject::invokeMethod(&getInstance(), "_showUpdateDownloadProgress",
Qt::BlockingQueuedConnection);
}
}
/**
* @brief Show some text to the user.
* @param title Title of information window.
@ -228,72 +204,8 @@ bool GUI::askQuestion(const QString& title, const QString& msg, const QString& b
}
}
/**
* @brief Asks the user to input text and returns the answer.
*
* The interface is equivalent to QInputDialog::getItem()
* @param parent Is the dialog's parent widget
* @param title Is the text which is displayed in the title bar of the dialog.
* @param label Is the text which is shown to the user (it should say what should be entered).
* @param items Is the string list which is inserted into the combobox.
* @param current Is the number of the item which should be the current item.
* @param editable If is true the user can enter their own text, otherwise the user may only select
* one of the existing items.
* @param ok If is nonnull will be set to true if the user pressed OK and to false if the user
* pressed Cancel.
* @param flags The dialog will uses to widget flags.
* @param hints Is the input method hints that will be used if the combobox is editable and an input
* method is active.
* @return This function returns the text of the current item, or if editable is true, the current
* text of the combobox.
*/
QString GUI::itemInputDialog(QWidget* parent, const QString& title, const QString& label,
const QStringList& items, int current, bool editable, bool* ok,
Qt::WindowFlags flags, Qt::InputMethodHints hints)
{
if (QThread::currentThread() == qApp->thread()) {
return getInstance()._itemInputDialog(parent, title, label, items, current, editable, ok,
flags, hints);
} else {
QString r;
QMetaObject::invokeMethod(&getInstance(), "_itemInputDialog", Qt::BlockingQueuedConnection,
Q_RETURN_ARG(QString, r), Q_ARG(QWidget*, parent),
Q_ARG(const QString&, title), Q_ARG(const QString&, label),
Q_ARG(const QStringList&, items), Q_ARG(int, current),
Q_ARG(bool, editable), Q_ARG(bool*, ok),
Q_ARG(Qt::WindowFlags, flags), Q_ARG(Qt::InputMethodHints, hints));
return r;
}
}
/**
* @brief Asks the user to answer a password.
* @param cancel Is the text on the cancel button.
* @param body Is descriptive text that will be shown to the user.
* @return Entered password.
*/
QString GUI::passwordDialog(const QString& cancel, const QString& body)
{
if (QThread::currentThread() == qApp->thread()) {
return getInstance()._passwordDialog(cancel, body);
} else {
QString r;
QMetaObject::invokeMethod(&getInstance(), "_passwordDialog", Qt::BlockingQueuedConnection,
Q_RETURN_ARG(QString, r), Q_ARG(const QString&, cancel),
Q_ARG(const QString&, body));
return r;
}
}
// Private implementations
void GUI::_clearContacts()
{
Widget* w = Nexus::getDesktopGUI();
if (w)
w->clearContactsList();
}
void GUI::_setEnabled(bool state)
{
Widget* w = Nexus::getDesktopGUI();
@ -340,13 +252,6 @@ void GUI::_showError(const QString& title, const QString& msg)
messageBox.exec();
}
void GUI::_showUpdateDownloadProgress()
{
Widget* w = Nexus::getDesktopGUI();
if (w)
w->showUpdateDownloadProgress();
}
bool GUI::_askQuestion(const QString& title, const QString& msg, bool defaultAns, bool warning,
bool yesno)
{
@ -370,67 +275,6 @@ bool GUI::_askQuestion(const QString& title, const QString& msg, const QString&
return box.clickedButton() == pushButton1;
}
QString GUI::_itemInputDialog(QWidget* parent, const QString& title, const QString& label,
const QStringList& items, int current, bool editable, bool* ok,
Qt::WindowFlags flags, Qt::InputMethodHints hints)
{
return QInputDialog::getItem(parent, title, label, items, current, editable, ok, flags, hints);
}
QString GUI::_passwordDialog(const QString& cancel, const QString& body)
{
// we use a hack. It is considered that closing the dialog without explicitly clicking
// disable history is confusing. But we can't distinguish between clicking the cancel
// button and closing the dialog. So instead, we reverse the Ok and Cancel roles,
// so that nothing but explicitly clicking disable history closes the dialog
QString ret;
QInputDialog dialog;
dialog.setWindowTitle(tr("Enter your password"));
dialog.setOkButtonText(cancel);
dialog.setCancelButtonText(tr("Decrypt"));
dialog.setInputMode(QInputDialog::TextInput);
dialog.setTextEchoMode(QLineEdit::Password);
dialog.setLabelText(body);
// problem with previous hack: the default button is disable history, not decrypt.
// use another hack to reverse the default buttons.
// http://www.qtcentre.org/threads/49924-Change-property-of-QInputDialog-button
QList<QDialogButtonBox*> l = dialog.findChildren<QDialogButtonBox*>();
if (!l.isEmpty()) {
QPushButton* ok = l.first()->button(QDialogButtonBox::Ok);
QPushButton* cancel = l.first()->button(QDialogButtonBox::Cancel);
if (ok && cancel) {
ok->setAutoDefault(false);
ok->setDefault(false);
ok->setText(QApplication::tr("Ok"));
cancel->setAutoDefault(true);
cancel->setDefault(true);
cancel->setText(QApplication::tr("Cancel"));
} else {
qWarning() << "PasswordDialog: Missing button!";
}
} else {
qWarning() << "PasswordDialog: No QDialogButtonBox!";
}
// using similar code, set QLabels to wrap
for (auto* label : dialog.findChildren<QLabel*>())
label->setWordWrap(true);
while (true) {
int val = dialog.exec();
if (val == QDialog::Accepted)
return QString();
ret = dialog.textValue();
if (!ret.isEmpty())
return ret;
dialog.setTextValue("");
dialog.setLabelText(body + "\n\n" + tr("You must enter a non-empty password:"));
}
}
// Other
/**

View File

@ -31,11 +31,9 @@ class GUI : public QObject
public:
static GUI& getInstance();
static QWidget* getMainWidget();
static void clearContacts();
static void setEnabled(bool state);
static void setWindowTitle(const QString& title);
static void reloadTheme();
static void showUpdateDownloadProgress();
static void showInfo(const QString& title, const QString& msg);
static void showWarning(const QString& title, const QString& msg);
static void showError(const QString& title, const QString& msg);
@ -45,35 +43,22 @@ public:
static bool askQuestion(const QString& title, const QString& msg, const QString& button1,
const QString& button2, bool defaultAns = false, bool warning = true);
static QString itemInputDialog(QWidget* parent, const QString& title, const QString& label,
const QStringList& items, int current = 0, bool editable = true,
bool* ok = nullptr, Qt::WindowFlags flags = nullptr,
Qt::InputMethodHints hints = Qt::ImhNone);
static QString passwordDialog(const QString& cancel, const QString& body);
private:
explicit GUI(QObject* parent = nullptr);
private slots:
// Private implementation, those must be called from the GUI thread
void _clearContacts();
void _setEnabled(bool state);
void _setWindowTitle(const QString& title);
void _reloadTheme();
void _showInfo(const QString& title, const QString& msg);
void _showWarning(const QString& title, const QString& msg);
void _showError(const QString& title, const QString& msg);
void _showUpdateDownloadProgress();
bool _askQuestion(const QString& title, const QString& msg, bool defaultAns = false,
bool warning = true, bool yesno = true);
bool _askQuestion(const QString& title, const QString& msg, const QString& button1,
const QString& button2, bool defaultAns = false, bool warning = true);
QString _itemInputDialog(QWidget* parent, const QString& title, const QString& label,
const QStringList& items, int current = 0, bool editable = true,
bool* ok = nullptr, Qt::WindowFlags flags = nullptr,
Qt::InputMethodHints inputMethodHints = Qt::ImhNone);
QString _passwordDialog(const QString& cancel, const QString& body);
};
#endif // GUI_H