vymview.h
changeset 727 96402b172173
parent 726 7f43b93242aa
child 742 54d44ecd6097
     1.1 --- a/vymview.h	Mon Oct 06 11:10:20 2008 +0000
     1.2 +++ b/vymview.h	Wed Oct 29 17:42:34 2008 +0000
     1.3 @@ -10,11 +10,17 @@
     1.4  
     1.5  class VymView : public QSplitter 
     1.6  {
     1.7 +	Q_OBJECT
     1.8  public:
     1.9  	VymView(VymModel *model);
    1.10  	QItemSelectionModel* selectionModel();
    1.11 +
    1.12 +public slots:
    1.13 +	void changeSelection (const QItemSelection &newSel, const QItemSelection &delSel);
    1.14 +
    1.15  private:
    1.16  	QTreeView *treeview;
    1.17 +	QItemSelectionModel *selModel;
    1.18  };
    1.19  
    1.20