vymview.cpp
author insilmaril
Fri, 27 Nov 2009 13:31:21 +0000
changeset 811 c79486b7cb4b
parent 810 a9295db4dcbf
child 812 62d4137bfb90
permissions -rw-r--r--
Fixed regression in Undo
     1 #include "vymview.h"
     2 
     3 #include <iostream>
     4 using namespace std;
     5 
     6 #include "branchitem.h"
     7 #include "findwidget.h"
     8 #include "mainwindow.h"
     9 #include "mapeditor.h"
    10 #include "treeeditor.h"
    11 
    12 extern Main *mainWindow;
    13 
    14 
    15 VymView::VymView(VymModel *m)
    16 {
    17 	model=m;
    18 
    19 	// Create findWidget
    20 	findWidget=new FindWidget (this);
    21 	findWidget->hide();
    22 
    23 	// Create TreeView
    24 	treeEditor=new TreeEditor (model);
    25 	//treeEditor->setModel ((QAbstractItemModel*)model);
    26 	//treeEditor->setMinimumWidth (50);
    27 
    28 	treeEditor->setColumnWidth (0,150);
    29 	treeEditor->setAnimated (true);
    30 
    31 	// FIXME-2 use proxySelModel=treeEditor->selectionModel();
    32 	selModel=new QItemSelectionModel (model);
    33 
    34 	//model->setSelectionModel (proxySelModel);
    35 	model->setSelectionModel (selModel);
    36 	treeEditor->setSelectionModel (selModel);
    37 
    38 	// Create good old MapEditor
    39 	mapEditor=model->getMapEditor();
    40 	if (!mapEditor) mapEditor=new MapEditor (model);
    41 
    42 	// Create Layout 
    43 	QVBoxLayout* mainLayout = new QVBoxLayout (this);
    44 	QSplitter *splitter= new QSplitter;
    45 
    46 	QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
    47     //sizePolicy.setHorizontalStretch(0);
    48     //sizePolicy.setVerticalStretch(0);
    49     //sizePolicy.setHeightForWidth(this->sizePolicy().hasHeightForWidth());
    50     splitter->setSizePolicy(sizePolicy);
    51 	mainLayout->addWidget (splitter);
    52 	mainLayout->addWidget (findWidget);
    53 
    54 	// Connect selections
    55 
    56 		// Proxymodel changed
    57 		/*
    58 		connect (
    59 			proxySelModel, SIGNAL (selectionChanged(const QItemSelection &, const QItemSelection &)), 
    60 			this,SLOT (changeProxySelection(const QItemSelection &,const QItemSelection &)));
    61 */
    62 
    63 		// Selection in Model changed	
    64 		connect (
    65 			selModel, SIGNAL (selectionChanged(const QItemSelection &, const QItemSelection &)), 
    66 			this,SLOT (changeSelection(const QItemSelection &,const QItemSelection &)));
    67 
    68 		// Tell MapEditor to update selection
    69 		/* FIXME-3 done implicit here in VymView
    70 		connect (
    71 			selModel, SIGNAL (selectionChanged(const QItemSelection &, const QItemSelection &)), 
    72 			mapEditor,SLOT (updateSelection(const QItemSelection &,const QItemSelection &)));
    73 			*/
    74 
    75 		// FIXME-2 testing, if that reenables updating selbox during animation
    76 		connect (
    77 			model, SIGNAL (selectionChanged(const QItemSelection &, const QItemSelection &)), 
    78 			mapEditor,SLOT (updateSelection(const QItemSelection &,const QItemSelection &)));
    79 
    80 	// Connect data changed signals	
    81 	connect (
    82 		model, SIGNAL (dataChanged(const QModelIndex &, const QModelIndex &)), 
    83 		mapEditor,SLOT (updateData(const QModelIndex &) ) );
    84 
    85 	connect (
    86 		model, SIGNAL (sortFilterChanged (const QString &)),
    87 		treeEditor, SLOT (setSortFilter (const QString &) ) );
    88 
    89 	connect (
    90 		model, SIGNAL (noteHasChanged(QModelIndex) ),
    91 		mainWindow, SLOT (updateNoteEditor (QModelIndex) ) );
    92 		
    93 	connect (
    94 		model, SIGNAL (expandAll() ),
    95 		this, SLOT (expandAll () ) );
    96 		
    97 	connect (
    98 		model, SIGNAL (expandOneLevel() ),
    99 		this, SLOT (expandOneLevel() ) );
   100 		
   101 	connect (
   102 		model, SIGNAL (collapseOneLevel() ),
   103 		this, SLOT (collapseOneLevel() ) );
   104 		
   105 	connect (
   106 		model, SIGNAL (showSelection() ),
   107 		this, SLOT (showSelection() ) );
   108 		
   109 	// Find	
   110 	connect (
   111 		model, SIGNAL (showFindWidget() ),
   112 		this, SLOT (showFindWidget() ) );
   113 		
   114 	connect (
   115 		findWidget, SIGNAL (nextButton (QString) ),
   116 		this, SLOT (findNext(QString) ) );
   117 		
   118 	mapEditor->setAntiAlias (mainWindow->isAliased());
   119 	mapEditor->setSmoothPixmap(mainWindow->hasSmoothPixmapTransform());
   120 
   121 	splitter->addWidget (treeEditor);
   122 	splitter->addWidget (mapEditor);
   123 
   124 	// Set geometry
   125 	QList <int> widths;
   126 	widths<<200;
   127 	widths<<600;
   128 	splitter->setSizes(widths);
   129 }
   130 
   131 VymView::~VymView()
   132 {
   133 	//cout << "Destructor VymView\n";
   134 }
   135 
   136 VymModel* VymView::getModel()
   137 {
   138 	return model;
   139 }
   140 
   141 MapEditor* VymView::getMapEditor()
   142 {
   143 	return mapEditor;
   144 }
   145 
   146 void VymView::initFocus()
   147 {
   148 	mapEditor->setFocus();
   149 }
   150 
   151 void VymView::changeSelection (const QItemSelection &newsel, const QItemSelection &oldsel)	
   152 {
   153 	//cout << "VV::changeSelection   newsel.count="<<newsel.indexes().count()<<endl;
   154 
   155 	mainWindow->changeSelection (model,newsel,oldsel);	
   156 	mapEditor->updateSelection (newsel,oldsel);
   157 
   158 	if (newsel.indexes().count()>0)
   159 	{
   160 
   161 	/* FIXME-2 use proxymodel
   162 		proxySelModel->select (
   163 			treeEditor->getProxyModel()->mapSelectionFromSource (newsel),
   164 			QItemSelectionModel::ClearAndSelect );
   165 		*/
   166 		
   167 		QModelIndex ix=newsel.indexes().first();
   168 		selModel->setCurrentIndex (ix,QItemSelectionModel::ClearAndSelect  );
   169 		treeEditor->setCurrentIndex (ix);
   170 		showSelection();
   171 		
   172 	}
   173 }
   174 
   175 void VymView::changeProxySelection (const QItemSelection &newsel, const QItemSelection &)
   176 {
   177 	// Notify mainwindow to update satellites, but map selection to 
   178 	// original model first
   179 
   180 	//cout << "VV::changeProxySelection   newsel.count="<<newsel.indexes().count()<<endl;
   181 	if (!newsel.indexes().isEmpty())
   182 	{
   183 	/* FIXME-2 need to set current, too
   184 	*/
   185 		proxySelModel->setCurrentIndex (
   186 			newsel.indexes().first(),
   187 			QItemSelectionModel::ClearAndSelect );
   188 	treeEditor->setCurrentIndex (newsel.indexes().first() );
   189 	}
   190 
   191 	// Re-emit but map selection first
   192 	selModel->select (
   193 		treeEditor->getProxyModel()->mapSelectionToSource (newsel),
   194 		QItemSelectionModel::ClearAndSelect );
   195 
   196 	showSelection();
   197 }
   198 
   199 void VymView::expandAll()
   200 {
   201 	treeEditor->expandAll();
   202 }
   203 
   204 void VymView::expandOneLevel()
   205 {
   206 	int level=999999;
   207 	int d;
   208 	BranchItem *cur=NULL;
   209 	BranchItem *prev=NULL;
   210 	QModelIndex pix;
   211 
   212 	// Find level to expand
   213 	model->nextBranch(cur,prev);
   214 	while (cur) 
   215 	{
   216 		// FIXME-2 use proxy pix=treeEditor->getProxyModel()->mapFromSource (model->index (cur));
   217 		pix=model->index (cur);
   218 		d=cur->depth();
   219 		if (!treeEditor->isExpanded(pix) && d < level)
   220 			level=d;
   221 		model->nextBranch(cur,prev);	
   222 	}
   223 
   224 	// Expand all to level
   225 	cur=NULL;
   226 	prev=NULL;
   227 	model->nextBranch(cur,prev);
   228 	while (cur) 
   229 	{
   230 		// FIXME-2 use proxy pix=treeEditor->getProxyModel()->mapFromSource (model->index (cur));
   231 		pix=model->index (cur);
   232 		d=cur->depth();
   233 		if (!treeEditor->isExpanded(pix) && d <= level && cur->branchCount()>0)
   234 			treeEditor->setExpanded(pix,true);
   235 		model->nextBranch(cur,prev);	
   236 	}
   237 	/* FIXME-3 optimize expanding by using flat version of next
   238 	model->nextBranch(cur,prev,false);
   239 	while (cur) 
   240 	{
   241 		cout << "ok: "<<cur->getHeadingStd()<<endl./re/videochristinaprison1_wmvl.wmv
   242 ;
   243 		model->nextBranch(cur,prev,false);	
   244 	}
   245 	*/
   246 }
   247 
   248 void VymView::collapseOneLevel()
   249 {
   250 	int level=-1;
   251 	int d;
   252 	BranchItem *cur=NULL;
   253 	BranchItem *prev=NULL;
   254 	QModelIndex pix;
   255 
   256 	// Find level to collapse
   257 	model->nextBranch(cur,prev);
   258 	while (cur) 
   259 	{
   260 		// FIXME-2 use proxy pix=treeEditor->getProxyModel()->mapFromSource (model->index (cur));
   261 		pix=model->index (cur);
   262 		d=cur->depth();
   263 		if (treeEditor->isExpanded(pix) && d > level)
   264 			level=d;
   265 		model->nextBranch(cur,prev);	
   266 	}
   267 
   268 	// collapse all to level
   269 	cur=NULL;
   270 	prev=NULL;
   271 	model->nextBranch(cur,prev);
   272 	while (cur) 
   273 	{
   274 		// FIXME-2 use proxy pix=treeEditor->getProxyModel()->mapFromSource (model->index (cur));
   275 		pix=model->index (cur);
   276 		d=cur->depth();
   277 		if (treeEditor->isExpanded(pix) && d >= level)
   278 			treeEditor->setExpanded(pix,false);
   279 		model->nextBranch(cur,prev);	
   280 	}
   281 }
   282 
   283 void VymView::showSelection()
   284 {
   285 	QModelIndex ix=model->getSelectedIndex();
   286 	treeEditor->scrollTo( ix, QAbstractItemView::EnsureVisible);
   287 	mapEditor->scrollTo ( ix);	// FIXME-3 also called from MapEditor::updateSelection...
   288 }
   289 
   290 void VymView::showFindWidget()
   291 {
   292 	findWidget->popup();
   293 }
   294 
   295 void VymView::findNext (QString s)
   296 {
   297 	bool cs=false;
   298 	BranchItem *bi=model->findText(s, cs);
   299 	if (bi)
   300 		findWidget->setStatus (FindWidget::Success);
   301 	else
   302 		findWidget->setStatus (FindWidget::Failed);
   303 
   304 }
   305 
   306 void VymView::findReset()
   307 {
   308 	model->findReset();
   309 	if (mapEditor) mapEditor->setFocus();
   310 }
   311