1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
|
/**
*
* This file is part of Tulip (https://tulip.labri.fr)
*
* Authors: David Auber and the Tulip development Team
* from LaBRI, University of Bordeaux
*
* Tulip is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* Tulip 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.
*
*/
#ifndef GRAPHPERSPECTIVE_H
#define GRAPHPERSPECTIVE_H
#include <QModelIndex>
#include <QPoint>
#include <tulip/Perspective.h>
#include <tulip/Observable.h>
class QAction;
class QHeaderView;
class QDialog;
class GraphHierarchiesEditor;
class GraphPerspectiveLogger;
namespace tlp {
class BooleanProperty;
class ColorScaleConfigDialog;
class Graph;
class GraphHierarchiesModel;
class PythonIDEInterface;
class View;
class WorkspacePanel;
} // namespace tlp
namespace Ui {
class GraphPerspectiveMainWindowData;
}
class GraphPerspective : public tlp::Perspective, tlp::Observable {
Q_OBJECT
Ui::GraphPerspectiveMainWindowData *_ui;
tlp::GraphHierarchiesModel *_graphs;
tlp::ColorScaleConfigDialog *_colorScalesDialog;
void reserveDefaultProperties();
QString _lastOpenLocation;
void buildRecentDocumentsMenu();
void addRecentDocument(const QString &path);
void showStartPanels(tlp::Graph *);
void applyDefaultLayout(tlp::Graph *);
public:
GraphPerspectiveLogger *_logger;
PLUGININFORMATION("Tulip", "Tulip Team", "2011/07/11",
"Analyze several graph/subgraph hierarchies\n(designed to import/explore "
"data from various graph or csv file formats)",
"1.0", "")
std::string icon() const override {
return ":/tulip/graphperspective/icons/32/desktop.png";
}
GraphPerspective(const tlp::PluginContext *c);
~GraphPerspective() override;
void start(tlp::PluginProgress *) override;
tlp::GraphHierarchiesModel *model() const;
tlp::Graph *currentGraph() override;
void copy(tlp::Graph *, bool deleteAfter = false);
tlp::Graph *createSubGraph(tlp::Graph *);
QAction *createPanelAction();
QAction *exportAction();
void setFocusedPanel(tlp::WorkspacePanel *);
void treatEvent(const tlp::Event &) override;
void logMessage(QtMsgType, const QMessageLogContext &, const QString &) override;
bool terminated() override;
public slots:
void importGraph(const std::string &module = "", const std::string &file = "");
void exportGraph(tlp::Graph *g = nullptr);
void saveGraphHierarchyInTlpFile(tlp::Graph *g = nullptr);
void createPanel(tlp::Graph *g = nullptr);
bool save();
bool saveAs(const QString &path = "");
void open(QString fileName = "");
void openProjectFile(const QString &path) override;
void displayLogMessages() override;
void showAPIDocumentation();
void showUserDocumentation();
void showDevelDocumentation();
void showPythonDocumentation();
void redrawPanels(bool center = false) override;
void centerPanelsForGraph(tlp::Graph *, bool graphChanged, bool onlyGlMainView);
void centerPanelsForGraph(tlp::Graph *g) override {
centerPanelsForGraph(g, false, false);
}
void closePanelsForGraph(tlp::Graph *g = nullptr);
bool
setGlMainViewPropertiesForGraph(tlp::Graph *g,
const std::map<std::string, tlp::PropertyInterface *> &propsMap);
void showSearchDialog(bool = true);
void openPreferences();
void setAutoCenterPanelsOnDraw(bool f);
void pluginsListChanged();
void showPythonIDE();
void displayColorScalesDialog();
void showAboutTulipPage();
protected slots:
void buildPythonIDE();
void currentGraphChanged(tlp::Graph *graph);
void refreshDockExpandControls();
void panelFocused(tlp::View *);
void focusedPanelGraphSet(tlp::Graph *);
void focusedPanelSynchronized();
void clearGraph();
void deleteSelectedElements(bool fromRoot = false);
void deleteSelectedElementsFromRootGraph();
void invertSelection();
void reverseSelectedEdges();
void cancelSelection();
void make_graph();
void selectAll(bool nodes = true, bool edges = true);
void selectAllNodes();
void selectAllEdges();
void undo();
void redo();
void cut();
void paste();
void copy();
void groupUniqueEdge();
void groupDistinctEdges();
void createSubGraph();
void cloneSubGraph();
void addEmptySubGraph();
void CSVImport();
void logCleared();
void addNewGraph();
void newProject();
void openRecentFile();
void changeSynchronization(bool);
void openExternalFile();
void showHideSideBar();
void showStartMessage();
void resetLoggerDialogPosition();
void showHideLogger();
void panelsEmpty();
void showHideMenuBar();
void updateLogIconsAndCounters();
void displayStatusMessage(const QString &s) override;
void clearStatusMessage() override;
protected:
bool eventFilter(QObject *, QEvent *) override;
void importGraph(const std::string &module, tlp::DataSet &data);
void destroyWorkspace();
void group(bool);
QDialog *_searchDialog;
tlp::PythonIDEInterface *_pythonIDE;
QDialog *_pythonIDEDialog;
};
#endif // GRAPHPERSPECTIVE_H
|