vymview.cpp
author insilmaril
Thu, 26 Nov 2009 14:55:23 +0000
changeset 810 a9295db4dcbf
parent 808 b163492fda17
child 811 c79486b7cb4b
permissions -rw-r--r--
More fixes to new findwidget
     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 
   119 	mapEditor->setAntiAlias (mainWindow->isAliased());
   120 	mapEditor->setSmoothPixmap(mainWindow->hasSmoothPixmapTransform());
   121 
   122 	splitter->addWidget (treeEditor);
   123 	splitter->addWidget (mapEditor);
   124 
   125 	// Set geometry
   126 	QList <int> widths;
   127 	widths<<200;
   128 	widths<<600;
   129 	splitter->setSizes(widths);
   130 }
   131 
   132 VymView::~VymView()
   133 {
   134 	//cout << "Destructor VymView\n";
   135 }
   136 
   137 VymModel* VymView::getModel()
   138 {
   139 	return model;
   140 }
   141 
   142 MapEditor* VymView::getMapEditor()
   143 {
   144 	return mapEditor;
   145 }
   146 
   147 void VymView::initFocus()
   148 {
   149 	mapEditor->setFocus();
   150 }
   151 
   152 void VymView::changeSelection (const QItemSelection &newsel, const QItemSelection &oldsel)	
   153 {
   154 	//cout << "VV::changeSelection   newsel.count="<<newsel.indexes().count()<<endl;
   155 
   156 	mainWindow->changeSelection (model,newsel,oldsel);	
   157 	mapEditor->updateSelection (newsel,oldsel);
   158 
   159 	if (newsel.indexes().count()>0)
   160 	{
   161 
   162 	/* FIXME-2 use proxymodel
   163 		proxySelModel->select (
   164 			treeEditor->getProxyModel()->mapSelectionFromSource (newsel),
   165 			QItemSelectionModel::ClearAndSelect );
   166 		*/
   167 		
   168 		QModelIndex ix=newsel.indexes().first();
   169 		selModel->setCurrentIndex (ix,QItemSelectionModel::ClearAndSelect  );
   170 		treeEditor->setCurrentIndex (ix);
   171 		showSelection();
   172 		
   173 	}
   174 }
   175 
   176 void VymView::changeProxySelection (const QItemSelection &newsel, const QItemSelection &)
   177 {
   178 	// Notify mainwindow to update satellites, but map selection to 
   179 	// original model first
   180 
   181 	//cout << "VV::changeProxySelection   newsel.count="<<newsel.indexes().count()<<endl;
   182 	if (!newsel.indexes().isEmpty())
   183 	{
   184 	/* FIXME-2 need to set current, too
   185 	*/
   186 		proxySelModel->setCurrentIndex (
   187 			newsel.indexes().first(),
   188 			QItemSelectionModel::ClearAndSelect );
   189 	treeEditor->setCurrentIndex (newsel.indexes().first() );
   190 	}
   191 
   192 	// Re-emit but map selection first
   193 	selModel->select (
   194 		treeEditor->getProxyModel()->mapSelectionToSource (newsel),
   195 		QItemSelectionModel::ClearAndSelect );
   196 
   197 	showSelection();
   198 }
   199 
   200 void VymView::expandAll()
   201 {
   202 	treeEditor->expandAll();
   203 }
   204 
   205 void VymView::expandOneLevel()
   206 {
   207 	int level=999999;
   208 	int d;
   209 	BranchItem *cur=NULL;
   210 	BranchItem *prev=NULL;
   211 	QModelIndex pix;
   212 
   213 	// Find level to expand
   214 	model->nextBranch(cur,prev);
   215 	while (cur) 
   216 	{
   217 		// FIXME-2 use proxy pix=treeEditor->getProxyModel()->mapFromSource (model->index (cur));
   218 		pix=model->index (cur);
   219 		d=cur->depth();
   220 		if (!treeEditor->isExpanded(pix) && d < level)
   221 			level=d;
   222 		model->nextBranch(cur,prev);	
   223 	}
   224 
   225 	// Expand all to level
   226 	cur=NULL;
   227 	prev=NULL;
   228 	model->nextBranch(cur,prev);
   229 	while (cur) 
   230 	{
   231 		// FIXME-2 use proxy pix=treeEditor->getProxyModel()->mapFromSource (model->index (cur));
   232 		pix=model->index (cur);
   233 		d=cur->depth();
   234 		if (!treeEditor->isExpanded(pix) && d <= level && cur->branchCount()>0)
   235 			treeEditor->setExpanded(pix,true);
   236 		model->nextBranch(cur,prev);	
   237 	}
   238 	/* FIXME-3 optimize expanding by using flat version of next
   239 	model->nextBranch(cur,prev,false);
   240 	while (cur) 
   241 	{
   242 		cout << "ok: "<<cur->getHeadingStd()<<endl./re/videochristinaprison1_wmvl.wmv
   243 ;
   244 		model->nextBranch(cur,prev,false);	
   245 	}
   246 	*/
   247 }
   248 
   249 void VymView::collapseOneLevel()
   250 {
   251 	int level=-1;
   252 	int d;
   253 	BranchItem *cur=NULL;
   254 	BranchItem *prev=NULL;
   255 	QModelIndex pix;
   256 
   257 	// Find level to collapse
   258 	model->nextBranch(cur,prev);
   259 	while (cur) 
   260 	{
   261 		// FIXME-2 use proxy pix=treeEditor->getProxyModel()->mapFromSource (model->index (cur));
   262 		pix=model->index (cur);
   263 		d=cur->depth();
   264 		if (treeEditor->isExpanded(pix) && d > level)
   265 			level=d;
   266 		model->nextBranch(cur,prev);	
   267 	}
   268 
   269 	// collapse all to level
   270 	cur=NULL;
   271 	prev=NULL;
   272 	model->nextBranch(cur,prev);
   273 	while (cur) 
   274 	{
   275 		// FIXME-2 use proxy pix=treeEditor->getProxyModel()->mapFromSource (model->index (cur));
   276 		pix=model->index (cur);
   277 		d=cur->depth();
   278 		if (treeEditor->isExpanded(pix) && d >= level)
   279 			treeEditor->setExpanded(pix,false);
   280 		model->nextBranch(cur,prev);	
   281 	}
   282 }
   283 
   284 void VymView::showSelection()
   285 {
   286 	QModelIndex ix=model->getSelectedIndex();
   287 	treeEditor->scrollTo( ix, QAbstractItemView::EnsureVisible);
   288 	mapEditor->scrollTo ( ix);	// FIXME-3 also called from MapEditor::updateSelection...
   289 }
   290 
   291 void VymView::showFindWidget()
   292 {
   293 	findWidget->popup();
   294 }
   295 
   296 void VymView::findNext (QString s)
   297 {
   298 	bool cs=false;
   299 	BranchItem *bi=model->findText(s, cs);
   300 	if (bi)
   301 		findWidget->setStatus (FindWidget::Success);
   302 	else
   303 		findWidget->setStatus (FindWidget::Failed);
   304 
   305 }