2016-09-17 15:39:31 +03:00
|
|
|
/************************************************************************
|
|
|
|
* file name : descriptors_tree_widget.h
|
|
|
|
* ----------------- :
|
|
|
|
* creation time : 2016/09/17
|
|
|
|
* author : Victor Zarubkin
|
|
|
|
* email : v.s.zarubkin@gmail.com
|
|
|
|
* ----------------- :
|
2016-09-17 18:43:06 +03:00
|
|
|
* description : The file contains declaration of EasyDescTreeWidget and it's auxiliary classes
|
2016-09-17 15:39:31 +03:00
|
|
|
* : for displyaing EasyProfiler blocks descriptors tree.
|
|
|
|
* ----------------- :
|
|
|
|
* change log : * 2016/09/17 Victor Zarubkin: initial commit.
|
|
|
|
* :
|
|
|
|
* : *
|
|
|
|
* ----------------- :
|
|
|
|
* license : Lightweight profiler library for c++
|
2017-03-30 06:14:23 +03:00
|
|
|
* : Copyright(C) 2016-2017 Sergey Yagovtsev, Victor Zarubkin
|
2016-09-17 15:39:31 +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-09-17 15:39:31 +03:00
|
|
|
************************************************************************/
|
|
|
|
|
2017-03-05 22:59:03 +03:00
|
|
|
#ifndef EASY_DESCRIPTORS_WIDGET_H
|
|
|
|
#define EASY_DESCRIPTORS_WIDGET_H
|
2016-09-17 15:39:31 +03:00
|
|
|
|
|
|
|
#include <QTreeWidget>
|
2016-09-17 18:43:06 +03:00
|
|
|
#include <QString>
|
2017-03-05 23:50:38 +03:00
|
|
|
|
2016-09-17 18:43:06 +03:00
|
|
|
#include <vector>
|
2016-11-20 18:34:31 +03:00
|
|
|
#include <unordered_set>
|
2017-03-05 23:50:38 +03:00
|
|
|
|
2017-11-09 23:34:17 +03:00
|
|
|
#include <easy/details/profiler_public_types.h>
|
2016-09-17 15:39:31 +03:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
class EasyDescWidgetItem : public QTreeWidgetItem
|
|
|
|
{
|
|
|
|
typedef QTreeWidgetItem Parent;
|
|
|
|
typedef EasyDescWidgetItem This;
|
|
|
|
|
|
|
|
::profiler::block_id_t m_desc;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
explicit EasyDescWidgetItem(::profiler::block_id_t _desc, Parent* _parent = nullptr);
|
|
|
|
virtual ~EasyDescWidgetItem();
|
|
|
|
|
|
|
|
bool operator < (const Parent& _other) const override;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
// Public inline methods
|
|
|
|
|
|
|
|
inline ::profiler::block_id_t desc() const
|
|
|
|
{
|
|
|
|
return m_desc;
|
|
|
|
}
|
|
|
|
|
|
|
|
}; // END of class EasyDescWidgetItem.
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2016-09-17 18:43:06 +03:00
|
|
|
class EasyDescTreeWidget : public QTreeWidget
|
2016-09-17 15:39:31 +03:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
typedef QTreeWidget Parent;
|
2016-09-17 18:43:06 +03:00
|
|
|
typedef EasyDescTreeWidget This;
|
|
|
|
|
|
|
|
typedef ::std::vector<EasyDescWidgetItem*> Items;
|
2016-12-21 23:19:22 +03:00
|
|
|
typedef ::std::vector<QTreeWidgetItem*> TreeItems;
|
2016-11-20 18:34:31 +03:00
|
|
|
typedef ::std::unordered_set<::std::string> ExpandedFiles;
|
2016-09-17 15:39:31 +03:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2016-11-20 18:34:31 +03:00
|
|
|
ExpandedFiles m_expandedFilesTemp;
|
|
|
|
Items m_items;
|
2016-12-21 23:19:22 +03:00
|
|
|
TreeItems m_highlightItems;
|
2016-11-20 18:34:31 +03:00
|
|
|
QString m_lastSearch;
|
|
|
|
QTreeWidgetItem* m_lastFound;
|
2016-12-21 23:19:22 +03:00
|
|
|
int m_lastSearchColumn;
|
2016-11-20 18:34:31 +03:00
|
|
|
int m_searchColumn;
|
|
|
|
bool m_bLocked;
|
2016-09-17 18:43:06 +03:00
|
|
|
|
|
|
|
public:
|
2016-09-17 15:39:31 +03:00
|
|
|
|
2016-09-17 18:43:06 +03:00
|
|
|
// Public virtual methods
|
|
|
|
|
|
|
|
explicit EasyDescTreeWidget(QWidget* _parent = nullptr);
|
|
|
|
virtual ~EasyDescTreeWidget();
|
|
|
|
void contextMenuEvent(QContextMenuEvent* _event) override;
|
2016-09-17 15:39:31 +03:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2016-09-17 18:43:06 +03:00
|
|
|
// Public non-virtual methods
|
|
|
|
|
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-09-17 15:39:31 +03:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
void clearSilent(bool _global = false);
|
|
|
|
void build();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
2016-09-17 18:43:06 +03:00
|
|
|
void onSearchColumnChange(bool);
|
2016-09-20 22:57:34 +03:00
|
|
|
void onBlockStatusChangeClicked(bool);
|
2016-09-17 18:43:06 +03:00
|
|
|
void onCurrentItemChange(QTreeWidgetItem* _item, QTreeWidgetItem* _prev);
|
2016-09-17 15:39:31 +03:00
|
|
|
void onItemExpand(QTreeWidgetItem* _item);
|
|
|
|
void onDoubleClick(QTreeWidgetItem* _item, int _column);
|
|
|
|
void onSelectedBlockChange(uint32_t _block_index);
|
2016-09-20 22:57:34 +03:00
|
|
|
void onBlockStatusChange(::profiler::block_id_t _id, ::profiler::EasyBlockStatus _status);
|
2016-09-17 15:39:31 +03:00
|
|
|
void resizeColumnsToContents();
|
|
|
|
|
2016-09-17 18:43:06 +03:00
|
|
|
private:
|
|
|
|
|
|
|
|
// Private methods
|
2016-09-17 15:39:31 +03:00
|
|
|
|
2016-12-21 23:19:22 +03:00
|
|
|
void resetHighlight();
|
2016-09-17 15:39:31 +03:00
|
|
|
void loadSettings();
|
|
|
|
void saveSettings();
|
|
|
|
|
2016-09-17 18:43:06 +03:00
|
|
|
}; // END of class EasyDescTreeWidget.
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
class EasyDescWidget : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
typedef QWidget Parent;
|
|
|
|
typedef EasyDescWidget This;
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2016-09-25 11:49:49 +03:00
|
|
|
EasyDescTreeWidget* m_tree;
|
|
|
|
class QLineEdit* m_searchBox;
|
|
|
|
class QLabel* m_foundNumber;
|
|
|
|
class QAction* m_searchButton;
|
2016-11-20 21:40:05 +03:00
|
|
|
bool m_bCaseSensitiveSearch;
|
2016-09-17 18:43:06 +03:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
// Public virtual methods
|
|
|
|
|
|
|
|
explicit EasyDescWidget(QWidget* _parent = nullptr);
|
|
|
|
virtual ~EasyDescWidget();
|
|
|
|
void keyPressEvent(QKeyEvent* _event) override;
|
2016-12-21 23:19:22 +03:00
|
|
|
void contextMenuEvent(QContextMenuEvent* _event) override;
|
2016-09-17 18:43:06 +03:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
// Public non-virtual methods
|
|
|
|
|
|
|
|
void build();
|
2016-09-21 22:09:04 +03:00
|
|
|
void clear();
|
2016-09-17 18:43:06 +03:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
|
|
|
void onSeachBoxReturnPressed();
|
2016-09-25 11:49:49 +03:00
|
|
|
void findNext(bool);
|
|
|
|
void findPrev(bool);
|
|
|
|
void findNextFromMenu(bool);
|
|
|
|
void findPrevFromMenu(bool);
|
2016-09-17 18:43:06 +03:00
|
|
|
|
2016-11-20 21:40:05 +03:00
|
|
|
private:
|
|
|
|
|
|
|
|
// Private non-virtual slots
|
|
|
|
|
|
|
|
void loadSettings();
|
|
|
|
void saveSettings();
|
|
|
|
|
2016-09-17 15:39:31 +03:00
|
|
|
}; // END of class EasyDescWidget.
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2017-03-05 22:59:03 +03:00
|
|
|
#endif // EASY_DESCRIPTORS_WIDGET_H
|