File indexing completed on 2024-04-28 17:02:18

0001 /*
0002    This file is part of Massif Visualizer
0003 
0004    Copyright 2014 Milian Wolff <mail@milianw.de>
0005 
0006    This program is free software; you can redistribute it and/or
0007    modify it under the terms of the GNU General Public License as
0008    published by the Free Software Foundation; either version 2 of
0009    the License or (at your option) version 3 or any later version
0010    accepted by the membership of KDE e.V. (or its successor approved
0011    by the membership of KDE e.V.), which shall act as a proxy
0012    defined in Section 14 of version 3 of the license.
0013 
0014    This program is distributed in the hope that it will be useful,
0015    but WITHOUT ANY WARRANTY; without even the implied warranty of
0016    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0017    GNU General Public License for more details.
0018 
0019    You should have received a copy of the GNU General Public License
0020    along with this program.  If not, see <http://www.gnu.org/licenses/>.
0021 */
0022 
0023 #ifndef CALLGRAPHTAB_H
0024 #define CALLGRAPHTAB_H
0025 
0026 #include "documenttabinterface.h"
0027 
0028 #include <visualizer/modelitem.h>
0029 
0030 class KAction;
0031 
0032 namespace KGraphViewer {
0033 class KGraphViewerInterface;
0034 }
0035 
0036 namespace Massif {
0037 class DotGraphGenerator;
0038 }
0039 
0040 namespace KParts {
0041 class ReadOnlyPart;
0042 }
0043 
0044 class CallGraphTab : public DocumentTabInterface
0045 {
0046     Q_OBJECT
0047 
0048 public:
0049     CallGraphTab(const Massif::FileData* data, KParts::ReadOnlyPart* graphViewerPart,
0050                  KXMLGUIClient* guiParent, QWidget* parent = 0);
0051     ~CallGraphTab();
0052 
0053     void showDotGraph(const Massif::ModelItem& item);
0054 
0055     virtual void settingsChanged();
0056 
0057     virtual void selectModelItem(const Massif::ModelItem& item);
0058     virtual void setVisible(bool visible);
0059 
0060 public slots:
0061     void showDotGraph();
0062 
0063 private slots:
0064     void slotGraphLoaded();
0065     void zoomIn();
0066     void zoomOut();
0067     void focusExpensiveGraphNode();
0068 
0069 private:
0070     void setupActions();
0071 
0072 private:
0073     KParts::ReadOnlyPart* m_graphViewerPart;
0074     KGraphViewer::KGraphViewerInterface* m_graphViewer;
0075     QScopedPointer<Massif::DotGraphGenerator> m_dotGenerator;
0076     Massif::ModelItem m_lastDotItem;
0077     Massif::ModelItem m_nextDotItem;
0078 
0079     KAction* m_zoomIn;
0080     KAction* m_zoomOut;
0081     KAction* m_focusExpensive;
0082 };
0083 
0084 #endif // CALLGRAPHTAB_H