/src/diagnosticsdialog.h
http://github.com/tomahawk-player/tomahawk · C Header · 56 lines · 26 code · 13 blank · 17 comment · 0 complexity · 56e617a4190e017e7aa2f4918ddc2af8 MD5 · raw file
- /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
- *
- * Copyright 2011, Dominik Schmidt <dev@dominik-schmidt.de>
- *
- * Tomahawk is free 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.
- *
- * Tomahawk 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
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
- */
- #ifndef DIGANOSTICSDIALOG_H
- #define DIAGNOSTICSDIALOG_H
- #include "accounts/Account.h"
- #include <QDialog>
- #include <QMap>
- class QLabel;
- class SipInfo;
- namespace Ui
- {
- class DiagnosticsDialog;
- }
- class DiagnosticsDialog : public QDialog
- {
- Q_OBJECT
- public:
- explicit DiagnosticsDialog( QWidget* parent = 0 );
- ~DiagnosticsDialog() {};
- private slots:
- void updateLogView();
- void copyToClipboard();
- void openLogfile();
- QString accountLog( Tomahawk::Accounts::Account* );
- private:
- Ui::DiagnosticsDialog* ui;
- };
- #endif // DIAGNOSTICSDIALOG_H