/************************************************************************ * file name : blocks_tree_widget.h * ----------------- : * creation time : 2016/06/26 * author : Victor Zarubkin * email : v.s.zarubkin@gmail.com * ----------------- : * description : The file contains declaration of EasyTreeWidget and it's auxiliary classes * : for displyaing EasyProfiler blocks tree. * ----------------- : * change log : * 2016/06/26 Victor Zarubkin: moved sources from tree_view.h * : and renamed classes from My* to Prof*. * : * : * 2016/06/27 Victor Zarubkin: Added possibility to colorize rows * : with profiler blocks' colors. * : * : * 2016/06/29 Victor Zarubkin: Added clearSilent() method. * : * : * 2016/08/18 Victor Zarubkin: Added loading blocks hierarchy in separate thread; * : Moved sources of TreeWidgetItem into tree_widget_item.h/.cpp * ----------------- : * license : Lightweight profiler library for c++ * : Copyright(C) 2016 Sergey Yagovtsev, Victor Zarubkin * : * : 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 . ************************************************************************/ #ifndef EASY__TREE_WIDGET__H_ #define EASY__TREE_WIDGET__H_ #include #include #include #include "tree_widget_loader.h" #include "profiler/reader.h" ////////////////////////////////////////////////////////////////////////// class EasyTreeWidget : public QTreeWidget { Q_OBJECT typedef QTreeWidget Parent; typedef EasyTreeWidget This; protected: EasyTreeWidgetLoader m_hierarchyBuilder; Items m_items; RootsMap m_roots; ::profiler_gui::TreeBlocks m_inputBlocks; QTimer m_fillTimer; ::profiler::timestamp_t m_beginTime; class QProgressDialog* m_progress; bool m_bColorRows; bool m_bLocked; bool m_bSilentExpandCollapse; public: explicit EasyTreeWidget(QWidget* _parent = nullptr); virtual ~EasyTreeWidget(); void clearSilent(bool _global = false); public slots: void setTree(const unsigned int _blocksNumber, const ::profiler::thread_blocks_tree_t& _blocksTree); void setTreeBlocks(const ::profiler_gui::TreeBlocks& _blocks, ::profiler::timestamp_t _session_begin_time, ::profiler::timestamp_t _left, ::profiler::timestamp_t _right, bool _strict); protected: void contextMenuEvent(QContextMenuEvent* _event) override; void resizeEvent(QResizeEvent* _event) override; void moveEvent(QMoveEvent* _event) override; private slots: void onJumpToItemClicked(bool); void onCollapseAllClicked(bool); void onExpandAllClicked(bool); void onCollapseAllChildrenClicked(bool); void onExpandAllChildrenClicked(bool); void onItemExpand(QTreeWidgetItem* _item); void onItemCollapse(QTreeWidgetItem* _item); void onCurrentItemChange(QTreeWidgetItem* _item, QTreeWidgetItem*); void onColorizeRowsTriggered(bool _colorize); void onSelectedThreadChange(::profiler::thread_id_t _id); void onSelectedBlockChange(uint32_t _block_index); void onBlockEnableDisable(bool _checked); void resizeColumnsToContents(); void onHideShowColumn(bool); void onFillTimerTimeout(); protected: void loadSettings(); void saveSettings(); void alignProgressBar(); }; // END of class EasyTreeWidget. ////////////////////////////////////////////////////////////////////////// #endif // EASY__TREE_WIDGET__H_