/************************************************************************* * 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 "util/libpartitionmanagerguiexport.h" #include "ui_treelogbase.h" #include #include class QTreeWidget; /** A tree for formatted log output. @author Volker Lanz */ class LIBKPMGUI_EXPORT TreeLog: public QWidget, public Ui::TreeLogBase { Q_OBJECT Q_DISABLE_COPY(TreeLog) public: TreeLog(QWidget* parent = NULL); ~TreeLog(); Q_SIGNALS: void contextMenuRequested(const QPoint&); public: void init(); protected Q_SLOTS: void onNewLogMessage(Log::Level logLevel, const QString& s); void onHeaderContextMenu(const QPoint& pos); void onClearLog(); void onSaveLog(); void on_m_TreeLog_customContextMenuRequested(const QPoint& pos); protected: QTreeWidget& treeLog() { Q_ASSERT(m_TreeLog); return *m_TreeLog; } const QTreeWidget& treeLog() const { Q_ASSERT(m_TreeLog); return *m_TreeLog; } void loadConfig(); void saveConfig() const; private: }; #endif