-
Notifications
You must be signed in to change notification settings - Fork 0
/
LogicEditor.cpp
1379 lines (1120 loc) · 36.8 KB
/
LogicEditor.cpp
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
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Interface Editor: a basic circuit editor
// Copyright (C) 2004 David Yuste Romero ([email protected])
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <qapplication.h>
#include <qregexp.h>
#include <qpopupmenu.h>
#include <qaction.h>
#include <qwmatrix.h>
#include "LogicEditor.h"
#include "LEDevice.h"
#include "LELabel.h"
#include "LEWireLine.h"
#include "LEPin.h"
#include "LMComponent.h"
#include "LMLibrary.h"
#include "Application.h"
extern Application * app;
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
LogicEditor::~LogicEditor()
{
if( canvas() )
delete canvas();
}
LogicEditor::LogicEditor( QCanvas *canvas, QWidget *parent, const char *name )
: QCanvasView( parent, name )
{
setCanvas( canvas );
// Valores no inicializados
pendingItem = NULL;
lastCnnctPoint = NULL;
vertexActive = -1;
// Inicialmente no hay ningún objeto seleccionado
setActiveItem( NULL );
// Habilita la caputra de eventos de movimiento de ratón
this->viewport()->setMouseTracking( true );
QApplication::setGlobalMouseTracking( true );
// Zoom inicial
zoomFactor = 1.0;
// Crea las acciones para la interacción con el usuario mediante menús
createActions();
}
LogicEditor::LogicEditor( QWidget *parent, const char *name )
: QCanvasView( parent, name )
{
// Valores no inicializados
pendingItem = NULL;
lastCnnctPoint = NULL;
vertexActive = -1;
hndlActive = NULL;
actItem = NULL;
// Habilita la caputra de eventos de movimiento de ratón
this->viewport()->setMouseTracking( true );
QApplication::setGlobalMouseTracking( true );
// Zoom inicial
zoomFactor = 1.0;
// Crea las acciones para la interacción con el usuario mediante menús
createActions();
}
void LogicEditor::setCanvas( QCanvas * canvas )
{
QCanvasView::setCanvas( canvas );
// Creación de los agarradores
hndlLeftTop = new LEHandle( LEHandle::LeftTop, canvas, 0 );
hndlRightTop = new LEHandle( LEHandle::RightTop, canvas, 0 );
hndlLeftBottom = new LEHandle( LEHandle::LeftBottom, canvas, 0 );
hndlRightBottom = new LEHandle( LEHandle::RightBottom, canvas, 0 );
hndlActive=NULL;
}
void LogicEditor::zoomIn()
{
zoomFactor *= 1.25;
applyZoom();
}
void LogicEditor::zoomOut()
{
zoomFactor *= 0.8;
applyZoom();
}
void LogicEditor::zoomFixed( double f )
{
zoomFactor = f;
applyZoom();
}
void LogicEditor::applyZoom()
{
QWMatrix matrix;
matrix.scale( zoomFactor, zoomFactor );
setWorldMatrix( matrix );
}
//////////////////////////////////////////////////////////////////////
// SAVE y STORE de documentos
//////////////////////////////////////////////////////////////////////
bool LogicEditor::save( QIODevice * device )
{
if( !device )
return false;
QTextStream out( device );
out << "<model name=\"" << name() << "\">\n\n";
// Instancias de dispositivos
DeviceMapIterator devIt(deviceNames);
for( ;devIt.current(); ++devIt )
out << "\t<device name=\"" << devIt.currentKey() << "\" "
<< "template=\"" << devIt.current()->componentReference()->name() << "\" "
<< "library=\"" << devIt.current()->componentReference()->parentLibrary()->name() << "\" "
<< "offset=\"" << devIt.current()->x() << "x" << devIt.current()->y() << "\" "
<< "size=\"" << devIt.current()->width() << "x" << devIt.current()->height() << "\""
<< "></device>\n";
out << "\n";
// Instancias de cables
WireLineMapIterator wlIt(wireLineNames);
for( ; wlIt.current(); ++wlIt ){
QString cnnctName;
out << "\t<wireline name=\"" << wlIt.currentKey() << "\" ";
// Conexión izquierda
if( wlIt.current()->leftConnection() && wlIt.current()->leftConnection()->parent() )
cnnctName = wlIt.current()->leftConnection()->parent()->resolvName();
else
cnnctName = "null";
out << "leftConnection=\"" << cnnctName << "\" ";
// Conexión derecha
if( wlIt.current()->rightConnection() && wlIt.current()->rightConnection()->parent() )
cnnctName = wlIt.current()->rightConnection()->parent()->resolvName();
else
cnnctName = "null";
out << "rightConnection=\"" << cnnctName << "\"";
// Geometría
out << " points=\"";
for( int i=0; i < wlIt.current()->vertexCount(); i++ )
out << QString("%1 %2 ").arg( wlIt.current()->vertex(i).x() ).arg( wlIt.current()->vertex(i).y() );
out << "\"></wireline>\n";
}
out << "\n</model>";
return true;
}
bool LogicEditor::load( QIODevice * device )
{
int errLine, errCol;
QString errStr;
QDomDocument doc;
// Carga del XML
if( !doc.setContent( device, true, &errStr, &errLine, &errCol ) ){
qWarning( tr("Error cargando el modelo en la línea %d, columna %d: %s"), errLine, errCol, errStr.latin1() );
return false;
}
// Autentificación de formato
QDomElement root = doc.documentElement();
if( root.tagName().lower() != "model" ){
qWarning( tr("Error cargando librería: El fichero no es un modelo.") );
return false;
}
// Carga de atributos del modelo
QString data;
data = root.attribute( "name", name() );
setName( data );
// Carga de dispositivos
QDomNode node = root.firstChild();
while( !node.isNull() ){
if( node.toElement().tagName().lower() == "device"){
QDomElement elem = node.toElement();
parseDevice( elem );
}
node = node.nextSibling();
}
// Carga de dispositivos
node = root.firstChild();
while( !node.isNull() ){
if( node.toElement().tagName().lower() == "wireline"){
QDomElement elem = node.toElement();
parseWireLine( elem );
}
node = node.nextSibling();
}
return true;
}
bool LogicEditor::parseDevice( QDomElement & element )
{
QString strLib, strCmp, strVal;
LMLibrary * lib;
LMComponent * cmp;
// Obtención de atributos ensenciales
strLib = element.attribute( "library" );
if( strLib.isEmpty() ){
qWarning( tr("Error cargando modelo: No se ha asignado ningún valor al atributo 'library'") );
return false;
}
element.removeAttribute( "library" );
strCmp = element.attribute( "template" );
if( strCmp.isEmpty() ){
qWarning( tr("Error cargando modelo: No se ha asignado ningún valor al atributo 'template'") );
return false;
}
element.removeAttribute( "template" );
// Proceso y Validación de atributos esenciales
lib = app->libraryManager().find( strLib );
if( !lib ){
qWarning( tr("Error cargando modelo: La librería '%1' no existe en el proyecto actual.").arg(strLib) );
return false;
}
cmp = lib->find( strCmp );
if( !cmp ){
qWarning( tr("Error cargando modelo: El componente '%1' no existe en la librería '%2'.").arg(strCmp).arg(strLib) );
return false;
}
// Creamos el dispositivo sin usar la intefaz gráfica para ubicarlo (usingIGU=false)
LEDevice * dev = createDevice( cmp, false );
// Obtención de Atributos especiales
strVal = element.attribute( "name" );
if( !strVal.isEmpty() ){
dev->setName( strVal );
element.removeAttribute( "name" );
}
strVal = element.attribute( "offset" );
if( !strVal.isEmpty() ){
QPoint p = parsePoint( strVal );
dev->move( p.x(), p.y() );
element.removeAttribute( "offset" );
}
strVal = element.attribute( "size" );
if( !strVal.isEmpty() ){
QPoint p = parsePoint( strVal );
dev->setSize( p.x(), p.y() );
element.removeAttribute( "size" );
}
// Atributos adicionales
QDomNamedNodeMap attributes = element.attributes();
for( int i=0; i<attributes.length(); i++ )
if( !dev->setProperty( attributes.item(i).toAttr().name(), QVariant( attributes.item(i).toAttr().value() ) ) )
qWarning( tr("Cargando '%1': El objeto '%2' de tipo '%3' carece del atributo '%4'.").arg(name()).arg(dev->name()).arg(strLib+":"+strCmp) );
// Se muestra el dispositivo
dev->show();
return true;
}
bool LogicEditor::parseWireLine( QDomElement & element )
{
QString strVal;
QPointArray points;
LEConnectionPoint * left=0, * right=0;
LEWireLine * wl;
float breakPoint=0.5f;
bool hasGeometry=false;
// Cargamos la geometría
strVal = element.attribute( "points" );
if( !strVal.isEmpty() ){
// Geometría completametne definida (array de puntos)
if( !LMComponent::parseShapeString( strVal, points ) ){
qWarning( tr("Error cargando modelo: Imposible cargar <wireline>, formato de linea incorrecto.") );
return false;
}
hasGeometry=true;
}else{
strVal = element.attribute( "breakPoint" );
if( !strVal.isEmpty() ){
// Geometría automática con punto de inflexión en 'breakPoint'
bool ok;
breakPoint = strVal.toFloat( &ok );
if( !ok ) breakPoint = 0.5f;
}
}
/*
QDomNode childNode = element.firstChild();
while( !childNode.isNull() ){
if( childNode.nodeType() == QDomNode::TextNode ){
if( !LMComponent::parseShapeString( childNode.toText().data(), points ) ){
qWarning( tr("Error cargando modelo: Imposible cargar <wireline>, formato de linea incorrecto.") );
return false;
}
hasGeometry=true;
break;
}
childNode = childNode.nextSibling();
}
*/
// Extremos del WireLine
strVal = element.attribute( "leftConnection" );
if( !strVal.isEmpty() ){
LEItem * item = findItem( strVal, true );
if( item )
if( item->rtti() == LEPin::RTTI )
left = ((LEPin*)item)->connectionPoint();
}
strVal = element.attribute( "rightConnection" );
if( !strVal.isEmpty() ){
LEItem * item = findItem( strVal, true );
if( item )
if( item->rtti() == LEPin::RTTI )
right = ((LEPin*)item)->connectionPoint();
}
// Creamos el cable sin usar la intefaz gráfica para ubicarlo
if( hasGeometry ){
// Wireline completamente definida (fijación manual de geometría)
wl = createWireLine( false );
wl->setVertexs( points );
wl->connectLeft( left );
wl->connectRight( right );
}else{
// Wireline conectada automáticamente (geometría autocalculada)
if( left && right )
wl = createWireLine( left, right, breakPoint );
else
return false;
}
// Atributos adicionales
strVal = element.attribute( "name" );
if( !strVal.isEmpty() )
wl->setName( strVal );
wl->show();
return true;
}
QPoint LogicEditor::parsePoint( QString string )
{
QPoint p;
QRegExp rx("(\\D)+");
p.setX( string.section( rx, 0, 0).toDouble() );
p.setY( string.section( rx, 1, 1).toDouble() );
return p;
}
QPointArray LogicEditor::parsePointArray( QString string )
{
int max;
QPointArray points;
QStringList strs = QStringList::split( QRegExp("(\\D)+"), string );
if( strs.count()%2 )
max = strs.count()-1;
else
max = strs.count();
for( int i=0; i < max; i++ )
points.putPoints( i/2 , 1, strs[i].toDouble(), strs[i+1].toDouble() );
return points;
}
//////////////////////////////////////////////////////////////////////
// Acciones externas: Manipulación de objetos
//////////////////////////////////////////////////////////////////////
LEDevice * LogicEditor::createDevice( const LMComponent * cmp, bool usingIGU )
{
// Desactivamos los elementos activos
if( actItem )
setActiveItem( NULL );
// Instanciación del nuevo componente
LEDevice * lpDev = new LEDevice( canvas(), NULL );
lpDev->setName( cmp->name() );
lpDev->setComponentReference( cmp );
lpDev->setShape( cmp->shapeList().first() );
// Inserción de pins del nuevo componente
PinList::const_iterator it;
for( it = cmp->pinList().begin(); it != cmp->pinList().end(); it++ ){
LEPin * lpPin = lpDev->insertPin( (*it).alignment(), (*it).accessMode(), (*it).name(), (*it).position(), (*it).activeLevel() );
lpPin->setName( (*it).name() );
}
// Ubicación con intefaz gráfica
if( usingIGU ){
// Cancelamos cualquier otro objeto pendiente
if( pendingItem )
pendingItemCancel( pendingItem );
// El nuevo componente pasa a ser el objeto pendiente
pendingItem = lpDev;
}
return lpDev;
}
// Duplica un componente instanciado
LEDevice * LogicEditor::duplicateDevice( LEDevice * device, bool usingIGU )
{
// Buscamos el dispositivo original
LEItem * srcItem = findItem( normalizeDupName( device->name() ) );
if( srcItem->rtti() != LEDevice::RTTI )
return NULL;
LEDevice * srcDevice = (LEDevice*) srcItem;
// Creación del componente
LEDevice * dupDev = createDevice( srcDevice->componentReference(), usingIGU );
// Asignación de nombre
if( dupDev )
dupDev->setName( findFreeDupName( srcDevice->name() ) );
// Mapeamos los pins del nuevo dispositivo con los del anterior
LEPin * oldPin = srcDevice->pinList().first();
LEPin * newPin = dupDev->pinList().first();
while( oldPin && newPin ){
// Conexión efectiva. La conexión es simétrica para poder notificar el borrado
oldPin->connectionPoint()->setConnection( newPin->connectionPoint() );
newPin->connectionPoint()->setConnection( oldPin->connectionPoint() );
oldPin = srcDevice->pinList().next();
newPin = dupDev->pinList().next();
}
return dupDev;
}
LELabel * LogicEditor::createLabel( const QString &label )
{
if( actItem )
setActiveItem( NULL );
if( pendingItem )
pendingItemCancel( pendingItem );
LELabel * lpLab = new LELabel( canvas() );
lpLab->setText( label );
pendingItem = lpLab;
return lpLab;
}
LEWireLine * LogicEditor::createWireLine( bool usingIGU )
{
if( actItem )
setActiveItem( NULL );
LEWireLine * lpWl = new LEWireLine( canvas() );
lpWl->setName( "WireLine" );
if( usingIGU ){
if( pendingItem )
pendingItemCancel( pendingItem );
pendingItem = lpWl;
}
return lpWl;
}
// Conecta las puntos de conexión cp1 y cp2 mediante un cable de tres segmentos, que se "dobla" en el punto
// que dista breakPoint*longitud_horizontal de cp1
LEWireLine * LogicEditor::createWireLine( LEConnectionPoint * cp1, LEConnectionPoint * cp2, float breakPoint )
{
LEWireLine * wl = createWireLine( false );
wl->insertVertex( QPoint(cp1->x(), cp1->y()) );
wl->insertVertex( QPoint(cp1->x()+breakPoint*(cp2->x()-cp1->x()), cp1->y()) );
wl->insertVertex( QPoint(cp1->x()+breakPoint*(cp2->x()-cp1->x()), cp2->y()) );
wl->insertVertex( QPoint(cp2->x(), cp2->y()) );
wl->connectLeft( cp1 );
wl->connectRight( cp2 );
return wl;
}
// Iterador de nombres de dispositivos duplicados: Dado un nombre de dispositivo (duplicado o no),
// itera la lista deviceNames y devuelve el primer elemento si existe (QString::null en otro caso)
QString LogicEditor::firstDupName( const QString &patternName ) const
{
// Se genera un hipotético elemento 0.
QString normalName = normalizeDupName( patternName );
QString searchName = normalName + "(" + QString::number(0) + ")";
// Si existe se devuelve, es el primero y es válido, en otro caso
// se invoca el procedimiento buscar siguiente desde ese elemento
if( deviceNames.find( searchName ) )
return searchName;
else
return nextDupName( searchName );
}
// Iterador de nombres de dispositivos duplicados: Dado un nombre de dispositivo duplicado
// itera la lista deviceNames y devuelve el siguiente elemento si existe (QString::null en otro caso)
QString LogicEditor::nextDupName( const QString &patternName ) const
{
int i, j, minj=65000;
// Extraemos la información del último nombre iterado
QString normalName = normalizeDupName( patternName );
i = extractDupNameIndex( patternName );
if( i == -1 )
return QString::null;
// Búsqueda del mínimo índice siguiente a i
DeviceMapIterator it(deviceNames);
for( ; it.current(); ++it ){
j = extractDupNameIndex( it.currentKey() );
if( j > i && j < minj )
minj = j;
}
// Fin de la lista (No existe ningún mínimo)
if( minj == 65000 )
return QString::null;
// Devolvemos el siguiente elemento
return normalName +"("+QString::number(minj)+")";
}
// Devuelve un nombre de duplicado para patternName no usado
QString LogicEditor::findFreeDupName( const QString & patternName )
{
int i=0;
QString retval;
QString normalName = normalizeDupName( patternName );
// Se incrementa el contador hasta encontrar un nombre del tipo name(i) no usado
while( deviceNames.find( retval=normalName + "(" + QString::number(i) + ")" ) )
i++;
return retval;
}
// Busca un item llamado itemName, si mustSolve es TRUE intenta
// resolver el nombre a trávés de la jerarquía de campos: parent.child.child...
// Si no encuentra ningún candidato devuelve false
LEItem * LogicEditor::findItem( const QString & itemName, bool mustSolve )
{
LEDevice * it1 = deviceNames.find( itemName );
if( it1 )
return it1;
LEWireLine * it2 = wireLineNames.find( itemName );
if( it2 )
return it2;
// Resolución de un nombre compuesto
if( mustSolve ){
QStringList subStrings = QStringList::split( QString("%1").arg(ITEM_NAME_SEPARATOR), itemName );
LEItem *lastItem, *item = NULL;
for( int i=0; i<subStrings.size(); i++ ){
lastItem = item;
item = NULL;
if( lastItem ){
// Item hijo: Búsqueda en profundidad
for( LEItem * child =lastItem->childs().first(); child; child = lastItem->childs().next() )
// Búsqueda entre los hijos activos (entre los pins de un device, ie)
if( child->name() == subStrings[i] ){
item = child;
break;
}
}else{
// Item base: Búsqueda sin resolución de nombre por nombres mapeados
item = findItem( subStrings[i], false );
}
// El Item no existe
if( !item )
break;
}
return item;
}
// Elemento no encontrado
return NULL;
}
// Intenta cambiar el nombre del item itemName por newItemName.
// Si newItemName ya existe devuelve false
bool LogicEditor::tryUpdateItemName( const QString & itemName, const QString & newItemName )
{
LEItem * item = findItem( itemName );
if( !item )
return true;
// Ningún nombre puede coincidir con el nombre de un componente de librería
if( app->libraryManager().findComponent( newItemName ) )
return false;
// Exigimos unicidad de nombres
if( item->rtti() == LEDevice::RTTI || item->rtti() == LEWireLine::RTTI ){
LEDevice * it1 = deviceNames.find( newItemName );
if( it1 )
return false;
LEWireLine * it2 = wireLineNames.find( newItemName );
if( it2 )
return false;
}
// Actualización de los mapas de nombres
switch( item->rtti() ){
case LEDevice::RTTI:
deviceNames.remove( itemName );
deviceNames.insert( newItemName, (LEDevice*)item );
// Actualización de los nombres de los duplicados (si es un LEDevice original)
if( extractDupNameIndex( itemName ) == -1 )
for( QString dupName = firstDupName( itemName ); dupName != QString::null; dupName = nextDupName( dupName ) ){
LEItem * dupDev = findItem( dupName, false );
if( dupDev )
dupDev->setName( newItemName +"("+QString::number(extractDupNameIndex(dupName))+")" );
}
break;
case LEWireLine::RTTI:
wireLineNames.remove( itemName );
wireLineNames.insert( newItemName, (LEWireLine*)item );
break;
}
emit changed();
return true;
}
// Registra el item 'item' con el nombre itemName.
// Si itemName ya existe devuelve false
bool LogicEditor::registerItem( LEItem * item, const QString& itemName )
{
// Ningún nombre puede coincidir con el nombre de un componente de librería
if( app->libraryManager().findComponent( itemName ) )
return false;
// Exigimos unicidad de nombres
if( item->rtti() == LEDevice::RTTI || item->rtti() == LEWireLine::RTTI ){
LEDevice * it1 = deviceNames.find( itemName );
if( it1 )
return false;
LEWireLine * it2 = wireLineNames.find( itemName );
if( it2 )
return false;
}
// Inserción efectiva
switch( item->rtti() ){
case LEDevice::RTTI:
deviceNames.insert( itemName, (LEDevice*)item );
break;
case LEWireLine::RTTI:
wireLineNames.insert( itemName, (LEWireLine*)item );
break;
}
return true;
}
void LogicEditor::setActiveItem( LEItem * item )
{
if( item == NULL )
{
hndlLeftTop->hide();
hndlLeftBottom->hide();
hndlRightTop->hide();
hndlRightBottom->hide();
// Informamos al exterior con esta señal
if( actItem )
emit itemSelected( NULL );
actItem = 0;
}
else
{
switch( item->rtti() ){
case LEWireLine::RTTI:
//No hacer nada para LEWireLine
break;
default:
hndlLeftTop->move( item->x() - hndlLeftTop->width(), item->y() - hndlLeftTop->height() );
hndlLeftTop->setZ( item->z()+1 );
hndlLeftBottom->move( item->x() - hndlLeftBottom->width(), item->y() + item->height() );
hndlLeftBottom->setZ( item->z()+1 );
hndlRightTop->move( item->x() + item->width(), item->y() - hndlRightTop->height() );
hndlRightTop->setZ( item->z()+1 );
hndlRightBottom->move( item->x() + item->width(), item->y() + item->height() );
hndlRightBottom->setZ( item->z()+1 );
hndlLeftTop->show();
hndlLeftBottom->show();
hndlRightTop->show();
hndlRightBottom->show();
}
// Informamos al exterior con esta señal
if( actItem != item )
emit itemSelected( (QObject*)item );
actItem = item;
}
}
LEItem * LogicEditor::activeItem()
{
return actItem;
}
//////////////////////////////////////////////////////////////////////
// Acciones y menú emergente
//////////////////////////////////////////////////////////////////////
void LogicEditor::onActionDelete()
{
if( activeItem() ){
purgeItem( activeItem() );
canvas()->update();
emit changed();
}
}
void LogicEditor::onActionDuplicate()
{
if( activeItem() &&activeItem()->rtti() == LEDevice::RTTI ){
LEDevice * dev = (LEDevice*) activeItem();
if( dev->isExternSolving() )
duplicateDevice( dev, true );
}
}
void LogicEditor::createActions()
{
actDelete = new QAction(tr("Eliminar"), tr(""), this );
connect( actDelete, SIGNAL(activated()), this, SLOT(onActionDelete()) );
actDuplicate = new QAction(tr("Duplicar"), tr(""), this );
connect( actDuplicate, SIGNAL(activated()), this, SLOT(onActionDuplicate()) );
}
void LogicEditor::contextMenuEvent(QContextMenuEvent *event )
{
if( !activeItem() ){
event->ignore();
return;
}
// Borrado de elementos
QPopupMenu contextMenu( this );
actDelete->addTo( &contextMenu );
// Duplicación de elementos (para dispositivos de resolución externa)
if( activeItem()->rtti() == LEDevice::RTTI ){
LEDevice * dev = (LEDevice*) activeItem();
if( dev->isExternSolving() ){
contextMenu.insertSeparator();
actDuplicate->addTo( &contextMenu );
}
}
contextMenu.exec( event->globalPos() );
}
//////////////////////////////////////////////////////////////////////
// Control de eventos
//////////////////////////////////////////////////////////////////////
void LogicEditor::mouseOverEvent( LEItem * item, const QPoint &point )
{
if( !item )
return;
switch( item->rtti() ){
case LEConnectionPoint::RTTI:
{
// Activamos el borde del punto de conexión
LEConnectionPoint * lpCp = (LEConnectionPoint*) item;
lpCp->setDrawSquare( true );
lastCnnctPoint = lpCp;
canvas()->update();
break;
}
}
}
void LogicEditor::mouseOutEvent( LEItem * item, const QPoint &point )
{
if( !item )
return;
switch( item->rtti() ){
case LEConnectionPoint::RTTI:
{
// Desactivamos el border del punto de conexión
if( lastCnnctPoint )
lastCnnctPoint->setDrawSquare( false );
canvas()->update();
break;
}
}
}
void LogicEditor::contentsMousePressEvent( QMouseEvent *event )
{
QPoint realPos = (1.0/zoomFactor) * event->pos();
if( !pendingItem )
trySelectItem( realPos );
else
switch( event->button() ){
case LeftButton:
pendingItem = pendingItemPlace( pendingItem, realPos );
break;
case RightButton:
pendingItemCancel( pendingItem );
pendingItem = NULL;
}
}
void LogicEditor::contentsMouseMoveEvent( QMouseEvent *event )
{
QPoint realPos = (1.0/zoomFactor) * event->pos();
if( event->state() & LeftButton ){
if( actItem )
{
switch( actItem->rtti() ){
case LEWireLine::RTTI:
{
moveWireLineVertex( (LEWireLine*)actItem, realPos );
lastPos = realPos;
canvas()->update();
break;
}
default:
if( hndlActive ){
// Devuelve la posición destino efectiva, considerando el redimensionado
// que el objeto actItem ha permitido.
lastPos = resizeItem( actItem, lastPos, realPos, hndlActive->alignment() );
}else{
moveItem( actItem, lastPos, realPos );
lastPos = realPos;
}
}
}
}else{
if( pendingItem )
pendingItemPreview( pendingItem, realPos );
}
// Generamos el MouseOverEvent
QCanvasItemList items = canvas()->collisions(realPos);
QCanvasItemList::iterator it;
for( it = items.begin(); it != items.end(); it++ )
if( (*it)->rtti() >= LEItem::RTTI )
mouseOverEvent( (LEItem*)*it, realPos );
// Generamos el MouseOutEvent
for( it = lastMouseOverItems.begin(); it != lastMouseOverItems.end(); it++ )
if( (*it)->rtti() >= LEItem::RTTI )
if( items.find( *it ) == items.end() )
mouseOutEvent( (LEItem*)*it, realPos );
// Actualizamos la lista de Items que han recibido MouseOverEvent
lastMouseOverItems = items;
}
//////////////////////////////////////////////////////////////////////
// Manipulación de Items
//////////////////////////////////////////////////////////////////////
void LogicEditor::trySelectItem( const QPoint& pos )
{
hndlActive = NULL;
vertexActive = -1;
QCanvasItemList items = canvas()->collisions(pos);
if( items.empty() )
{
// Pulsación en espacio vacío
setActiveItem( NULL );
canvas()->update();
}
else
{
// Pulsación sobre un Item
QCanvasItem * canvasItem = *items.begin();
if( canvasItem->rtti() >= LEItem::RTTI )
// Se trata de un derivado de LEItem
switch( canvasItem->rtti() )
{
case LEHandle::RTTI:
hndlActive = (LEHandle*)canvasItem;
break;
case LEWireLine::RTTI:{
LEWireLine * wlItem = (LEWireLine*)canvasItem;
vertexActive = wlItem->nearestVertex( pos );
}
default:
if( actItem != (LEItem*)canvasItem )
{
if( actItem != NULL )
setActiveItem( NULL );
setActiveItem( (LEItem*)canvasItem );
}
canvas()->update();