]> git.zerfleddert.de Git - proxmark3-svn/blob - client/proxguiqt.cpp
fix rare bug in tlv.c (#788)
[proxmark3-svn] / client / proxguiqt.cpp
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2009 Michael Gernoth <michael at gernoth.net>
3 //
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
6 // the license.
7 //-----------------------------------------------------------------------------
8 // GUI (QT)
9 //-----------------------------------------------------------------------------
10 #include "proxguiqt.h"
11
12 #include <stdbool.h>
13 #include <iostream>
14 #include <QPainterPath>
15 #include <QBrush>
16 #include <QPen>
17 #include <QTimer>
18 #include <QCloseEvent>
19 #include <QMouseEvent>
20 #include <QKeyEvent>
21 #include <math.h>
22 #include <limits.h>
23 #include <stdio.h>
24 #include <QSlider>
25 #include <QHBoxLayout>
26 #include <string.h>
27 #include "proxgui.h"
28 #include <QtGui>
29
30 extern "C" {
31 #include "util_darwin.h"
32 }
33 //#include <ctime>
34
35 bool g_useOverlays = false;
36 int g_absVMax = 0;
37 int startMax;
38 int PageWidth;
39 int unlockStart = 0;
40
41 void ProxGuiQT::ShowGraphWindow(void)
42 {
43 emit ShowGraphWindowSignal();
44 }
45
46 void ProxGuiQT::RepaintGraphWindow(void)
47 {
48 emit RepaintGraphWindowSignal();
49 }
50
51 void ProxGuiQT::HideGraphWindow(void)
52 {
53 emit HideGraphWindowSignal();
54 }
55
56 void ProxGuiQT::Exit(void)
57 {
58 emit ExitSignal();
59 }
60
61 void ProxGuiQT::_ShowGraphWindow(void)
62 {
63 if(!plotapp)
64 return;
65
66 if (!plotwidget)
67 {
68 #if defined(__MACH__) && defined(__APPLE__)
69 makeFocusable();
70 #endif
71 plotwidget = new ProxWidget();
72 }
73
74 plotwidget->show();
75 }
76
77 void ProxGuiQT::_RepaintGraphWindow(void)
78 {
79 if (!plotapp || !plotwidget)
80 return;
81
82 plotwidget->update();
83 }
84
85 void ProxGuiQT::_HideGraphWindow(void)
86 {
87 if (!plotapp || !plotwidget)
88 return;
89
90 plotwidget->hide();
91 }
92
93 void ProxGuiQT::_Exit(void) {
94 delete this;
95 }
96
97 void ProxGuiQT::_StartProxmarkThread(void) {
98 if (!proxmarkThread)
99 return;
100
101 // if thread finished delete self and delete application
102 QObject::connect(proxmarkThread, SIGNAL(finished()), proxmarkThread, SLOT(deleteLater()));
103 QObject::connect(proxmarkThread, SIGNAL(finished()), this, SLOT(_Exit()));
104 // start proxmark thread
105 proxmarkThread->start();
106 }
107
108 void ProxGuiQT::MainLoop()
109 {
110 plotapp = new QApplication(argc, argv);
111
112 connect(this, SIGNAL(ShowGraphWindowSignal()), this, SLOT(_ShowGraphWindow()));
113 connect(this, SIGNAL(RepaintGraphWindowSignal()), this, SLOT(_RepaintGraphWindow()));
114 connect(this, SIGNAL(HideGraphWindowSignal()), this, SLOT(_HideGraphWindow()));
115 connect(this, SIGNAL(ExitSignal()), this, SLOT(_Exit()));
116
117 //start proxmark thread after starting event loop
118 QTimer::singleShot(200, this, SLOT(_StartProxmarkThread()));
119
120 #if defined(__MACH__) && defined(__APPLE__)
121 //Prevent the terminal from loosing focus during launch by making the client unfocusable
122 makeUnfocusable();
123 #endif
124
125 plotapp->exec();
126 }
127
128 ProxGuiQT::ProxGuiQT(int argc, char **argv, WorkerThread *wthread) : plotapp(NULL), plotwidget(NULL),
129 argc(argc), argv(argv), proxmarkThread(wthread)
130 {
131 }
132
133 ProxGuiQT::~ProxGuiQT(void)
134 {
135 //if (plotwidget) {
136 //plotwidget->destroy(true,true);
137 // delete plotwidget;
138 // plotwidget = NULL;
139 //}
140 if (plotapp) {
141 plotapp->quit();
142 // delete plotapp;
143 plotapp = NULL;
144 }
145 }
146
147 //--------------------
148 void ProxWidget::applyOperation()
149 {
150 //printf("ApplyOperation()");
151 save_restoreGB(GRAPH_SAVE);
152 memcpy(GraphBuffer, s_Buff, sizeof(int) * GraphTraceLen);
153 RepaintGraphWindow();
154 }
155 void ProxWidget::stickOperation()
156 {
157 save_restoreGB(GRAPH_RESTORE);
158 //printf("stickOperation()");
159 }
160 void ProxWidget::vchange_autocorr(int v)
161 {
162 int ans;
163 ans = AutoCorrelate(GraphBuffer, s_Buff, GraphTraceLen, v, true, false);
164 if (g_debugMode) printf("vchange_autocorr(w:%d): %d\n", v, ans);
165 g_useOverlays = true;
166 RepaintGraphWindow();
167 }
168 void ProxWidget::vchange_askedge(int v)
169 {
170 int ans;
171 //extern int AskEdgeDetect(const int *in, int *out, int len, int threshold);
172 ans = AskEdgeDetect(GraphBuffer, s_Buff, GraphTraceLen, v);
173 if (g_debugMode) printf("vchange_askedge(w:%d)%d\n", v, ans);
174 g_useOverlays = true;
175 RepaintGraphWindow();
176 }
177 void ProxWidget::vchange_dthr_up(int v)
178 {
179 int down = opsController->horizontalSlider_dirthr_down->value();
180 directionalThreshold(GraphBuffer, s_Buff, GraphTraceLen, v, down);
181 //printf("vchange_dthr_up(%d)", v);
182 g_useOverlays = true;
183 RepaintGraphWindow();
184 }
185 void ProxWidget::vchange_dthr_down(int v)
186 {
187 //printf("vchange_dthr_down(%d)", v);
188 int up = opsController->horizontalSlider_dirthr_up->value();
189 directionalThreshold(GraphBuffer,s_Buff, GraphTraceLen, v, up);
190 g_useOverlays = true;
191 RepaintGraphWindow();
192 }
193 ProxWidget::ProxWidget(QWidget *parent, ProxGuiQT *master) : QWidget(parent)
194 {
195 this->master = master;
196 resize(800,500);
197
198 // Setup the controller widget
199 controlWidget = new QWidget();
200 opsController = new Ui::Form();
201 opsController->setupUi(controlWidget);
202 //Due to quirks in QT Designer, we need to fiddle a bit
203 opsController->horizontalSlider_dirthr_down->setMinimum(-128);
204 opsController->horizontalSlider_dirthr_down->setMaximum(0);
205 opsController->horizontalSlider_dirthr_down->setValue(-20);
206 opsController->horizontalSlider_dirthr_up->setMinimum(-40);
207 opsController->horizontalSlider_dirthr_up->setMaximum(128);
208 opsController->horizontalSlider_dirthr_up->setValue(20);
209 opsController->horizontalSlider_askedge->setValue(25);
210 opsController->horizontalSlider_window->setValue(4000);
211
212
213 QObject::connect(opsController->pushButton_apply, SIGNAL(clicked()), this, SLOT(applyOperation()));
214 QObject::connect(opsController->pushButton_sticky, SIGNAL(clicked()), this, SLOT(stickOperation()));
215 QObject::connect(opsController->horizontalSlider_window, SIGNAL(valueChanged(int)), this, SLOT(vchange_autocorr(int)));
216 QObject::connect(opsController->horizontalSlider_dirthr_up, SIGNAL(valueChanged(int)), this, SLOT(vchange_dthr_up(int)));
217 QObject::connect(opsController->horizontalSlider_dirthr_down, SIGNAL(valueChanged(int)), this, SLOT(vchange_dthr_down(int)));
218 QObject::connect(opsController->horizontalSlider_askedge, SIGNAL(valueChanged(int)), this, SLOT(vchange_askedge(int)));
219
220 // Set up the plot widget, which does the actual plotting
221 plot = new Plot(this);
222 QVBoxLayout *layout = new QVBoxLayout;
223 layout->addWidget(plot);
224 setLayout(layout);
225 show(); // places the window on the screen.
226
227 // Move controller widget below plot
228 controlWidget->move(x(),y()+frameSize().height());
229 controlWidget->resize(size().width(), controlWidget->size().height());
230 controlWidget->show();
231 }
232
233 // not 100% sure what i need in this block
234 // feel free to fix - marshmellow...
235 ProxWidget::~ProxWidget(void)
236 {
237 if (controlWidget) {
238 controlWidget->close();
239 delete controlWidget;
240 controlWidget = NULL;
241 }
242
243 if (opsController) {
244 delete opsController;
245 opsController = NULL;
246 }
247
248 if (plot) {
249 plot->close();
250 delete plot;
251 plot = NULL;
252 }
253 }
254 void ProxWidget::closeEvent(QCloseEvent *event)
255 {
256 event->ignore();
257 this->hide();
258 g_useOverlays = false;
259 }
260 void ProxWidget::hideEvent(QHideEvent *event) {
261 controlWidget->hide();
262 plot->hide();
263 }
264 void ProxWidget::showEvent(QShowEvent *event) {
265 controlWidget->show();
266 plot->show();
267 }
268
269 //----------- Plotting
270
271 int Plot::xCoordOf(int i, QRect r )
272 {
273 return r.left() + (int)((i - GraphStart)*GraphPixelsPerPoint);
274 }
275
276 int Plot::yCoordOf(int v, QRect r, int maxVal)
277 {
278 int z = (r.bottom() - r.top())/2;
279 if ( maxVal == 0 ) maxVal++;
280 return -(z * v) / maxVal + z;
281 }
282
283 int Plot::valueOf_yCoord(int y, QRect r, int maxVal)
284 {
285 int z = (r.bottom() - r.top())/2;
286 return (y-z) * maxVal / z;
287 }
288 static const QColor GREEN = QColor(100,255,100);
289 static const QColor RED = QColor(255,100,100);
290 static const QColor BLUE = QColor(100,100,255);
291 static const QColor GRAY = QColor(240,240,240);
292
293 QColor Plot::getColor(int graphNum)
294 {
295 switch (graphNum) {
296 case 0: return GREEN; //Green
297 case 1: return RED; //Red
298 case 2: return BLUE; //Blue
299 default: return GRAY; //Gray
300 }
301 }
302
303 void Plot::setMaxAndStart(int *buffer, int len, QRect plotRect)
304 {
305 if (len == 0) return;
306 startMax = (len - (int)((plotRect.right() - plotRect.left() - 40) / GraphPixelsPerPoint));
307 if(startMax < 0) {
308 startMax = 0;
309 }
310 if(GraphStart > startMax) {
311 GraphStart = startMax;
312 }
313 if (GraphStart > len) return;
314 int vMin = INT_MAX, vMax = INT_MIN, v = 0;
315 int sample_index = GraphStart ;
316 for( ; sample_index < len && xCoordOf(sample_index,plotRect) < plotRect.right() ; sample_index++) {
317
318 v = buffer[sample_index];
319 if(v < vMin) vMin = v;
320 if(v > vMax) vMax = v;
321 }
322
323 g_absVMax = 0;
324 if(fabs( (double) vMin) > g_absVMax) g_absVMax = (int)fabs( (double) vMin);
325 if(fabs( (double) vMax) > g_absVMax) g_absVMax = (int)fabs( (double) vMax);
326 g_absVMax = (int)(g_absVMax*1.25 + 1);
327 }
328
329 void Plot::PlotDemod(uint8_t *buffer, size_t len, QRect plotRect, QRect annotationRect, QPainter *painter, int graphNum, int plotOffset)
330 {
331 if (len == 0 || PlotGridX <= 0) return;
332 //clock_t begin = clock();
333 QPainterPath penPath;
334
335 int grid_delta_x = PlotGridX;
336 int first_delta_x = grid_delta_x; //(plotOffset > 0) ? PlotGridX : (PlotGridX +);
337 if (GraphStart > plotOffset) first_delta_x -= (GraphStart-plotOffset);
338 int DemodStart = GraphStart;
339 if (plotOffset > GraphStart) DemodStart = plotOffset;
340
341 int BitStart = 0;
342 // round down
343 if (DemodStart-plotOffset > 0) BitStart = (int)(((DemodStart-plotOffset)+(PlotGridX-1))/PlotGridX)-1;
344 first_delta_x += BitStart * PlotGridX;
345 if (BitStart > (int)len) return;
346 int delta_x = 0;
347 int v = 0;
348 //printf("first_delta_x %i, grid_delta_x %i, DemodStart %i, BitStart %i\n",first_delta_x,grid_delta_x,DemodStart, BitStart);
349
350 painter->setPen(getColor(graphNum));
351 char str[5];
352 int absVMax = (int)(100*1.05+1);
353 int x = xCoordOf(DemodStart, plotRect);
354 int y = yCoordOf((buffer[BitStart]*200-100)*-1,plotRect,absVMax);
355 penPath.moveTo(x, y);
356 delta_x = 0;
357 int clk = first_delta_x;
358 for(int i = BitStart; i < (int)len && xCoordOf(delta_x+DemodStart, plotRect) < plotRect.right(); i++) {
359 for (int ii = 0; ii < (clk) && i < (int)len && xCoordOf(DemodStart+delta_x+ii, plotRect) < plotRect.right() ; ii++ ) {
360 x = xCoordOf(DemodStart+delta_x+ii, plotRect);
361 v = buffer[i]*200-100;
362
363 y = yCoordOf( v, plotRect, absVMax);
364
365 penPath.lineTo(x, y);
366
367 if(GraphPixelsPerPoint > 10) {
368 QRect f(QPoint(x - 3, y - 3),QPoint(x + 3, y + 3));
369 painter->fillRect(f, QColor(100, 255, 100));
370 }
371 if (ii == (int)clk/2) {
372 //print label
373 sprintf(str, "%u",buffer[i]);
374 painter->drawText(x-8, y + ((buffer[i] > 0) ? 18 : -6), str);
375 }
376 }
377 delta_x += clk;
378 clk = grid_delta_x;
379 }
380
381 //Graph annotations
382 painter->drawPath(penPath);
383 }
384
385 void Plot::PlotGraph(int *buffer, int len, QRect plotRect, QRect annotationRect, QPainter *painter, int graphNum)
386 {
387 if (len == 0) return;
388 //clock_t begin = clock();
389 QPainterPath penPath;
390 int vMin = INT_MAX, vMax = INT_MIN, vMean = 0, v = 0, i = 0;
391 int x = xCoordOf(GraphStart, plotRect);
392 int y = yCoordOf(buffer[GraphStart],plotRect,g_absVMax);
393 penPath.moveTo(x, y);
394 for(i = GraphStart; i < len && xCoordOf(i, plotRect) < plotRect.right(); i++) {
395
396 x = xCoordOf(i, plotRect);
397 v = buffer[i];
398
399 y = yCoordOf( v, plotRect, g_absVMax);
400
401 penPath.lineTo(x, y);
402
403 if(GraphPixelsPerPoint > 10) {
404 QRect f(QPoint(x - 3, y - 3),QPoint(x + 3, y + 3));
405 painter->fillRect(f, QColor(100, 255, 100));
406 }
407 //catch stats
408 if(v < vMin) vMin = v;
409 if(v > vMax) vMax = v;
410 vMean += v;
411 }
412 vMean /= (i - GraphStart);
413
414 painter->setPen(getColor(graphNum));
415
416 //Draw y-axis
417 int xo = 5+(graphNum*40);
418 painter->drawLine(xo, plotRect.top(),xo, plotRect.bottom());
419
420 int vMarkers = (g_absVMax - (g_absVMax % 10)) / 5;
421 int minYDist = 40; //Minimum pixel-distance between markers
422
423 char yLbl[20];
424
425 int n = 0;
426 int lasty0 = 65535;
427
428 for(v = vMarkers; yCoordOf(v,plotRect,g_absVMax) > plotRect.top() && n < 20; v+= vMarkers ,n++)
429 {
430 int y0 = yCoordOf(v,plotRect,g_absVMax);
431 int y1 = yCoordOf(-v,plotRect,g_absVMax);
432
433 if(lasty0 - y0 < minYDist) continue;
434
435 painter->drawLine(xo-5,y0, xo+5, y0);
436
437 sprintf(yLbl, "%d", v);
438 painter->drawText(xo+8,y0+7,yLbl);
439
440 painter->drawLine(xo-5, y1, xo+5, y1);
441 sprintf(yLbl, "%d",-v);
442 painter->drawText(xo+8, y1+5 , yLbl);
443 lasty0 = y0;
444 }
445
446 //Graph annotations
447 painter->drawPath(penPath);
448 char str[200];
449 sprintf(str, "max=%d min=%d mean=%d n=%d/%d CursorAVal=[%d] CursorBVal=[%d]",
450 vMax, vMin, vMean, i, len, buffer[CursorAPos], buffer[CursorBPos]);
451 painter->drawText(20, annotationRect.bottom() - 23 - 20 * graphNum, str);
452
453 //clock_t end = clock();
454 //double elapsed_secs = double(end - begin) / CLOCKS_PER_SEC;
455 //printf("Plot time %f\n", elapsed_secs);
456 }
457
458 void Plot::plotGridLines(QPainter* painter,QRect r)
459 {
460 // set GridOffset
461 if (PlotGridX <= 0) return;
462 int offset = GridOffset;
463 if (GridLocked && PlotGridX) {
464 offset = GridOffset + PlotGridX - (GraphStart % PlotGridX);
465 } else if (!GridLocked && GraphStart > 0 && PlotGridX) {
466 offset = PlotGridX-((GraphStart - offset) % PlotGridX) + GraphStart - unlockStart;
467 }
468 offset %= PlotGridX;
469 if (offset < 0) offset += PlotGridX;
470
471 int i;
472 int grid_delta_x = (int) (PlotGridX * GraphPixelsPerPoint);
473 int grid_delta_y = PlotGridY;
474 if ((PlotGridX > 0) && ((PlotGridX * GraphPixelsPerPoint) > 1)) {
475 for(i = (offset * GraphPixelsPerPoint); i < r.right(); i += grid_delta_x) {
476 painter->drawLine(r.left()+i, r.top(), r.left()+i, r.bottom());
477 }
478 }
479 if (PlotGridY > 0) {
480 for(i = 0; yCoordOf(i,r,g_absVMax) > r.top(); i += grid_delta_y) {
481 painter->drawLine( r.left(), yCoordOf(i,r,g_absVMax), r.right(), yCoordOf(i,r,g_absVMax) );
482 painter->drawLine( r.left(), yCoordOf(i*-1,r,g_absVMax), r.right(), yCoordOf(i*-1,r,g_absVMax) );
483 }
484 }
485 }
486
487 #define HEIGHT_INFO 60
488 #define WIDTH_AXES 80
489
490 void Plot::paintEvent(QPaintEvent *event)
491 {
492
493 QPainter painter(this);
494 QBrush brush(QColor(100, 255, 100));
495 QPen pen(QColor(100, 255, 100));
496
497 painter.setFont(QFont("Courier New", 10));
498
499 if(GraphStart < 0) {
500 GraphStart = 0;
501 }
502
503 if (CursorAPos > GraphTraceLen)
504 CursorAPos= 0;
505 if(CursorBPos > GraphTraceLen)
506 CursorBPos= 0;
507 if(CursorCPos > GraphTraceLen)
508 CursorCPos= 0;
509 if(CursorDPos > GraphTraceLen)
510 CursorDPos= 0;
511
512 QRect plotRect(WIDTH_AXES, 0, width()-WIDTH_AXES, height()-HEIGHT_INFO);
513 QRect infoRect(0, height()-HEIGHT_INFO, width(), HEIGHT_INFO);
514
515 //Grey background
516 painter.fillRect(rect(), QColor(60, 60, 60));
517 //Black foreground
518 painter.fillRect(plotRect, QColor(0, 0, 0));
519
520 //init graph variables
521 setMaxAndStart(GraphBuffer,GraphTraceLen,plotRect);
522
523 // center line
524 int zeroHeight = plotRect.top() + (plotRect.bottom() - plotRect.top()) / 2;
525 painter.setPen(QColor(100, 100, 100));
526 painter.drawLine(plotRect.left(), zeroHeight, plotRect.right(), zeroHeight);
527 // plot X and Y grid lines
528 plotGridLines(&painter, plotRect);
529
530 //Start painting graph
531 PlotGraph(GraphBuffer, GraphTraceLen,plotRect,infoRect,&painter,0);
532 if (showDemod && DemodBufferLen > 8) {
533 PlotDemod(DemodBuffer, DemodBufferLen,plotRect,infoRect,&painter,2,g_DemodStartIdx);
534 }
535 if (g_useOverlays) {
536 //init graph variables
537 setMaxAndStart(s_Buff,GraphTraceLen,plotRect);
538 PlotGraph(s_Buff, GraphTraceLen,plotRect,infoRect,&painter,1);
539 }
540 // End graph drawing
541
542 //Draw the cursors
543 if(CursorAPos > GraphStart && xCoordOf(CursorAPos, plotRect) < plotRect.right())
544 {
545 painter.setPen(QColor(255, 255, 0));
546 painter.drawLine(xCoordOf(CursorAPos, plotRect),plotRect.top(),xCoordOf(CursorAPos, plotRect),plotRect.bottom());
547 }
548 if(CursorBPos > GraphStart && xCoordOf(CursorBPos, plotRect) < plotRect.right())
549 {
550 painter.setPen(QColor(255, 0, 255));
551 painter.drawLine(xCoordOf(CursorBPos, plotRect),plotRect.top(),xCoordOf(CursorBPos, plotRect),plotRect.bottom());
552 }
553 if(CursorCPos > GraphStart && xCoordOf(CursorCPos, plotRect) < plotRect.right())
554 {
555 painter.setPen(QColor(255, 153, 0)); //orange
556 painter.drawLine(xCoordOf(CursorCPos, plotRect),plotRect.top(),xCoordOf(CursorCPos, plotRect),plotRect.bottom());
557 }
558 if(CursorDPos > GraphStart && xCoordOf(CursorDPos, plotRect) < plotRect.right())
559 {
560 painter.setPen(QColor(0, 0, 205)); //light blue
561 painter.drawLine(xCoordOf(CursorDPos, plotRect),plotRect.top(),xCoordOf(CursorDPos, plotRect),plotRect.bottom());
562 }
563
564 //Draw annotations
565 char str[200];
566 sprintf(str, "@%d dt=%d [%2.2f] zoom=%2.2f CursorAPos=%d CursorBPos=%d GridX=%d GridY=%d (%s) GridXoffset=%d",
567 GraphStart, CursorBPos - CursorAPos, (CursorBPos - CursorAPos)/CursorScaleFactor,
568 GraphPixelsPerPoint,CursorAPos,CursorBPos,PlotGridXdefault,PlotGridYdefault,GridLocked?"Locked":"Unlocked",GridOffset);
569 painter.setPen(QColor(255, 255, 255));
570 painter.drawText(20, infoRect.bottom() - 3, str);
571
572 }
573
574 Plot::Plot(QWidget *parent) : QWidget(parent), GraphStart(0), GraphPixelsPerPoint(1)
575 {
576 //Need to set this, otherwise we don't receive keypress events
577 setFocusPolicy( Qt::StrongFocus);
578 resize(600, 300);
579
580 QPalette palette(QColor(0,0,0,0));
581 palette.setColor(QPalette::WindowText, QColor(255,255,255));
582 palette.setColor(QPalette::Text, QColor(255,255,255));
583 palette.setColor(QPalette::Button, QColor(100, 100, 100));
584 setPalette(palette);
585 setAutoFillBackground(true);
586 CursorAPos = 0;
587 CursorBPos = 0;
588
589 setWindowTitle(tr("Sliders"));
590
591 master = parent;
592 }
593
594 void Plot::closeEvent(QCloseEvent *event)
595 {
596 event->ignore();
597 this->hide();
598 g_useOverlays = false;
599 }
600
601 void Plot::mouseMoveEvent(QMouseEvent *event)
602 {
603 int x = event->x();
604 x -= WIDTH_AXES;
605 x = (int)(x / GraphPixelsPerPoint);
606 x += GraphStart;
607 if((event->buttons() & Qt::LeftButton)) {
608 CursorAPos = x;
609 } else if (event->buttons() & Qt::RightButton) {
610 CursorBPos = x;
611 }
612
613
614 this->update();
615 }
616
617 void Plot::keyPressEvent(QKeyEvent *event)
618 {
619 int offset;
620
621 if(event->modifiers() & Qt::ShiftModifier) {
622 if (PlotGridX)
623 offset= PageWidth - (PageWidth % PlotGridX);
624 else
625 offset= PageWidth;
626 } else
627 if(event->modifiers() & Qt::ControlModifier)
628 offset= 1;
629 else
630 offset= (int)(20 / GraphPixelsPerPoint);
631
632 switch(event->key()) {
633 case Qt::Key_Down:
634 if(GraphPixelsPerPoint <= 50) {
635 GraphPixelsPerPoint *= 2;
636 }
637 break;
638
639 case Qt::Key_Up:
640 if(GraphPixelsPerPoint >= 0.02) {
641 GraphPixelsPerPoint /= 2;
642 }
643 break;
644
645 case Qt::Key_Right:
646 if(GraphPixelsPerPoint < 20) {
647 GraphStart += offset;
648 } else {
649 GraphStart++;
650 }
651 break;
652
653 case Qt::Key_Left:
654 if(GraphPixelsPerPoint < 20) {
655 GraphStart -= offset;
656 } else {
657 GraphStart--;
658 }
659 break;
660
661 case Qt::Key_G:
662 if(PlotGridX || PlotGridY) {
663 PlotGridX= 0;
664 PlotGridY= 0;
665 } else {
666 PlotGridX= PlotGridXdefault;
667 PlotGridY= PlotGridYdefault;
668 }
669 break;
670
671 case Qt::Key_H:
672 puts("Plot Window Keystrokes:\n");
673 puts(" Key Action\n");
674 puts(" DOWN Zoom in");
675 puts(" G Toggle grid display");
676 puts(" H Show help");
677 puts(" L Toggle lock grid relative to samples");
678 puts(" LEFT Move left");
679 puts(" <CTL>LEFT Move left 1 sample");
680 puts(" <SHIFT>LEFT Page left");
681 puts(" LEFT-MOUSE-CLICK Set yellow cursor");
682 puts(" Q Hide window");
683 puts(" RIGHT Move right");
684 puts(" <CTL>RIGHT Move right 1 sample");
685 puts(" <SHIFT>RIGHT Page right");
686 puts(" RIGHT-MOUSE-CLICK Set purple cursor");
687 puts(" UP Zoom out");
688 puts("");
689 puts("Use client window 'data help' for more plot commands\n");
690 break;
691
692 case Qt::Key_L:
693 GridLocked = !GridLocked;
694 if (GridLocked)
695 GridOffset += (GraphStart - unlockStart);
696 else
697 unlockStart = GraphStart;
698 break;
699
700 case Qt::Key_Q:
701 master->hide();
702 break;
703
704 default:
705 QWidget::keyPressEvent(event);
706 return;
707 break;
708 }
709
710 this->update();
711 }
Impressum, Datenschutz