2016-08-04 23:12:41 +03:00
|
|
|
/************************************************************************
|
|
|
|
* file name : blocks_tree_widget.h
|
|
|
|
* ----------------- :
|
|
|
|
* creation time : 2016/06/26
|
|
|
|
* author : Victor Zarubkin
|
|
|
|
* email : v.s.zarubkin@gmail.com
|
|
|
|
* ----------------- :
|
2016-08-18 23:26:41 +03:00
|
|
|
* description : The file contains declaration of EasyTreeWidget and it's auxiliary classes
|
|
|
|
* : for displyaing EasyProfiler blocks tree.
|
2016-08-04 23:12:41 +03:00
|
|
|
* ----------------- :
|
|
|
|
* change log : * 2016/06/26 Victor Zarubkin: moved sources from tree_view.h
|
|
|
|
* : and renamed classes from My* to Prof*.
|
|
|
|
* :
|
2016-06-27 22:11:26 +03:00
|
|
|
* : * 2016/06/27 Victor Zarubkin: Added possibility to colorize rows
|
|
|
|
* : with profiler blocks' colors.
|
2016-06-30 02:57:57 +03:00
|
|
|
* :
|
|
|
|
* : * 2016/06/29 Victor Zarubkin: Added clearSilent() method.
|
|
|
|
* :
|
2016-08-18 23:26:41 +03:00
|
|
|
* : * 2016/08/18 Victor Zarubkin: Added loading blocks hierarchy in separate thread;
|
|
|
|
* : Moved sources of TreeWidgetItem into tree_widget_item.h/.cpp
|
2016-08-04 23:12:41 +03:00
|
|
|
* ----------------- :
|
2016-09-06 21:49:32 +03:00
|
|
|
* license : Lightweight profiler library for c++
|
2017-03-30 06:14:23 +03:00
|
|
|
* : Copyright(C) 2016-2017 Sergey Yagovtsev, Victor Zarubkin
|
2016-09-06 21:49:32 +03:00
|
|
|
* :
|
2017-03-30 06:14:23 +03:00
|
|
|
* : Licensed under either of
|
|
|
|
* : * MIT license (LICENSE.MIT or http://opensource.org/licenses/MIT)
|
|
|
|
* : * Apache License, Version 2.0, (LICENSE.APACHE or http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
* : at your option.
|
2016-11-13 16:39:59 +03:00
|
|
|
* :
|
2017-03-30 06:14:23 +03:00
|
|
|
* : The MIT License
|
|
|
|
* :
|
|
|
|
* : Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* : of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* : in the Software without restriction, including without limitation the rights
|
|
|
|
* : to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
|
|
* : of the Software, and to permit persons to whom the Software is furnished
|
|
|
|
* : to do so, subject to the following conditions:
|
|
|
|
* :
|
|
|
|
* : The above copyright notice and this permission notice shall be included in all
|
|
|
|
* : copies or substantial portions of the Software.
|
|
|
|
* :
|
|
|
|
* : THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
|
|
* : INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
|
|
|
* : PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
* : LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
* : TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
|
|
* : USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
* :
|
|
|
|
* : The Apache License, Version 2.0 (the "License")
|
|
|
|
* :
|
|
|
|
* : You may not use this file except in compliance with the License.
|
2016-11-13 16:39:59 +03:00
|
|
|
* : You may obtain a copy of the License at
|
|
|
|
* :
|
|
|
|
* : http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
* :
|
|
|
|
* : Unless required by applicable law or agreed to in writing, software
|
|
|
|
* : distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* : WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* : See the License for the specific language governing permissions and
|
|
|
|
* : limitations under the License.
|
2016-06-26 18:56:40 +03:00
|
|
|
************************************************************************/
|
2016-06-26 18:46:51 +03:00
|
|
|
|
2017-03-05 22:59:03 +03:00
|
|
|
#ifndef EASY_TREE_WIDGET_H
|
|
|
|
#define EASY_TREE_WIDGET_H
|
2016-06-26 18:46:51 +03:00
|
|
|
|
|
|
|
#include <QTreeWidget>
|
2016-08-18 23:26:41 +03:00
|
|
|
#include <QTimer>
|
2017-03-05 23:50:38 +03:00
|
|
|
|
2016-08-18 23:26:41 +03:00
|
|
|
#include "tree_widget_loader.h"
|
2016-12-18 15:56:08 +03:00
|
|
|
#include "tree_widget_item.h"
|
2017-03-05 23:50:38 +03:00
|
|
|
|
|
|
|
#include <easy/reader.h>
|
2016-06-26 18:46:51 +03:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2016-08-18 23:26:41 +03:00
|
|
|
class EasyTreeWidget : public QTreeWidget
|
2016-06-26 18:46:51 +03:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2016-06-27 22:11:26 +03:00
|
|
|
typedef QTreeWidget Parent;
|
2016-08-18 23:26:41 +03:00
|
|
|
typedef EasyTreeWidget This;
|
2016-06-27 22:11:26 +03:00
|
|
|
|
2016-06-26 18:46:51 +03:00
|
|
|
protected:
|
|
|
|
|
2016-08-18 23:26:41 +03:00
|
|
|
EasyTreeWidgetLoader m_hierarchyBuilder;
|
|
|
|
Items m_items;
|
|
|
|
RootsMap m_roots;
|
|
|
|
::profiler_gui::TreeBlocks m_inputBlocks;
|
|
|
|
QTimer m_fillTimer;
|
2016-11-20 21:01:33 +03:00
|
|
|
QString m_lastSearch;
|
|
|
|
QTreeWidgetItem* m_lastFound;
|
2016-08-18 23:26:41 +03:00
|
|
|
::profiler::timestamp_t m_beginTime;
|
|
|
|
class QProgressDialog* m_progress;
|
2017-05-01 03:52:48 +03:00
|
|
|
class QLabel* m_hintLabel;
|
2016-12-18 15:56:08 +03:00
|
|
|
EasyTreeMode m_mode;
|
2016-08-18 23:26:41 +03:00
|
|
|
bool m_bColorRows;
|
|
|
|
bool m_bLocked;
|
2016-08-21 22:44:03 +03:00
|
|
|
bool m_bSilentExpandCollapse;
|
2016-12-18 15:56:08 +03:00
|
|
|
char m_columnsHiddenStatus[COL_COLUMNS_NUMBER];
|
2016-06-26 18:46:51 +03:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2016-08-19 00:35:05 +03:00
|
|
|
explicit EasyTreeWidget(QWidget* _parent = nullptr);
|
2016-08-18 23:26:41 +03:00
|
|
|
virtual ~EasyTreeWidget();
|
2016-06-26 18:46:51 +03:00
|
|
|
|
2016-12-18 15:56:08 +03:00
|
|
|
void contextMenuEvent(QContextMenuEvent* _event) override;
|
|
|
|
|
2016-08-04 22:38:45 +03:00
|
|
|
void clearSilent(bool _global = false);
|
2016-11-20 21:40:05 +03:00
|
|
|
int findNext(const QString& _str, Qt::MatchFlags _flags);
|
|
|
|
int findPrev(const QString& _str, Qt::MatchFlags _flags);
|
2016-06-26 18:46:51 +03:00
|
|
|
|
2016-07-31 18:48:41 +03:00
|
|
|
public slots:
|
|
|
|
|
2016-08-03 23:00:04 +03:00
|
|
|
void setTree(const unsigned int _blocksNumber, const ::profiler::thread_blocks_tree_t& _blocksTree);
|
2016-07-31 18:48:41 +03:00
|
|
|
|
2016-08-03 23:00:04 +03:00
|
|
|
void setTreeBlocks(const ::profiler_gui::TreeBlocks& _blocks, ::profiler::timestamp_t _session_begin_time, ::profiler::timestamp_t _left, ::profiler::timestamp_t _right, bool _strict);
|
2016-07-31 18:48:41 +03:00
|
|
|
|
2016-06-26 18:46:51 +03:00
|
|
|
protected:
|
|
|
|
|
2016-08-18 23:26:41 +03:00
|
|
|
void resizeEvent(QResizeEvent* _event) override;
|
|
|
|
void moveEvent(QMoveEvent* _event) override;
|
2016-06-26 18:46:51 +03:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
2016-09-06 21:49:32 +03:00
|
|
|
void onJumpToItemClicked(bool);
|
2016-06-26 18:46:51 +03:00
|
|
|
|
|
|
|
void onCollapseAllClicked(bool);
|
|
|
|
|
|
|
|
void onExpandAllClicked(bool);
|
|
|
|
|
2016-07-31 18:48:41 +03:00
|
|
|
void onCollapseAllChildrenClicked(bool);
|
|
|
|
|
|
|
|
void onExpandAllChildrenClicked(bool);
|
|
|
|
|
2016-08-18 23:26:41 +03:00
|
|
|
void onItemExpand(QTreeWidgetItem* _item);
|
|
|
|
void onItemCollapse(QTreeWidgetItem* _item);
|
2016-08-23 23:50:30 +03:00
|
|
|
void onCurrentItemChange(QTreeWidgetItem* _item, QTreeWidgetItem*);
|
2016-06-26 18:46:51 +03:00
|
|
|
|
2016-06-27 22:11:26 +03:00
|
|
|
void onColorizeRowsTriggered(bool _colorize);
|
|
|
|
|
2016-08-03 23:00:04 +03:00
|
|
|
void onSelectedThreadChange(::profiler::thread_id_t _id);
|
|
|
|
|
2016-09-17 15:39:31 +03:00
|
|
|
void onSelectedBlockChange(uint32_t _block_index);
|
|
|
|
|
2016-09-20 22:57:34 +03:00
|
|
|
void onBlockStatusChangeClicked(bool);
|
2016-08-08 22:17:56 +03:00
|
|
|
|
2016-08-03 23:00:04 +03:00
|
|
|
void resizeColumnsToContents();
|
|
|
|
|
2016-09-06 21:49:32 +03:00
|
|
|
void onHideShowColumn(bool);
|
2016-12-18 15:56:08 +03:00
|
|
|
void onModeChange(bool);
|
2016-08-03 23:00:04 +03:00
|
|
|
|
2016-08-18 23:26:41 +03:00
|
|
|
void onFillTimerTimeout();
|
|
|
|
|
2016-08-04 23:12:41 +03:00
|
|
|
protected:
|
|
|
|
|
2016-08-07 19:38:31 +03:00
|
|
|
void loadSettings();
|
2016-09-06 22:23:55 +03:00
|
|
|
void saveSettings();
|
2016-08-18 23:26:41 +03:00
|
|
|
void alignProgressBar();
|
2016-08-04 23:12:41 +03:00
|
|
|
|
2016-08-18 23:26:41 +03:00
|
|
|
}; // END of class EasyTreeWidget.
|
2016-06-26 18:46:51 +03:00
|
|
|
|
2016-11-20 21:01:33 +03:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
class EasyHierarchyWidget : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
typedef QWidget Parent;
|
|
|
|
typedef EasyHierarchyWidget This;
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2016-11-20 21:40:05 +03:00
|
|
|
EasyTreeWidget* m_tree;
|
|
|
|
class QLineEdit* m_searchBox;
|
|
|
|
class QLabel* m_foundNumber;
|
|
|
|
class QAction* m_searchButton;
|
|
|
|
bool m_bCaseSensitiveSearch;
|
2016-11-20 21:01:33 +03:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
// Public virtual methods
|
|
|
|
|
|
|
|
explicit EasyHierarchyWidget(QWidget* _parent = nullptr);
|
|
|
|
virtual ~EasyHierarchyWidget();
|
|
|
|
void keyPressEvent(QKeyEvent* _event) override;
|
2016-12-18 15:56:08 +03:00
|
|
|
void contextMenuEvent(QContextMenuEvent* _event) override;
|
2016-11-20 21:01:33 +03:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
// Public non-virtual methods
|
|
|
|
|
|
|
|
EasyTreeWidget* tree();
|
|
|
|
void clear(bool _global = false);
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
2016-11-20 21:40:05 +03:00
|
|
|
// Private slots
|
|
|
|
|
2016-11-20 21:01:33 +03:00
|
|
|
void onSeachBoxReturnPressed();
|
|
|
|
void findNext(bool);
|
|
|
|
void findPrev(bool);
|
|
|
|
void findNextFromMenu(bool);
|
|
|
|
void findPrevFromMenu(bool);
|
|
|
|
|
2016-11-20 21:40:05 +03:00
|
|
|
private:
|
|
|
|
|
|
|
|
// Private non-virtual methods
|
|
|
|
|
|
|
|
void loadSettings();
|
|
|
|
void saveSettings();
|
|
|
|
|
2016-11-20 21:01:33 +03:00
|
|
|
}; // END of class EasyHierarchyWidget.
|
|
|
|
|
|
|
|
|
2016-06-26 18:46:51 +03:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2017-03-05 22:59:03 +03:00
|
|
|
#endif // EASY_TREE_WIDGET_H
|