forked from ra3xdh/qucs_s
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmouseactions.cpp
2066 lines (1775 loc) · 64.2 KB
/
mouseactions.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
/***************************************************************************
mouseactions.cpp
------------------
begin : Thu Aug 28 2003
copyright : (C) 2003 by Michael Margraf
email : [email protected]
***************************************************************************/
/* Copyright (C) 2014 Guilherme Brondani Torri <[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 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include "qucs.h"
#include "main.h"
#include "node.h"
#include "schematic.h"
#include "mouseactions.h"
#include "module.h"
#include "components/component.h"
#include "components/spicedialog.h"
#include "components/spicefile.h"
#include "components/optimizedialog.h"
#include "components/componentdialog.h"
#include "components/vacomponent.h"
#include "spicecomponents/sp_customsim.h"
#include "diagrams/diagramdialog.h"
#include "diagrams/markerdialog.h"
#include "diagrams/tabdiagram.h"
#include "diagrams/timingdiagram.h"
#include "dialogs/labeldialog.h"
#include "dialogs/textboxdialog.h"
#include "extsimkernels/customsimdialog.h"
#include <QTextStream>
#include <Q3PtrList>
#include <QMouseEvent>
#include <QClipboard>
#include <QApplication>
#include <QMessageBox>
#include <QMenu>
#include <QEvent>
#include <QAction>
#include <QLineEdit>
#include <QDebug>
#include <limits.h>
#include <stdlib.h>
#define DOC_X_POS(x) (int(float(x)/Doc->Scale) + Doc->ViewX1)
#define DOC_Y_POS(y) (int(float(y)/Doc->Scale) + Doc->ViewY1)
#define DOC_X_FPOS (float(Event->pos().x())/Doc->Scale + float(Doc->ViewX1))
#define DOC_Y_FPOS (float(Event->pos().y())/Doc->Scale + float(Doc->ViewY1))
#define SCR_X_POS(x) int(float(x - Doc->ViewX1) * Doc->Scale)
#define SCR_Y_POS(y) int(float(y - Doc->ViewY1) * Doc->Scale)
QAction *formerAction; // remember action before drag n'drop etc.
MouseActions::MouseActions(QucsApp* App_)
{
App = App_; // pointer to main app
selElem = 0; // no component/diagram is selected
isMoveEqual = false; // mouse cursor move x and y the same way
focusElement = 0; //element being interacted with mouse
// ...............................................................
// initialize menu appearing by right mouse button click on component
ComponentMenu = new QMenu(QucsMain);
focusMEvent = new QMouseEvent(QEvent::MouseButtonPress, QPoint(0,0),
Qt::NoButton, Qt::NoButton);
}
MouseActions::~MouseActions()
{
delete ComponentMenu;
delete focusMEvent;
}
// -----------------------------------------------------------
void MouseActions::setPainter(Schematic *Doc)
{
// contents to viewport transformation
Doc->PostPaintEvent(_Translate,-Doc->contentsX(), -Doc->contentsY());
Doc->PostPaintEvent(_Scale,Doc->Scale, Doc->Scale);
Doc->PostPaintEvent(_Translate,-Doc->ViewX1, -Doc->ViewY1);
Doc->PostPaintEvent(_DotLine);
Doc->PostPaintEvent(_NotRop);
}
// -----------------------------------------------------------
bool MouseActions::pasteElements(Schematic *Doc)
{
QClipboard *cb = QApplication::clipboard(); // get system clipboard
QString s = cb->text(QClipboard::Clipboard);
QTextStream stream(&s, QIODevice::ReadOnly);
movingElements.clear();
if(!Doc->paste(&stream, &movingElements)) return false;
Element *pe;
int xmax, xmin, ymax, ymin;
xmin = ymin = INT_MAX;
xmax = ymax = INT_MIN;
// First, get the max and min coordinates of all selected elements.
for(pe = movingElements.first(); pe != 0; pe = movingElements.next()) {
if(pe->Type == isWire) {
if(pe->x1 < xmin) xmin = pe->x1;
if(pe->x2 > xmax) xmax = pe->x2;
if(pe->y1 < ymin) ymin = pe->y1;
if(pe->y2 > ymax) ymax = pe->y2;
}
else {
if(pe->cx < xmin) xmin = pe->cx;
if(pe->cx > xmax) xmax = pe->cx;
if(pe->cy < ymin) ymin = pe->cy;
if(pe->cy > ymax) ymax = pe->cy;
}
}
xmin = -((xmax+xmin) >> 1); // calculate midpoint
ymin = -((ymax+ymin) >> 1);
Doc->setOnGrid(xmin, ymin);
// moving with mouse cursor in the midpoint
for(pe = movingElements.first(); pe != 0; pe = movingElements.next())
if(pe->Type & isLabel) {
pe->cx += xmin; pe->x1 += xmin;
pe->cy += ymin; pe->y1 += ymin;
}
else
pe->setCenter(xmin, ymin, true);
return true;
}
// -----------------------------------------------------------
void MouseActions::editLabel(Schematic *Doc, WireLabel *pl)
{
LabelDialog *Dia = new LabelDialog(pl, Doc);
int Result = Dia->exec();
if(Result == 0) return;
QString Name = Dia->NodeName->text();
QString Value = Dia->InitValue->text();
delete Dia;
if(Name.isEmpty() && Value.isEmpty()) { // if nothing entered, delete label
pl->pOwner->Label = 0; // delete name of wire
delete pl;
}
else {
/* Name.replace(' ', '_'); // label must not contain spaces
while(Name.at(0) == '_') Name.remove(0,1); // must not start with '_'
if(Name.isEmpty()) return;
if(Name == pl->Name) return;*/
if(Result == 1) return; // nothing changed
int old_x2 = pl->x2;
pl->setName(Name); // set new name
pl->initValue = Value;
if(pl->cx > (pl->x1+(pl->x2>>1)))
pl->x1 -= pl->x2 - old_x2; // don't change position due to text width
}
Doc->sizeOfAll(Doc->UsedX1, Doc->UsedY1, Doc->UsedX2, Doc->UsedY2);
Doc->viewport()->update();
drawn = false;
Doc->setChanged(true, true);
}
// -----------------------------------------------------------
// Reinserts all elements (moved by the user) back into the schematic.
void MouseActions::endElementMoving(Schematic *Doc, Q3PtrList<Element> *movElements)
{
Element *pe;
for(pe = movElements->first(); pe!=0; pe = movElements->next()) {
// pe->isSelected = false; // deselect first (maybe afterwards pe == NULL)
switch(pe->Type) { // FIXME: use casts.
case isWire:
if(pe->x1 == pe->x2)
if(pe->y1 == pe->y2) {
// Delete wires with zero length, but preserve label.
if(((Wire*)pe)->Label) {
Doc->insertNodeLabel((WireLabel*)((Wire*)pe)->Label);
((Wire*)pe)->Label = 0;
}
delete (Wire*)pe;
break;
}
Doc->insertWire((Wire*)pe);
break;
case isDiagram:
Doc->Diagrams->append((Diagram*)pe);
break;
case isPainting:
Doc->Paintings->append((Painting*)pe);
break;
case isComponent:
case isAnalogComponent:
case isDigitalComponent:
Doc->insertRawComponent((Component*)pe, false);
break;
case isMovingLabel:
case isHMovingLabel:
case isVMovingLabel:
Doc->insertNodeLabel((WireLabel*)pe);
break;
case isMarker:
assert(dynamic_cast<Marker*>(pe));
break;
}
}
movElements->clear();
if((MAx3 != 0) || (MAy3 != 0)) // moved or put at the same place ?
Doc->setChanged(true, true);
// enlarge viewarea if components lie outside the view
Doc->sizeOfAll(Doc->UsedX1, Doc->UsedY1, Doc->UsedX2, Doc->UsedY2);
Doc->enlargeView(Doc->UsedX1, Doc->UsedY1, Doc->UsedX2, Doc->UsedY2);
Doc->viewport()->update();
drawn = false;
}
// -----------------------------------------------------------
// Moves elements in "movElements" by x/y
void MouseActions::moveElements(Q3PtrList<Element> *movElements, int x, int y)
{
Wire *pw;
Element *pe;
for(pe = movElements->first(); pe != 0; pe = movElements->next()) {
if(pe->Type == isWire) {
pw = (Wire*)pe; // connected wires are not moved completely
if(((uintptr_t)pw->Port1) > 3) {
pw->x1 += x; pw->y1 += y;
if(pw->Label) { pw->Label->cx += x; pw->Label->cy += y; }
}
else { if((uintptr_t)(pw->Port1) & 1) { pw->x1 += x; }
if((uintptr_t)(pw->Port1) & 2) { pw->y1 += y; } }
if(((uintptr_t)pw->Port2) > 3) { pw->x2 += x; pw->y2 += y; }
else { if((uintptr_t)(pw->Port2) & 1) pw->x2 += x;
if((uintptr_t)(pw->Port2) & 2) pw->y2 += y; }
if(pw->Label) { // root of node label must lie on wire
if(pw->Label->cx < pw->x1) pw->Label->cx = pw->x1;
if(pw->Label->cy < pw->y1) pw->Label->cy = pw->y1;
if(pw->Label->cx > pw->x2) pw->Label->cx = pw->x2;
if(pw->Label->cy > pw->y2) pw->Label->cy = pw->y2;
}
}
else pe->setCenter(x, y, true);
}
}
// ***********************************************************************
// ********** **********
// ********** Functions for serving mouse moving **********
// ********** **********
// ***********************************************************************
void MouseActions::MMoveElement(Schematic *Doc, QMouseEvent *Event)
{
if(selElem == 0) return;
// qDebug() << "MMoveElement got selElem";
int x = Event->pos().x();
int y = Event->pos().y();
int fx = DOC_X_POS(x);
int fy = DOC_Y_POS(y);
int gx = fx;
int gy = fy;
Doc->setOnGrid(gx, gy);
//QPainter painter(Doc->viewport());
setPainter(Doc);
if(selElem->Type == isPainting) {
Doc->PostPaintEvent (_NotRop, 0,0,0,0);
x -= Doc->contentsX();
y -= Doc->contentsY();
((Painting*)selElem)->MouseMoving(Doc, x, y, gx, gy,
Doc, x, y, drawn);
drawn = true;
Doc->viewport()->update();
return;
} // of "if(isPainting)"
// ********** it is a component or diagram
if(drawn) selElem->paintScheme(Doc); // erase old scheme
drawn = true;
// Component *comp = (Component*)selElem;
//qDebug() << "desc" << comp->Description << "gx" << gx << "gy" << gy;
selElem->setCenter(gx, gy);
selElem->paintScheme(Doc); // paint scheme at new position
Doc->viewport()->update();
}
/**
* @brief draws wire aiming cross on Document view
* @param Doc - pointer to Schematics object
* @param fx - document x-coordinate of center
* @param fy - document x-coordinate of center
*/
static void paintAim(Schematic *Doc, int fx,int fy){
//let we reserve couple of points at the edges of lines for some aesthetics,
//and visual check that our calculations has fit the widget window.
const int ldelta = 2;
//left and upper edges of our lines
int lx0 = DOC_X_POS(Doc->contentsX()+ldelta);
int ly0 = DOC_Y_POS(Doc->contentsY()+ldelta);
//right and bottom edges
int lx1 = DOC_X_POS(Doc->contentsX()+Doc->viewport()->width()-1-ldelta);
int ly1 = DOC_Y_POS(Doc->contentsY()+Doc->viewport()->height()-1-ldelta);
//post line paint events
Doc->PostPaintEvent (_Line, lx0, fy, lx1, fy);
Doc->PostPaintEvent (_Line, fx, ly0, fx, ly1);
}
//paint ghost line - horizontal
static void paintGhostLineH(Schematic *Doc, int fx,int fy, int fxx){
Doc->PostPaintEvent (_Line, fx, fy-1, fxx, fy-1);
Doc->PostPaintEvent (_Line, fx, fy+1, fxx, fy+1);
}
//paint ghost line - vertical
static void paintGhostLineV(Schematic *Doc, int fx, int fy, int fyy){
Doc->PostPaintEvent (_Line, fx-1, fy, fx-1, fyy);
Doc->PostPaintEvent (_Line, fx+1, fy, fx+1, fyy);
}
// -----------------------------------------------------------
/**
* @brief MouseActions::MMoveWire2 Paint wire as it is being drawn with mouse.
* @param Doc
* @param Event
*/
void MouseActions::MMoveWire2(Schematic *Doc, QMouseEvent *Event)
{
MAx2 = DOC_X_POS(Event->pos().x());
MAy2 = DOC_Y_POS(Event->pos().y());
Doc->setOnGrid(MAx2, MAy2);
paintAim(Doc,MAx2,MAy2); //let we paint aim cross
//because cross slightly masks a wire, let we make wire thicker
//better to make it by increasing of pen, but here we cannot access
//pen
if(MAx1 == 0) {
paintGhostLineV(Doc,MAx3,MAy3,MAy2);
paintGhostLineH(Doc,MAx3,MAy2,MAx2);
}
else {
paintGhostLineH(Doc,MAx3,MAy3,MAx2);
paintGhostLineV(Doc,MAx2,MAy3,MAy2);
}
QucsMain->MouseDoubleClickAction = &MouseActions::MDoubleClickWire2;
Doc->viewport()->update();
}
/**
* @brief MouseActions::MMoveWire1 Paint hair cross for "insert wire" mode
* @param Doc
* @param Event
*/
void MouseActions::MMoveWire1(Schematic *Doc, QMouseEvent *Event)
{
MAx3 = DOC_X_POS(Event->pos().x());
MAy3 = DOC_Y_POS(Event->pos().y());
Doc->setOnGrid(MAx3, MAy3);
paintAim(Doc,MAx3,MAy3);
MAx2 = DOC_X_POS(Doc->contentsX()+Doc->viewport()->width()-1-2);
MAx2 = DOC_Y_POS(Doc->contentsY()+Doc->viewport()->height()-1-2);
Doc->viewport()->update();
}
/**
* @brief MouseActions::MMoveSelect Paints a rectangle for select area.
* @param Doc
* @param Event
*/
void MouseActions::MMoveSelect(Schematic *Doc, QMouseEvent *Event)
{
//qDebug() << "MMoveSelect " << "select area";
MAx2 = DOC_X_POS(Event->pos().x()) - MAx1;
MAy2 = DOC_Y_POS(Event->pos().y()) - MAy1;
if(isMoveEqual) { // x and y size must be equal ?
if(abs(MAx2) > abs(MAy2)) {
if(MAx2<0) MAx2 = -abs(MAy2); else MAx2 = abs(MAy2);
}
else { if(MAy2<0) MAy2 = -abs(MAx2); else MAy2 = abs(MAx2); }
}
Doc->PostPaintEvent (_Rect, MAx1, MAy1, MAx2, MAy2);
}
// -----------------------------------------------------------
void MouseActions::MMoveResizePainting(Schematic *Doc, QMouseEvent *Event)
{
setPainter(Doc);
MAx1 = DOC_X_POS(Event->pos().x());
MAy1 = DOC_Y_POS(Event->pos().y());
Doc->setOnGrid(MAx1, MAy1);
((Painting*)focusElement)->MouseResizeMoving(MAx1, MAy1, Doc);
}
// -----------------------------------------------------------
// Moves components by keeping the mouse button pressed.
void MouseActions::MMoveMoving(Schematic *Doc, QMouseEvent *Event)
{
setPainter(Doc);
MAx2 = DOC_X_POS(Event->pos().x());
MAy2 = DOC_Y_POS(Event->pos().y());
Doc->setOnGrid(MAx2, MAy2);
MAx3 = MAx1 = MAx2 - MAx1;
MAy3 = MAy1 = MAy2 - MAy1;
movingElements.clear();
Doc->copySelectedElements(&movingElements);
Doc->viewport()->repaint();
Wire *pw;
// Changes the position of all moving elements by dx/dy
for(Element *pe=movingElements.first(); pe!=0; pe=movingElements.next()) {
if(pe->Type == isWire) {
pw = (Wire*)pe; // connecting wires are not moved completely
if(((uintptr_t)pw->Port1) > 3) { pw->x1 += MAx1; pw->y1 += MAy1; }
else { if((uintptr_t)(pw->Port1) & 1) { pw->x1 += MAx1; }
if((uintptr_t)(pw->Port1) & 2) { pw->y1 += MAy1; } }
if(((uintptr_t)pw->Port2) > 3) { pw->x2 += MAx1; pw->y2 += MAy1; }
else { if((uintptr_t)(pw->Port2) & 1) pw->x2 += MAx1;
if((uintptr_t)(pw->Port2) & 2) pw->y2 += MAy1; }
if(pw->Label) { // root of node label must lie on wire
if(pw->Label->cx < pw->x1) pw->Label->cx = pw->x1;
if(pw->Label->cy < pw->y1) pw->Label->cy = pw->y1;
if(pw->Label->cx > pw->x2) pw->Label->cx = pw->x2;
if(pw->Label->cy > pw->y2) pw->Label->cy = pw->y2;
}
}
else pe->setCenter(MAx1, MAy1, true);
pe->paintScheme(Doc);
}
drawn = true;
MAx1 = MAx2;
MAy1 = MAy2;
QucsMain->MouseMoveAction = &MouseActions::MMoveMoving2;
QucsMain->MouseReleaseAction = &MouseActions::MReleaseMoving;
}
// -----------------------------------------------------------
// Moves components by keeping the mouse button pressed.
void MouseActions::MMoveMoving2(Schematic *Doc, QMouseEvent *Event)
{
setPainter(Doc);
MAx2 = DOC_X_POS(Event->pos().x());
MAy2 = DOC_Y_POS(Event->pos().y());
Element *pe;
if(drawn) // erase old scheme
for(pe = movingElements.first(); pe != 0; pe = movingElements.next())
pe->paintScheme(Doc);
// if(pe->Type == isWire) if(((Wire*)pe)->Label)
// if(!((Wire*)pe)->Label->isSelected)
// ((Wire*)pe)->Label->paintScheme(&painter);
drawn = true;
if((Event->state() & Qt::ControlModifier) == 0)
Doc->setOnGrid(MAx2, MAy2); // use grid only if CTRL key not pressed
MAx1 = MAx2 - MAx1;
MAy1 = MAy2 - MAy1;
MAx3 += MAx1; MAy3 += MAy1; // keep track of the complete movement
moveElements(&movingElements, MAx1, MAy1); // moves elements by MAx1/MAy1
// paint afterwards to avoid conflict between wire and label painting
for(pe = movingElements.first(); pe != 0; pe = movingElements.next())
pe->paintScheme(Doc);
// if(pe->Type == isWire) if(((Wire*)pe)->Label)
// if(!((Wire*)pe)->Label->isSelected)
// ((Wire*)pe)->Label->paintScheme(&painter);
MAx1 = MAx2;
MAy1 = MAy2;
}
/**
* @brief MouseActions::MMovePaste Moves components after paste from clipboard.
* @param Doc
* @param Event
*/
void MouseActions::MMovePaste(Schematic *Doc, QMouseEvent *Event)
{
MAx1 = DOC_X_POS(Event->pos().x());
MAy1 = DOC_Y_POS(Event->pos().y());
moveElements(Doc,MAx1,MAy1);
paintElementsScheme(Doc);
drawn = true;
QucsMain->MouseMoveAction = &MouseActions::MMoveMoving2;
QucsMain->MouseReleaseAction = &MouseActions::MReleasePaste;
}
// -----------------------------------------------------------
// Moves scroll bar of diagram (e.g. tabular) according the mouse cursor.
void MouseActions::MMoveScrollBar(Schematic *Doc, QMouseEvent *Event)
{
TabDiagram *d = (TabDiagram*)focusElement;
int x = DOC_X_POS(Event->pos().x());
int y = DOC_Y_POS(Event->pos().y());
if(d->scrollTo(MAx2, x - MAx1, y - MAy1)) {
Doc->setChanged(true, true, 'm'); // 'm' = only the first time
// FIXME #warning QPainter p(Doc->viewport());
// FIXME #warning ViewPainter Painter;
// FIXME #warning Painter.init(&p, Doc->Scale, -Doc->ViewX1, -Doc->ViewY1,
// FIXME #warning Doc->contentsX(), Doc->contentsY());
// FIXME #warning Painter.fillRect(d->cx-d->x1, d->cy-d->y2, d->x2+d->x1, d->y2+d->y1,
// FIXME #warning QucsSettings.BGColor);
// FIXME #warning d->paint(&Painter);
}
}
/**
* @brief MouseActions::MMoveDelete
* Paints a cross under the mouse cursor to show the delete mode.
* @param Doc Schematic document
* @param Event
*/
void MouseActions::MMoveDelete(Schematic *Doc, QMouseEvent *Event)
{
MAx3 = DOC_X_POS(Event->pos().x());
MAy3 = DOC_Y_POS(Event->pos().y());
// cannot draw on the viewport, it is displaced by the size of dock and toolbar
Doc->PostPaintEvent (_Line, MAx3-15, MAy3-15, MAx3+15, MAy3+15,0,0,false);
Doc->PostPaintEvent (_Line, MAx3-15, MAy3+15, MAx3+15, MAy3-15,0,0,false);
}
/**
* @brief MouseActions::MMoveLabel Paints a label above the mouse cursor for "set wire label".
* @param Doc
* @param Event
*/
void MouseActions::MMoveLabel(Schematic *Doc, QMouseEvent *Event)
{
MAx3 = DOC_X_POS(Event->pos().x());
MAy3 = DOC_Y_POS(Event->pos().y());
// paint marker
Doc->PostPaintEvent (_Line, MAx3, MAy3, MAx3+10, MAy3-10);
Doc->PostPaintEvent (_Line, MAx3+10, MAy3-10, MAx3+20, MAy3-10);
Doc->PostPaintEvent (_Line, MAx3+10, MAy3-10, MAx3+10, MAy3-17);
// paint A
Doc->PostPaintEvent (_Line, MAx3+12, MAy3-12, MAx3+15, MAy3-23);
Doc->PostPaintEvent (_Line, MAx3+14, MAy3-17, MAx3+17, MAy3-17);
Doc->PostPaintEvent (_Line, MAx3+19, MAy3-12, MAx3+16, MAy3-23);
}
/**
* @brief MouseActions::MMoveMarker Paints a triangle above the mouse for "set marker on graph"
* @param Doc
* @param Event
*/
void MouseActions::MMoveMarker(Schematic *Doc, QMouseEvent *Event)
{
MAx3 = DOC_X_POS(Event->pos().x());
MAy3 = DOC_Y_POS(Event->pos().y());
Doc->PostPaintEvent (_Line, MAx3, MAy3-2, MAx3-8, MAy3-10);
Doc->PostPaintEvent (_Line, MAx3+1, MAy3-3, MAx3+8, MAy3-10);
Doc->PostPaintEvent (_Line, MAx3-7, MAy3-10, MAx3+7, MAy3-10);
}
/**
* @brief MouseActions::MMoveMirrorX Paints rounded "mirror about y axis" mouse cursor
* @param Doc
* @param Event
*/
void MouseActions::MMoveMirrorY(Schematic *Doc, QMouseEvent *Event)
{
MAx3 = DOC_X_POS(Event->pos().x());
MAy3 = DOC_Y_POS(Event->pos().y());
Doc->PostPaintEvent (_Line, MAx3-11, MAy3-4, MAx3-9, MAy3-9);
Doc->PostPaintEvent (_Line, MAx3-11, MAy3-3, MAx3-6, MAy3-3);
Doc->PostPaintEvent (_Line, MAx3+11, MAy3-4, MAx3+9, MAy3-9);
Doc->PostPaintEvent (_Line, MAx3+11, MAy3-3, MAx3+6, MAy3-3);
Doc->PostPaintEvent (_Arc, MAx3-10, MAy3-8, 21, 10, 16*20, 16*140,false);
}
/**
* @brief MouseActions::MMoveMirrorX Paints rounded "mirror about x axis" mouse cursor
* @param Doc
* @param Event
*/
void MouseActions::MMoveMirrorX(Schematic *Doc, QMouseEvent *Event)
{
MAx3 = DOC_X_POS(Event->pos().x());
MAy3 = DOC_Y_POS(Event->pos().y());
Doc->PostPaintEvent (_Line, MAx3-4, MAy3-11, MAx3-9, MAy3-9);
Doc->PostPaintEvent (_Line, MAx3-3, MAy3-11, MAx3-3, MAy3-6);
Doc->PostPaintEvent (_Line, MAx3-4, MAy3+11, MAx3-9, MAy3+9);
Doc->PostPaintEvent (_Line, MAx3-3, MAy3+11, MAx3-3, MAy3+6);
Doc->PostPaintEvent (_Arc, MAx3-8, MAy3-10, 10, 21, 16*110, 16*140,false);
}
/**
* @brief MouseActions::MMoveMirrorX Paints "rotate" mouse cursor
* @param Doc
* @param Event
*/
void MouseActions::MMoveRotate(Schematic *Doc, QMouseEvent *Event)
{
MAx3 = DOC_X_POS(Event->pos().x());
MAy3 = DOC_Y_POS(Event->pos().y());
Doc->PostPaintEvent (_Line, MAx3-6, MAy3+8, MAx3-6, MAy3+1);
Doc->PostPaintEvent (_Line, MAx3-7, MAy3+8, MAx3-12, MAy3+8);
Doc->PostPaintEvent (_Arc, MAx3-10, MAy3-10, 21, 21, -16*20, 16*240,false);
}
/**
* @brief MouseActions::MMoveActivate Paints a crossed box mouse cursor to "(de)activate" components.
* @param Doc
* @param Event
*/
void MouseActions::MMoveActivate(Schematic *Doc, QMouseEvent *Event)
{
MAx3 = DOC_X_POS(Event->pos().x());
MAy3 = DOC_Y_POS(Event->pos().y());
Doc->PostPaintEvent (_Rect, MAx3, MAy3-9, 14, 10);
Doc->PostPaintEvent (_Line, MAx3, MAy3-9, MAx3+13, MAy3);
Doc->PostPaintEvent (_Line, MAx3, MAy3, MAx3+13, MAy3-9);
}
/**
* @brief MouseActions::MMoveOnGrid Paints a grid beside the mouse cursor, put "on grid" mode.
* @param Doc
* @param Event
*/
void MouseActions::MMoveOnGrid(Schematic *Doc, QMouseEvent *Event)
{
MAx3 = DOC_X_POS(Event->pos().x());
MAy3 = DOC_Y_POS(Event->pos().y());
Doc->PostPaintEvent (_Line, MAx3+10, MAy3+ 3, MAx3+25, MAy3+3);
Doc->PostPaintEvent (_Line, MAx3+10, MAy3+ 7, MAx3+25, MAy3+7);
Doc->PostPaintEvent (_Line, MAx3+10, MAy3+11, MAx3+25, MAy3+11);
Doc->PostPaintEvent (_Line, MAx3+13, MAy3, MAx3+13, MAy3+15);
Doc->PostPaintEvent (_Line, MAx3+17, MAy3, MAx3+17, MAy3+15);
Doc->PostPaintEvent (_Line, MAx3+21, MAy3, MAx3+21, MAy3+15);
}
/**
* @brief MouseActions::MMoveMoveTextB Paints mouse symbol for "move component text" mode.
* @param Doc
* @param Event
*/
void MouseActions::MMoveMoveTextB(Schematic *Doc, QMouseEvent *Event)
{
MAx3 = DOC_X_POS(Event->pos().x());
MAy3 = DOC_Y_POS(Event->pos().y());
Doc->PostPaintEvent (_Line, MAx3+14, MAy3 , MAx3+16, MAy3);
Doc->PostPaintEvent (_Line, MAx3+23, MAy3 , MAx3+25, MAy3);
Doc->PostPaintEvent (_Line, MAx3+13, MAy3 , MAx3+13, MAy3+ 3);
Doc->PostPaintEvent (_Line, MAx3+13, MAy3+ 7, MAx3+13, MAy3+10);
Doc->PostPaintEvent (_Line, MAx3+14, MAy3+10, MAx3+16, MAy3+10);
Doc->PostPaintEvent (_Line, MAx3+23, MAy3+10, MAx3+25, MAy3+10);
Doc->PostPaintEvent (_Line, MAx3+26, MAy3 , MAx3+26, MAy3+ 3);
Doc->PostPaintEvent (_Line, MAx3+26, MAy3+ 7, MAx3+26, MAy3+10);
}
/**
* @brief MouseActions::MMoveMoveText Paint rectangle around component text being mouse moved
* @param Doc
* @param Event
*/
void MouseActions::MMoveMoveText(Schematic *Doc, QMouseEvent *Event)
{
int newX = DOC_X_POS(Event->pos().x());
int newY = DOC_Y_POS(Event->pos().y());
MAx1 += newX - MAx3;
MAy1 += newY - MAy3;
MAx3 = newX;
MAy3 = newY;
Doc->PostPaintEvent (_Rect, MAx1, MAy1, MAx2, MAy2);
}
/**
* @brief MouseActions::MMoveZoomIn Paints symbol beside the mouse to show the "Zoom in" modus.
* @param Doc
* @param Event
*/
void MouseActions::MMoveZoomIn(Schematic *Doc, QMouseEvent *Event)
{
MAx3 = DOC_X_POS(Event->pos().x());
MAy3 = DOC_Y_POS(Event->pos().y());
Doc->PostPaintEvent (_Line, MAx3+14, MAy3 , MAx3+22, MAy3);
Doc->PostPaintEvent (_Line, MAx3+18, MAy3-4 , MAx3+18, MAy3+4);
Doc->PostPaintEvent (_Ellipse, MAx3+12, MAy3-6, 13, 13,0,0,false);
Doc->viewport()->update();
}
// ************************************************************************
// ********** **********
// ********** Functions for serving mouse button clicking **********
// ********** **********
// ************************************************************************
// Is called from several MousePress functions to show right button menu.
void MouseActions::rightPressMenu(Schematic *Doc, QMouseEvent *Event, float fX, float fY)
{
MAx1 = int(fX);
MAy1 = int(fY);
focusElement = Doc->selectElement(fX, fY, false);
if(focusElement) // remove special function (4 least significant bits)
focusElement->Type &= isSpecialMask;
// define menu
ComponentMenu->clear();
while(true) {
if(focusElement) {
focusElement->isSelected = true;
ComponentMenu->insertItem(
QObject::tr("Edit Properties"), QucsMain, SLOT(slotEditElement()));
if((focusElement->Type & isComponent) == 0) break;
}
else {
/// \todo "exchange like this"
//ComponentMenu->addAction(QucsMain->symEdit);
//to QucsMain->symEdit->addTo(ComponentMenu);
// see http://qt-project.org/doc/qt-4.8/qaction-qt3.html#addTo
QucsMain->symEdit->addTo(ComponentMenu);
QucsMain->fileSettings->addTo(ComponentMenu);
}
if(!QucsMain->moveText->isOn())
QucsMain->moveText->addTo(ComponentMenu);
break;
}
while(true) {
if(focusElement)
if(focusElement->Type == isGraph) break;
if(!QucsMain->onGrid->isOn())
QucsMain->onGrid->addTo(ComponentMenu);
QucsMain->editCopy->addTo(ComponentMenu);
if(!QucsMain->editPaste->isOn())
QucsMain->editPaste->addTo(ComponentMenu);
break;
}
while (true) {
if (focusElement) {
if (focusElement->Type == isDiagram) {
ComponentMenu->insertItem(QObject::tr("Export as image"), QucsMain,
SLOT(slotSaveDiagramToGraphicsFile()));
}
if (focusElement->Type & isComponent) {
Component *pc = (Component *)focusElement;
if (pc->Model == "EDD") {
ComponentMenu->insertItem(QObject::tr("Create XSPICE IFS"), QucsMain,
SLOT(slotEDDtoIFS()));
ComponentMenu->insertItem(QObject::tr("Create XSPICE MOD"), QucsMain,
SLOT(slotEDDtoMOD()));
}
}
}
break;
}
if(!QucsMain->editDelete->isOn())
QucsMain->editDelete->addTo(ComponentMenu);
if(focusElement) if(focusElement->Type == isMarker) {
ComponentMenu->insertSeparator();
QString s = QObject::tr("power matching");
if( ((Marker*)focusElement)->pGraph->Var == "Sopt" )
s = QObject::tr("noise matching");
ComponentMenu->insertItem(s, QucsMain, SLOT(slotPowerMatching()));
if( ((Marker*)focusElement)->pGraph->Var.left(2) == "S[" )
ComponentMenu->insertItem(QObject::tr("2-port matching"), QucsMain,
SLOT(slot2PortMatching()));
}
do {
if(focusElement) {
if(focusElement->Type == isDiagram) break;
if(focusElement->Type == isGraph) {
QucsMain->graph2csv->addTo(ComponentMenu);
break;
}
}
ComponentMenu->insertSeparator();
if(focusElement) if(focusElement->Type & isComponent)
if(!QucsMain->editActivate->isOn())
QucsMain->editActivate->addTo(ComponentMenu);
if(!QucsMain->editRotate->isOn())
QucsMain->editRotate->addTo(ComponentMenu);
if(!QucsMain->editMirror->isOn())
QucsMain->editMirror->addTo(ComponentMenu);
if(!QucsMain->editMirrorY->isOn())
QucsMain->editMirrorY->addTo(ComponentMenu);
// right-click menu to go into hierarchy
if(focusElement) {
if(focusElement->Type & isComponent)
if(((Component*)focusElement)->Model == "Sub")
if(!QucsMain->intoH->isOn())
QucsMain->intoH->addTo(ComponentMenu);
}
// right-click menu to pop out of hierarchy
if(!focusElement)
if(!QucsMain->popH->isOn())
QucsMain->popH->addTo(ComponentMenu);
} while(false);
*focusMEvent = *Event; // remember event for "edit component" action
ComponentMenu->popup(Event->globalPos());
Doc->viewport()->update();
drawn = false;
}
// -----------------------------------------------------------
void MouseActions::MPressLabel(Schematic *Doc, QMouseEvent*, float fX, float fY)
{
int x = int(fX), y = int(fY);
Wire *pw = 0;
WireLabel *pl=0;
Node *pn = Doc->selectedNode(x, y);
if(!pn) {
pw = Doc->selectedWire(x, y);
if(!pw) return;
}
QString Name, Value;
Element *pe=0;
// is wire line already labeled ?
if(pw) pe = Doc->getWireLabel(pw->Port1);
else pe = Doc->getWireLabel(pn);
if(pe) {
if(pe->Type & isComponent) {
QMessageBox::information(0, QObject::tr("Info"),
QObject::tr("The ground potential cannot be labeled!"));
return;
}
pl = ((Conductor*)pe)->Label;
}
LabelDialog *Dia = new LabelDialog(pl, Doc);
if(Dia->exec() == 0) return;
Name = Dia->NodeName->text();
Value = Dia->InitValue->text();
delete Dia;
if(Name.isEmpty() && Value.isEmpty() ) { // if nothing entered, delete name
if(pe) {
if(((Conductor*)pe)->Label)
delete ((Conductor*)pe)->Label; // delete old name
((Conductor*)pe)->Label = 0;
}
else {
if(pw) pw->setName("", ""); // delete name of wire
else pn->setName("", "");
}
}
else {
/* Name.replace(' ', '_'); // label must not contain spaces
while(Name.at(0) == '_') Name.remove(0,1); // must not start with '_'
if(Name.isEmpty()) return;
*/
if(pe) {
if(((Conductor*)pe)->Label)
delete ((Conductor*)pe)->Label; // delete old name
((Conductor*)pe)->Label = 0;
}
int xl = x+30;
int yl = y-30;
Doc->setOnGrid(xl, yl);
// set new name
if(pw) pw->setName(Name, Value, x-pw->x1 + y-pw->y1, xl, yl);
else pn->setName(Name, Value, xl, yl);
}
Doc->sizeOfAll(Doc->UsedX1, Doc->UsedY1, Doc->UsedX2, Doc->UsedY2);
Doc->viewport()->update();
drawn = false;
Doc->setChanged(true, true);
}
// -----------------------------------------------------------
void MouseActions::MPressSelect(Schematic *Doc, QMouseEvent *Event, float fX, float fY)
{
bool Ctrl;
if(Event->state() & Qt::ControlModifier) Ctrl = true;
else Ctrl = false;
int No=0;
MAx1 = int(fX);
MAy1 = int(fY);
focusElement = Doc->selectElement(fX, fY, Ctrl, &No);
isMoveEqual = false; // moving not neccessarily square
if(focusElement)
// print define value in hex, see element.h
qDebug() << "MPressSelect: focusElement->Type" << QString("0x%1").arg(focusElement->Type, 0, 16);
else
qDebug() << "MPressSelect";
if(focusElement)
switch(focusElement->Type)
{
case isPaintingResize: // resize painting ?
focusElement->Type = isPainting;
QucsMain->MouseReleaseAction = &MouseActions::MReleaseResizePainting;
QucsMain->MouseMoveAction = &MouseActions::MMoveResizePainting;
QucsMain->MousePressAction = 0;
QucsMain->MouseDoubleClickAction = 0;
Doc->grabKeyboard(); // no keyboard inputs during move actions
// Update matching wire label highlighting
Doc->highlightWireLabels ();
return;
case isDiagramResize: // resize diagram ?
if(((Diagram*)focusElement)->Name.left(4) != "Rect")
if(((Diagram*)focusElement)->Name.at(0) != 'T')
if(((Diagram*)focusElement)->Name != "Curve")
isMoveEqual = true; // diagram must be square
focusElement->Type = isDiagram;
MAx1 = focusElement->cx;
MAx2 = focusElement->x2;
if(((Diagram*)focusElement)->State & 1) {
MAx1 += MAx2;
MAx2 *= -1;
}
MAy1 = focusElement->cy;
MAy2 = -focusElement->y2;
if(((Diagram*)focusElement)->State & 2) {
MAy1 += MAy2;
MAy2 *= -1;
}
QucsMain->MouseReleaseAction = &MouseActions::MReleaseResizeDiagram;