/************************************************************************* * Copyright (C) 2008, 2009 by Volker Lanz * * * * 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 .* *************************************************************************/ #if !defined(TREELOG_H) #define TREELOG_H #include "ui_treelogbase.h" #include #include class QTreeWidget; /** A tree for formatted log output. @author Volker Lanz */ 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