partitionmanager/src/gui/treelog.h

68 lines
2.0 KiB
C++

/*************************************************************************
* Copyright (C) 2008, 2009 by Volker Lanz <vl@fidra.de> *
* *
* This program 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. *
* *
* 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 *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>.*
*************************************************************************/
#if !defined(TREELOG_H)
#define TREELOG_H
#include "ui_treelogbase.h"
#include <util/globallog.h>
#include <QWidget>
class QTreeWidget;
/** A tree for formatted log output.
@author Volker Lanz <vl@fidra.de>
*/
class TreeLog: public QWidget, public Ui::TreeLogBase
{
Q_DISABLE_COPY(TreeLog)
public:
explicit TreeLog(QWidget* parent = nullptr);
~TreeLog();
public:
void init();
void onNewLogMessage(Log::Level logLevel, const QString& s);
void onClearLog();
void onSaveLog();
QTreeWidget& treeLog() {
Q_ASSERT(m_TreeLog);
return *m_TreeLog;
}
protected:
void onHeaderContextMenu(const QPoint& pos);
const QTreeWidget& treeLog() const {
Q_ASSERT(m_TreeLog);
return *m_TreeLog;
}
void loadConfig();
void saveConfig() const;
private:
};
#endif