X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fcoreinfodlg.h;h=c3ed6761b0d3496f4d5b425fbd9cbc67cdae2eb3;hp=85a921160886cb1e02e8620039d6a03d7814acab;hb=52209badc8e769e50aa3019b63689dda0e79e9d0;hpb=bd5414d8bfe2be18ba051d4bbf936e9ead0cdf66 diff --git a/src/qtui/coreinfodlg.h b/src/qtui/coreinfodlg.h index 85a92116..c3ed6761 100644 --- a/src/qtui/coreinfodlg.h +++ b/src/qtui/coreinfodlg.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2018 by the Quassel Project * + * Copyright (C) 2005-2019 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -22,28 +22,50 @@ #include -#include "ui_coreinfodlg.h" #include "coreinfo.h" #include "coresessionwidget.h" -class CoreInfoDlg : public QDialog { -Q_OBJECT +#include "ui_coreinfodlg.h" + +class CoreInfoDlg : public QDialog +{ + Q_OBJECT public: - explicit CoreInfoDlg(QWidget *parent = nullptr); + explicit CoreInfoDlg(QWidget* parent = nullptr); public slots: - void coreInfoChanged(const QVariantMap &); + void coreInfoChanged(const QVariantMap&); protected: - void timerEvent(QTimerEvent *) override { updateUptime(); } + void timerEvent(QTimerEvent*) override { updateUptime(); } private slots: + /** + * Requests resynchronization of CoreInfo object for legacy (pre-0.13) cores + * + * This provides compatibility with updating core information for legacy cores, and can be + * removed after protocol break. + */ + void refreshLegacyCoreInfo(); + + /** + * Handler for recreation of CoreInfo object, including first-time setup + * + * Applies existing CoreInfo information to the dialog, too. + */ + void coreInfoResynchronized(); + void on_closeButton_clicked() { reject(); } void updateUptime(); void disconnectClicked(int peerId); + /** + * Event handler for core unspported Details button + */ + void on_coreUnsupportedDetails_clicked(); + private: Ui::CoreInfoDlg ui; - QMap _widgets; + QMap _widgets; };