File: MainWindowObjects.cpp

package info (click to toggle)
faustworks 0.5~repack0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,028 kB
  • ctags: 1,141
  • sloc: cpp: 7,460; sh: 166; xml: 71; makefile: 66; ansic: 9
file content (741 lines) | stat: -rwxr-xr-x 26,718 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
/*
 * MainWindowObjects.cpp
 *
 * Created by Christophe Daudin on 12/05/09.
 * Copyright 2009 Grame. All rights reserved.
 *
 * GNU Lesser General Public License Usage
 * Alternatively, this file may be used under the terms of the GNU Lesser
 * General Public License version 2.1 as published by the Free Software
 * Foundation and appearing in the file LICENSE.LGPL included in the
 * packaging of this file.  Please review the following information to
 * ensure the GNU Lesser General Public License version 2.1 requirements
 * will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 *
 *
 * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
 * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 */
#include "MainWindowObjects.h"

#include "GraphicsSceneMainWindow.h"

#include "QLanguageItem.h"
#include "QLanguageItemFactory.h"

#include "QItemResizer.h"
#include "QPaletteItem.h"

#include <assert.h>

#include <QFileInfo>
#include <QMouseEvent>
#include <QDrag>
#include <QMimeData>
#include <QTextStream>
#include <QStatusBar>
#include <QtDebug>

#define DOM_GMN_CONTAINER_ITEM "containerItem"
#define DOM_GMN_CONTAINER_ITEM_X "containerItemX"
#define DOM_GMN_CONTAINER_ITEM_Y "containerItemY"
#define DOM_HISTORY "history"
#define DOM_STORAGE "storage"

#define PAGE_ITEM_SHADOW_DISTANCE 5

#define HISTORY_ITEM_MARGIN 25
#define HISTORY_WIDTH 120
#define STORAGE_WIDTH 150
#define STORAGE_ITEM_WIDTH 66
#define STORAGE_ITEM_HEIGHT 100

#define TEXT_MARGIN_X 10
#define TEXT_MARGIN_Y 15
#define MAX_FONT 15

//------------------------------------------------------------------------------------------------------------------------
QSideBarGraphicsView::QSideBarGraphicsView(QGraphicsScene * s , QLanguageItemFactory* factory ) 
	:	QGraphicsView(s) ,
		mFactory(factory)
{}

//------------------------------------------------------------------------------------------------------------------------
QDomElement QSideBarGraphicsView::save(QDomDocument &d)
{
	QDomElement root = d.createElement( domId() );
	
	for ( int i = 0 ; i < mAddedItems.size() ; i++ )
	{
		root.appendChild( mAddedItems[i]->saveToDomElement(&d) );
	}
	
	return root;
}

//------------------------------------------------------------------------------------------------------------------------
bool QSideBarGraphicsView::load( const QDomElement& root )
{
	if( root.tagName() != domId() )
		return false;

	clear();
	
	QDomNode n = root.firstChild();	
	while ( !n.isNull() )
	{
		QDomElement e = n.toElement();
		if ( ( !e.isNull() ) && ( e.tagName() == DOM_LANGUAGE_ITEM ) )
		{
			QLanguageItem * container = mFactory->buildLanguageItem(&e);
			if ( !find(container) )
				addItem( container );
			else
				delete container;
		}
			
		n = n.nextSibling();
	}
	
	return true;
}

//------------------------------------------------------------------------------------------------------------------------
void QSideBarGraphicsView::clear()
{
	while ( mAddedItems.size() > 0 )
	{
		scene()->removeItem( mAddedItems[0] );
		delete mAddedItems[0];
		mAddedItems.removeAt(0);
	}
}

//------------------------------------------------------------------------------------------------------------------------
void QSideBarGraphicsView::removeItem( QGraphicsItem * item )
{
	QLanguageItem * selectionItem = dynamic_cast<QLanguageItem *>(item);
	assert( selectionItem );
	scene()->removeItem( selectionItem );
	mAddedItems.removeAll(selectionItem);
	delete item;
}

//------------------------------------------------------------------------------------------------------------------------
QLanguageItem* QSideBarGraphicsView::find(const QLanguageItem * other )
{
	for ( int i = 0 ; i < mAddedItems.size() ; i++ )
	{
		QLanguageItem * languageItem = mAddedItems[i];
		if ( other->isEqualTo( languageItem ) )
			return languageItem;
	}
	return 0;
}

//------------------------------------------------------------------------------------------------------------------------
void QSideBarGraphicsView::setupContainer( QLanguageItem * container )
{	
	container->setMimeId( mimeId() );
	container->setStorageMode(true);
	container->unlinkFile();
}

#define SCROLL_BAR_MARGIN	5
#define MAX_HISTORY_SIZE	30
#define EMPTY_SCENE_HEIGHT 1
//------------------------------------------------------------------------------------------------------------------------
QHistoryGraphicsView::QHistoryGraphicsView(QGraphicsScene * s , QLanguageItemFactory* factory ) 
	: QSideBarGraphicsView(s , factory )
{
	setFixedWidth( HISTORY_WIDTH );
	setHorizontalScrollBarPolicy( Qt::ScrollBarAlwaysOff );
    setStatusTip ( "Keep trace of all items added to the scene" );
}

//------------------------------------------------------------------------------------------------------------------------
void QHistoryGraphicsView::clear()
{
	QSideBarGraphicsView::clear();
	scene()->setSceneRect( QRectF(0,0,0,EMPTY_SCENE_HEIGHT ) );
}

//------------------------------------------------------------------------------------------------------------------------
void QHistoryGraphicsView::resizeEvent( QResizeEvent * )
{
	scene()->setSceneRect( QRectF(0,0,width() - HISTORY_ITEM_MARGIN , MAX( height() - SCROLL_BAR_MARGIN , scene()->sceneRect().height() ) ) );
}

//------------------------------------------------------------------------------------------------------------------------
void QHistoryGraphicsView::addItem( QLanguageItem * container )
{	
	setupContainer( container );
	
	//Scale the item so that it fits inside the side bar, maximizing its size but keeping margins.
	float widthScaleFactor = ( this->width() - HISTORY_ITEM_MARGIN ) / container->sceneBoundingRect().width();
	float heightScaleFactor = ( 1.5f * this->width() - HISTORY_ITEM_MARGIN ) / container->sceneBoundingRect().height();
	float scaleFactor = MIN(widthScaleFactor,heightScaleFactor);
	scaleFactor = MIN( MIN(scaleFactor,1.0f/container->transform().m11()) , MIN(scaleFactor,1.0f/container->transform().m22()) );
    //container->scale( scaleFactor , scaleFactor );
    container->setTransform(QTransform::fromScale(scaleFactor, scaleFactor), true);

	//Add the item to the scene, and to the list of all items.
	scene()->addItem( container );
	mAddedItems.append( container );
	
	reorderItems();
}

//------------------------------------------------------------------------------------------------------------------------
QString QHistoryGraphicsView::domId() 
{ return DOM_HISTORY; }
//------------------------------------------------------------------------------------------------------------------------
QString QHistoryGraphicsView::mimeId() 
{ return FROM_HISTORY_DRAG_MIME; }

#include <QtDebug>
//------------------------------------------------------------------------------------------------------------------------
void QHistoryGraphicsView::reorderItems()
{
	if ( mAddedItems.size() > MAX_HISTORY_SIZE )
	{
		removeItem( mAddedItems.first() );
	}
	
	int currentY = 0;
	int maxWidth = 0;
	for ( int i = mAddedItems.size()-1 ; i >= 0  ; i-- )
	{
		QRectF r(mAddedItems[i]->sceneBoundingRect());
		mAddedItems[i]->setPos( 0 , currentY );
		currentY += r.height();
		maxWidth = MAX( r.width() , maxWidth );
	}
	for ( int i = mAddedItems.size()-1 ; i >= 0  ; i-- )
	{
		QRectF r(mAddedItems[i]->sceneBoundingRect());
		mAddedItems[i]->setPos( (maxWidth - r.width())/2.0f , mAddedItems[i]->pos().y() );
	}
	
	int sceneHeight = scene()->sceneRect().height();
	if ( ( sceneHeight == EMPTY_SCENE_HEIGHT ) || ( currentY > sceneHeight ) )
	{
		sceneHeight += height() - SCROLL_BAR_MARGIN;
	}
	scene()->setSceneRect( QRectF(0,0,width() - HISTORY_ITEM_MARGIN , sceneHeight ) );
}

//------------------------------------------------------------------------------------------------------------------------
QStorageGraphicsView::QStorageGraphicsView( QGraphicsScene * s , GraphicsSceneMainWindow * mainWindow , QLanguageItemFactory* factory ) 
	: QSideBarGraphicsView(s , factory)
{
	setAcceptDrops(true);
	setDragMode(QGraphicsView::RubberBandDrag);
	mMainWindow = mainWindow;
    setStatusTip ( tr("Drag&drop an item to store it in the Storage Zone") );
	
	connect( s , SIGNAL( changed(const QList<QRectF> &) ) , this , SLOT( sceneChanged(const QList<QRectF> &) ) );
}

//------------------------------------------------------------------------------------------------------------------------
void QStorageGraphicsView::addItem( QLanguageItem * container )
{
	setupContainer(container);

	container->setPos(0,0);

	//Scale the item so that it fits within a constraint size (STORAGE_ITEM_WIDTH,STORAGE_ITEM_HEIGHT)
	QRectF rect = container->sceneBoundingRect();
	float scaleFactor = MIN( float(STORAGE_ITEM_WIDTH) / rect.width() , float(STORAGE_ITEM_HEIGHT) / rect.height() );
	scaleFactor = MIN( MIN(scaleFactor,1.0f/container->transform().m11()) , MIN(scaleFactor,1.0f/container->transform().m22()) );
    //container->scale( scaleFactor , scaleFactor );
    container->setTransform(QTransform::fromScale(scaleFactor, scaleFactor), true);
	//Item is only selectable, not movable. (moved by drag&drop, other mechanism)
	container->setFlags( QGraphicsItem::ItemIsSelectable );

	//Add the item to the scene, and to the list of all items.
	scene()->addItem( container );
	mAddedItems.append( container );

	reorderItems();
}

//------------------------------------------------------------------------------------------------------------------------
QString QStorageGraphicsView::domId() 
{ return DOM_STORAGE; }

//------------------------------------------------------------------------------------------------------------------------
QString QStorageGraphicsView::mimeId() 
{ return FROM_STORAGE_DRAG_MIME; }

//------------------------------------------------------------------------------------------------------------------------
void QStorageGraphicsView::sceneChanged( const QList<QRectF> &)
{
	mMainWindow->updateRemoveActState();
}

//------------------------------------------------------------------------------------------------------------------------
void QStorageGraphicsView::resizeEvent( QResizeEvent * )
{
	scene()->setSceneRect( 0 , 0 , this->width()-SCROLL_BAR_MARGIN , this->height()-SCROLL_BAR_MARGIN );
	reorderItems();
}

//------------------------------------------------------------------------------------------------------------------------
void QStorageGraphicsView::dragEnterEvent(QDragEnterEvent* event)
{
//	qDebug() << "QStorageGraphicsView::dragEnterEvent";
	if (	( event->mimeData()->hasFormat(FROM_SCENE_DRAG_MIME) ) 
		||	( event->mimeData()->hasFormat(FROM_STORAGE_DRAG_MIME) ) 
		||	( event->mimeData()->hasFormat(FROM_HISTORY_DRAG_MIME) ) 
		)
	{
		event->acceptProposedAction();
	}
	else
		event->ignore();
}

//------------------------------------------------------------------------------------------------------------------------
void QStorageGraphicsView::dragMoveEvent(QDragMoveEvent* event)
{
	event->acceptProposedAction();
}

//------------------------------------------------------------------------------------------------------------------------
void QStorageGraphicsView::dragLeaveEvent(QDragLeaveEvent* )
{
//	qDebug() << "QStorageGraphicsView::dragLeaveEvent";
//	QGraphicsView::dragLeaveEvent( event );
}

/*!
*	\brief Drops a QLanguageItem in the QStorageGraphicsView. The
*	QLanguageItem is built from the information in the QMimeData.
*/
//------------------------------------------------------------------------------------------------------------------------
void QStorageGraphicsView::dropEvent(QDropEvent* event)
{
	// Only accepts drops that come from within the application : main scene, or sidebars.
	if (	( event->mimeData()->hasFormat(FROM_SCENE_DRAG_MIME) )
		||	( event->mimeData()->hasFormat(FROM_STORAGE_DRAG_MIME) ) 
		||	( event->mimeData()->hasFormat(FROM_HISTORY_DRAG_MIME) ) 
		)
	{
		// Build the QLanguageItem from the informations in the QMimeData.
		QLanguageItem * container = mFactory->buildLanguageItem( event->mimeData() );
		// Do not accept invalid items.
		if ( !(container->isValid()) )
		{
			delete container;
			return;
		}
		
		// If the storage scene already contains an equivalent item,
		// do not add the new item ; only move the existing one.
		QLanguageItem * other = find(container);
		if ( other )
		{
			QRectF itemRect = other->sceneBoundingRect();
			other->setPos( event->pos() - QPointF(itemRect.width(),itemRect.height())/2.0f );
			reorderItems();
			delete container;
		}
		else
		{
			// There is no equivalent item in the scene : add the created item.
			addItem( container );
			QPointF scenePos = mapToScene( event->pos() );
			QRectF itemRect = container->sceneBoundingRect();
			container->setPos( scenePos - QPointF( itemRect.width() , itemRect.height() )/2.0f );
		}
		event->accept();
		
		if ( event->mimeData()->hasFormat(FROM_SCENE_DRAG_MIME) )
		{
			QLanguageItem * item = (QLanguageItem*)((const void *) event->mimeData()->data( FROM_SCENE_DRAG_MIME ));

			if ( mMainWindow->saveItemModificationsDialog(item) )
			{
				mMainWindow->itemRemoved( item );
				item->deleteLater();
			}

		}
	}
	else
	{
		event->ignore();
	}
}

//------------------------------------------------------------------------------------------------------------------------
void QStorageGraphicsView::focusOutEvent( QFocusEvent * event )
{
	QGraphicsView::focusOutEvent( event );
	while ( scene()->selectedItems().size() > 0 )
		scene()->selectedItems()[0]->setSelected( false );
}

//------------------------------------------------------------------------------------------------------------------------
void QStorageGraphicsView::focusInEvent( QFocusEvent * event )
{
	QGraphicsView::focusOutEvent( event );
	mMainWindow->unselectAll();
}

//------------------------------------------------------------------------------------------------------------------------
void QStorageGraphicsView::reorderItems()
{	
/*
	QList<QLanguageItem*> decorators = filterItems( scene()->items() );	
	QRectF visibleRect = mapFromScene( sceneRect() ).boundingRect();
	for ( int i = 0 ; i < decorators.size()  ; i++ )
	{
		QRectF decoratorRect = decorators[i]->sceneBoundingRect();
		
		if ( decoratorRect.x() < visibleRect.x() )
			decorators[i]->setPos( visibleRect.x() , decorators[i]->y() );
		if ( decorators[i]->y() < visibleRect.y() )
			decorators[i]->setPos( decorators[i]->x() , visibleRect.y() );
		if ( decoratorRect.bottomRight().x() > visibleRect.bottomRight().x() )
			decorators[i]->setPos( visibleRect.bottomRight().x() - decoratorRect.width() , decorators[i]->y() );
		if ( decoratorRect.bottomRight().y() > visibleRect.bottomRight().y() )
			decorators[i]->setPos( decorators[i]->x() , visibleRect.bottomRight().y() - decoratorRect.height() );
	}
*/
}

//------------------------------------------------------------------------------------------------------------------------
QList<QLanguageItem*> QStorageGraphicsView::filterItems(const QList<QGraphicsItem*>& list)
{
	QList<QLanguageItem*> result;
	for ( int i = 0 ; i < list.size() ; i++ )
	{
		QLanguageItem * languageItem = dynamic_cast<QLanguageItem*> (list[i]);
		if ( languageItem )
			result.append( languageItem );
	}
	return result;
}

#define SHADOW_COLOR QColor(150,150,150,50)
//------------------------------------------------------------------------------------------------------------------------
QBackgroundItem::QBackgroundItem( GraphicsSceneMainWindow * mainWindow ,  const QSizeF& size )
{
	mRect = QRectF( 0, 0, size.width() , size.height() );
		
	mPage = new QGraphicsRectItem( QRectF() , this );
	mPage->setBrush( Qt::white );
	mPage->setPen( Qt::NoPen );
	mPage->setZValue(0);
		
	mBackgroundItemResizer = new QItemResizer( QRectF() , mPage );
	mBackgroundItemResizer->setZValue(1);
	mBackgroundItemResizer->setKeepAspectRatio(false);
			
	QPen resizerPen(Qt::black);
	resizerPen.setStyle( Qt::DotLine );
	mBackgroundItemResizer->setPen( resizerPen );
	mBackgroundItemResizer->setBrush( SHADOW_COLOR );

	mIsResizeEnabled = true;

	QObject::connect( mBackgroundItemResizer , SIGNAL(resized(const QRectF&) ) , mainWindow , SLOT(resizePage(const QRectF&)) );
			
	updatePageRect();
}

//------------------------------------------------------------------------------------------------------------------------
void QBackgroundItem::setRect( const QRectF& r ) 
{
//	qDebug() << "QBackgroundItem::setRect : " << mRect << " -> " << r;

	if ( ( r.width() != mRect.width() ) || ( r.height() != mRect.height() ) )
	{
		prepareGeometryChange();
		mRect.setWidth(r.width());
		mRect.setHeight(r.height());
		update();
	
		updatePageRect();
	}
	setPos( r.x() , r.y() );
}

//------------------------------------------------------------------------------------------------------------------------		
QRectF QBackgroundItem::boundingRect() const
{
	return mRect;
}
		
//------------------------------------------------------------------------------------------------------------------------
QRectF QBackgroundItem::pageRectInSceneCoords() const
{
	return mPage->mapToScene(mPage->boundingRect()).boundingRect();
}
		
//------------------------------------------------------------------------------------------------------------------------
void QBackgroundItem::setPageSize( const QSizeF& size ) 
{
	setResizeEnabled( true );
	QSize totalSize(size.width() + 2*PAGE_ITEM_OUT_MARGIN , size.height() + 2*PAGE_ITEM_OUT_MARGIN );
//	setSize( totalSize );
	setRect( QRectF( pos().x() , pos().y() , totalSize.width() , totalSize.height() ) );
}

//------------------------------------------------------------------------------------------------------------------------
QSizeF QBackgroundItem::pageSize() const 
{
	return QSize( mPage->boundingRect().width() , mPage->boundingRect().height() );
}

//------------------------------------------------------------------------------------------------------------------------
void QBackgroundItem::setResizeEnabled( bool isEnabled )
{
	mIsResizeEnabled = isEnabled;
}

//------------------------------------------------------------------------------------------------------------------------
bool QBackgroundItem::isResizeEnabled() const
{
	return mIsResizeEnabled;
}

//------------------------------------------------------------------------------------------------------------------------
void QBackgroundItem::paint ( QPainter * painter, const QStyleOptionGraphicsItem * , QWidget * )
{
	QRectF pageRect = mPage->boundingRect();
	pageRect.translate( mPage->pos() );
			
	QRectF shadowRect( pageRect );
	shadowRect.translate( PAGE_ITEM_SHADOW_DISTANCE , PAGE_ITEM_SHADOW_DISTANCE );			

	painter->setPen( Qt::NoPen );
	painter->setBrush( QBrush(Qt::darkGray) );
	painter->drawRect( shadowRect );
}

//	The pageRect is the "white paper" part of the QBackgroundItem.
//	
//	----------------------------------------------------------------------------------------------------------------------
void QBackgroundItem::updatePageRect()
{
	if ( mIsResizeEnabled )
	{
		QRectF pageRect(0,0,0,0);
		pageRect.setWidth( mRect.width() - 2*PAGE_ITEM_OUT_MARGIN );
		pageRect.setHeight( mRect.height() - 2*PAGE_ITEM_OUT_MARGIN );

		mPage->setRect( pageRect );
		mPage->setPos( PAGE_ITEM_OUT_MARGIN , PAGE_ITEM_OUT_MARGIN );

		mBackgroundItemResizer->updateGeometry( pageRect );
	}
}

//------------------------------------------------------------------------------------------------------------------------
LanguageTextEdit::LanguageTextEdit(const QString& initString , GraphicsSceneMainWindow * mainWindow) 
			: QTextEdit(initString) , mMainWindow(mainWindow) 
{
}

//------------------------------------------------------------------------------------------------------------------------
void LanguageTextEdit::wheelEvent( QWheelEvent * e )
{
	mMainWindow->textEditActivity();
	QTextEdit::wheelEvent( e );
}

//------------------------------------------------------------------------------------------------------------------------
void LanguageTextEdit::focusOutEvent( QFocusEvent * event )
{
	mMainWindow->updateCode();
	QTextEdit::focusOutEvent( event );
}

//------------------------------------------------------------------------------------------------------------------------
void LanguageTextEdit::changeEvent ( QEvent * event )
{
	if ( event->type() == QEvent::EnabledChange )
		Q_EMIT enabled( isEnabled() );
}

//------------------------------------------------------------------------------------------------------------------------
void LanguageTextEdit::dragEnterEvent(QDragEnterEvent* event)
{
	if (		
		(
				( event->mimeData()->hasText() )
			||  ( event->mimeData()->hasUrls() )
		)
	)
	{
		event->acceptProposedAction();
	}
	else
	{
		qDebug("LanguageTextEdit::dragEnterEvent : refused");
	}
}

//------------------------------------------------------------------------------------------------------------------------
void LanguageTextEdit::dragMoveEvent(QDragMoveEvent* event)
{
	if (		
		(
				( event->mimeData()->hasText() )
			||  ( event->mimeData()->hasUrls() )
		)
	)
	{
		event->acceptProposedAction();
	}
}

//------------------------------------------------------------------------------------------------------------------------
void LanguageTextEdit::dropEvent(QDropEvent* event)
{
	QLanguageItem* createdItem = 0;
	mMainWindow->dropItem( event->mimeData() , mMainWindow->viewCenterInSceneCoordinate() , &createdItem );
	event->accept();
}

//------------------------------------------------------------------------------------------------------------------------
LanguageGraphicsView::LanguageGraphicsView() : QGraphicsView() 
{ 
	setDragMode(QGraphicsView::RubberBandDrag);
	setAcceptDrops(true); 
	setMouseTracking (true);
}

//------------------------------------------------------------------------------------------------------------------------
QSize LanguageGraphicsView::sizeHint () const
{
    //return QSize(500,500);
    return QSize(50,50);
}

//------------------------------------------------------------------------------------------------------------------------
void LanguageGraphicsView::setMainWindow( GraphicsSceneMainWindow * mainWindow )
{
	setParent( mainWindow );
	mMainWindow = mainWindow;
}

//------------------------------------------------------------------------------------------------------------------------
void LanguageGraphicsView::dragEnterEvent(QDragEnterEvent* event)
{
//	qDebug() << "LanguageGraphicsView::dragEnterEvent";
	if (		
			( event->mimeData()->hasText() ||  event->mimeData()->hasUrls() )
		||	( event->mimeData()->hasFormat( FROM_SCENE_DRAG_MIME ) )
	)
	{
		event->acceptProposedAction();
	}
}

//------------------------------------------------------------------------------------------------------------------------
void LanguageGraphicsView::dragLeaveEvent(QDragLeaveEvent* )
{
//	qDebug() << "LanguageGraphicsView::dragLeaveEvent";
}

//------------------------------------------------------------------------------------------------------------------------
void LanguageGraphicsView::dropEvent(QDropEvent* event)
{
	// Take the focus.
	setFocus();

	QLanguageItem* droppedItem = 0;

	QPointF pos = mapToScene( event->pos() );

	// Check if the drop QMimeData contains the "copy drag" flag.
	bool doCopy = false;
	if ( event->mimeData()->hasFormat( MIME_DO_COPY ) )
	{
		doCopy = QVariant( event->mimeData()->data( MIME_DO_COPY ).data() ).toBool();
	}

	// Check if the drop triggers a palette interaction.
	bool isPaletteDrop = event->mimeData()->hasFormat( MIME_PALETTE_ID );
	QGraphicsItem * draggedItem = 0;
	int paletteId = -1;
	if ( isPaletteDrop )
	{
		paletteId = event->mimeData()->data( MIME_PALETTE_ID ).toInt();
		draggedItem = (QGraphicsItem*)((const void *) event->mimeData()->data( MIME_PALETTE_ITEM ));
	}
	if ( (!isPaletteDrop) || (!QPaletteManager::instance()->drop( scene() , paletteId , draggedItem ) ) )
	{
		// The drop didn't triggered a palette interaction.
		
		// If the QMimeData tells that the drop comes from the main scene, then
		// the QMimeData also contains the dragged item pointer.
		if ( event->mimeData()->hasFormat( FROM_SCENE_DRAG_MIME ) )
		{
			droppedItem = (QLanguageItem*)((const void *) event->mimeData()->data( FROM_SCENE_DRAG_MIME ));
			// Move the item to the drop position, and get the resulting movement coordinate.
			QPointF movementValue = droppedItem->moveItem( mapToScene( event->pos() ) );
			// Move all other selected item of the scene by the same (dx,dy).
			QList<QLanguageItem*> selectedItems = mMainWindow->selectedLanguageItems();
			QList<QLanguageItem*> otherSelectedItems(selectedItems);
			otherSelectedItems.removeAll( droppedItem );
			for ( int i = 0 ; i < otherSelectedItems.size() ; i++ )
				otherSelectedItems[i]->moveBy( movementValue.x() , movementValue.y() );
			
			if ( doCopy )
			{
				// The "copy flag" is on: 
				QList<QLanguageItem*> copiedItems;
				for ( int i = 0 ; i < selectedItems.size() ; i++ )
				{
					// 1. copy all the moved items (storing their respective copies in a list)
					copiedItems << mMainWindow->addItemCopy(selectedItems[i]);
					// 2. then put them back to their original position,
					selectedItems[i]->moveBy( -movementValue.x() , -movementValue.y() );
				}
				// 3. then select all the copied items.
				scene()->clearSelection();
				for ( int i = 0 ; i < copiedItems.size() ; i++ )
					copiedItems[i]->setSelected( true );
			}
		}
		else
		{
			// The drop comes whether:
			//	- from the OS file explorer, 
			//	- from the side-bar scenes
			// create a new item according to the content of the QMimeData.
			// (the mainWindow handles this operation)
			mMainWindow->dropItem( event->mimeData() , pos , &droppedItem );
		}
	}
	event->accept();
}

//------------------------------------------------------------------------------------------------------------------------
void LanguageGraphicsView::dragMoveEvent(QDragMoveEvent* event)
{
	event->acceptProposedAction();

	// If we are dragging a "Palette Enabled" item
	if ( event->mimeData()->hasFormat( MIME_PALETTE_ID ) )
	{
		// Get the paletteId and the dragged item...
		int paletteId = event->mimeData()->data( MIME_PALETTE_ID ).toInt();
		QGraphicsItem * draggedItem = (QGraphicsItem*)((const void *) event->mimeData()->data( MIME_PALETTE_ITEM ));
		// ... and notify the QPaletteManager that we are moving it, so it can, if necessary, activate the palette.
		QPaletteManager::instance()->move( mapToScene( event->pos() ) , scene() , paletteId , draggedItem );
	}
}

//-------------------------------------------------------------------------
void LanguageGraphicsView::mouseMoveEvent( QMouseEvent * event )
{
	QGraphicsView::mouseMoveEvent(event);
	QPointF posSceneCoords = mMainWindow->mGraphicsView->mapToScene( event->pos() );
	mMainWindow->updateCursorPos( posSceneCoords );
}