vymview.h
changeset 829 832e96c9abb6
parent 823 0bba81dde1bc
child 842 bec082472471
     1.1 --- a/vymview.h	Mon Mar 08 12:22:15 2010 +0000
     1.2 +++ b/vymview.h	Mon Mar 08 12:24:26 2010 +0000
     1.3 @@ -7,7 +7,6 @@
     1.4  class VymModel;
     1.5  class MapEditor;
     1.6  class TreeEditor;
     1.7 -class FindWidget;
     1.8  
     1.9  class QTreeView;
    1.10  
    1.11 @@ -23,24 +22,17 @@
    1.12  
    1.13  public slots:
    1.14  	void changeSelection (const QItemSelection &newSel, const QItemSelection &delSel);
    1.15 -	void changeProxySelection (const QItemSelection &newSel, const QItemSelection &delSel);
    1.16  	void expandAll ();
    1.17  	void expandOneLevel ();
    1.18  	void collapseOneLevel ();
    1.19  	void showSelection ();
    1.20 -	void showFindWidget();
    1.21 -	void hideFindWidget();
    1.22 -	void findNext (QString s);
    1.23 -	void findReset();
    1.24  	void toggleTreeEditor();
    1.25  
    1.26  private:
    1.27  	VymModel *model;
    1.28  	TreeEditor *treeEditor;
    1.29 -	QItemSelectionModel *proxySelModel;
    1.30  	QItemSelectionModel *selModel;
    1.31  	MapEditor *mapEditor;
    1.32 -	FindWidget *findWidget;
    1.33  };
    1.34  
    1.35