Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > f47dd5efd3dc40a2e1c5fcb907706fb9 > files > 152

libtulip-devel-3.1.1-1mdv2009.1.i586.rpm

//-*-c++-*-
/**
 Authors: David Auber, Patrick Mary, Morgan Mathiaut
 from the LaBRI Visualization Team
 Email : auber@tulip-software.org
 Last modification : 22/01/2009 
 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 2 of the License, or     
 (at your option) any later version.
*/
#ifndef CLUSTERTREE_H
#define CLUSTERTREE_H

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <QtCore/qobject.h>
#include <QtCore/qpoint.h>
#include <QtGui/qtreewidget.h>

#include <tulip/tulipconf.h>
#include <tulip/MutableContainer.h>

class QTreeWidgetItem;

namespace tlp {
 
 class Graph;

  /** \addtogroup Tulip_Widgets */ 
  /*@{*/
  class TLP_QT_SIMPLE_SCOPE SGHierarchyWidget : public QTreeWidget { 
    Q_OBJECT;
    
  public:
    SGHierarchyWidget(QWidget* parent = 0, Graph *rootGraph = 0);
    Graph *getGraph() const;
    
    public slots:
    void setGraph(Graph *);
    void update();
    void updateCurrentGraphInfos(unsigned int nbNodes, unsigned int nbEdges);
    
  signals:
    void aboutToRemoveView(Graph *);
    void aboutToRemoveAllView(Graph *);
    void graphChanged(Graph *);
    
  private slots:
    void contextRemoveCluster();
    void contextRemoveAllCluster();
    void contextCloneSubgraphCluster();
    void contextRenameCluster();
    void contextCloneCluster();
    void currentGraphChanged(const Graph *);
    void displayContextMenu(const QPoint &p);
    void changeGraph(QTreeWidgetItem *item, const QPoint &p, int i);
    void changeGraph(QTreeWidgetItem *current, QTreeWidgetItem *previous);
    void setItemInfos(QTreeWidgetItem *item, Graph *, unsigned int nbNodes, unsigned int nbEdges);
    
  protected:
    void buildTreeView(Graph *p, QTreeWidgetItem *item = NULL);
    void removeSubgraph(Graph *graph, bool recursive);
    
  private:
    MutableContainer<QTreeWidgetItem *> graphItems;
    Graph *_currentGraph;
  };
  /*@}*/
}

#endif // CLUSTERTREE_H