]> git.zerfleddert.de Git - proxmark3-svn/blame - client/proxguiqt.cpp
Paradox clone functionality implemented (#747)
[proxmark3-svn] / client / proxguiqt.cpp
CommitLineData
a553f267 1//-----------------------------------------------------------------------------
212ef3a0 2// Copyright (C) 2009 Michael Gernoth <michael at gernoth.net>
3//
a553f267 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//-----------------------------------------------------------------------------
3472ebe5 10#include "proxguiqt.h"
a553f267 11
999d57c2 12#include <stdbool.h>
6658905f 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>
c86cc308 23#include <stdio.h>
9fe4507c 24#include <QSlider>
b8fdac9e 25#include <QHBoxLayout>
26#include <string.h>
6658905f 27#include "proxgui.h"
b8fdac9e 28#include <QtGui>
b742ab8c
A
29
30extern "C" {
31#include "util_darwin.h"
32}
b8fdac9e 33//#include <ctime>
34
999d57c2 35bool g_useOverlays = false;
36int g_absVMax = 0;
7ddb9900 37int startMax;
18856d88 38int PageWidth;
3fd7fce4 39int unlockStart = 0;
999d57c2 40
6658905f 41void ProxGuiQT::ShowGraphWindow(void)
42{
43 emit ShowGraphWindowSignal();
44}
45
46void ProxGuiQT::RepaintGraphWindow(void)
47{
48 emit RepaintGraphWindowSignal();
49}
50
51void ProxGuiQT::HideGraphWindow(void)
52{
53 emit HideGraphWindowSignal();
54}
55
1a3c0064 56void ProxGuiQT::Exit(void)
57{
58 emit ExitSignal();
59}
60
6658905f 61void ProxGuiQT::_ShowGraphWindow(void)
62{
63 if(!plotapp)
64 return;
65
66 if (!plotwidget)
b742ab8c
A
67 {
68#if defined(__MACH__) && defined(__APPLE__)
69 makeFocusable();
70#endif
6658905f 71 plotwidget = new ProxWidget();
b742ab8c 72 }
6658905f 73
74 plotwidget->show();
75}
76
77void ProxGuiQT::_RepaintGraphWindow(void)
78{
79 if (!plotapp || !plotwidget)
80 return;
81
82 plotwidget->update();
83}
84
85void ProxGuiQT::_HideGraphWindow(void)
86{
87 if (!plotapp || !plotwidget)
88 return;
89
90 plotwidget->hide();
91}
92
1a3c0064 93void ProxGuiQT::_Exit(void) {
94 delete this;
95}
5acd195d 96
aa757f71
OM
97void 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
6658905f 108void 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()));
1a3c0064 115 connect(this, SIGNAL(ExitSignal()), this, SLOT(_Exit()));
6658905f 116
aa757f71
OM
117 //start proxmark thread after starting event loop
118 QTimer::singleShot(200, this, SLOT(_StartProxmarkThread()));
119
b742ab8c
A
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
6658905f 125 plotapp->exec();
126}
127
aa757f71
OM
128ProxGuiQT::ProxGuiQT(int argc, char **argv, WorkerThread *wthread) : plotapp(NULL), plotwidget(NULL),
129 argc(argc), argv(argv), proxmarkThread(wthread)
6658905f 130{
131}
132
133ProxGuiQT::~ProxGuiQT(void)
134{
1a3c0064 135 //if (plotwidget) {
136 //plotwidget->destroy(true,true);
137 // delete plotwidget;
138 // plotwidget = NULL;
139 //}
6658905f 140 if (plotapp) {
141 plotapp->quit();
5acd195d 142 // delete plotapp;
6658905f 143 plotapp = NULL;
144 }
145}
146
b8fdac9e 147//--------------------
148void ProxWidget::applyOperation()
6658905f 149{
1a3c0064 150 //printf("ApplyOperation()");
3fd7fce4 151 save_restoreGB(GRAPH_SAVE);
c4f51073 152 memcpy(GraphBuffer, s_Buff, sizeof(int) * GraphTraceLen);
b8fdac9e 153 RepaintGraphWindow();
b8fdac9e 154}
155void ProxWidget::stickOperation()
156{
3fd7fce4 157 save_restoreGB(GRAPH_RESTORE);
1a3c0064 158 //printf("stickOperation()");
b8fdac9e 159}
160void ProxWidget::vchange_autocorr(int v)
161{
c4f51073 162 int ans;
163 ans = AutoCorrelate(GraphBuffer, s_Buff, GraphTraceLen, v, true, false);
1a3c0064 164 if (g_debugMode) printf("vchange_autocorr(w:%d): %d\n", v, ans);
999d57c2 165 g_useOverlays = true;
c4f51073 166 RepaintGraphWindow();
167}
168void 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);
1a3c0064 173 if (g_debugMode) printf("vchange_askedge(w:%d)%d\n", v, ans);
999d57c2 174 g_useOverlays = true;
b8fdac9e 175 RepaintGraphWindow();
176}
177void ProxWidget::vchange_dthr_up(int v)
178{
179 int down = opsController->horizontalSlider_dirthr_down->value();
c4f51073 180 directionalThreshold(GraphBuffer, s_Buff, GraphTraceLen, v, down);
1a3c0064 181 //printf("vchange_dthr_up(%d)", v);
999d57c2 182 g_useOverlays = true;
b8fdac9e 183 RepaintGraphWindow();
b8fdac9e 184}
185void ProxWidget::vchange_dthr_down(int v)
186{
1a3c0064 187 //printf("vchange_dthr_down(%d)", v);
b8fdac9e 188 int up = opsController->horizontalSlider_dirthr_up->value();
189 directionalThreshold(GraphBuffer,s_Buff, GraphTraceLen, v, up);
999d57c2 190 g_useOverlays = true;
b8fdac9e 191 RepaintGraphWindow();
b8fdac9e 192}
193ProxWidget::ProxWidget(QWidget *parent, ProxGuiQT *master) : QWidget(parent)
194{
195 this->master = master;
196 resize(800,500);
197
351d6d17 198 // Setup the controller widget
1a3c0064 199 controlWidget = new QWidget();
b8fdac9e 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);
999d57c2 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);
b8fdac9e 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)));
c4f51073 218 QObject::connect(opsController->horizontalSlider_askedge, SIGNAL(valueChanged(int)), this, SLOT(vchange_askedge(int)));
b8fdac9e 219
b8fdac9e 220 // Set up the plot widget, which does the actual plotting
b8fdac9e 221 plot = new Plot(this);
b8fdac9e 222 QVBoxLayout *layout = new QVBoxLayout;
b8fdac9e 223 layout->addWidget(plot);
224 setLayout(layout);
351d6d17
A
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();
b8fdac9e 231}
232
1a3c0064 233// not 100% sure what i need in this block
234// feel free to fix - marshmellow...
235ProxWidget::~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}
254void ProxWidget::closeEvent(QCloseEvent *event)
255{
256 event->ignore();
257 this->hide();
999d57c2 258 g_useOverlays = false;
1a3c0064 259}
260void ProxWidget::hideEvent(QHideEvent *event) {
261 controlWidget->hide();
262 plot->hide();
263}
264void ProxWidget::showEvent(QShowEvent *event) {
265 controlWidget->show();
266 plot->show();
267}
b8fdac9e 268
269//----------- Plotting
270
271int Plot::xCoordOf(int i, QRect r )
272{
273 return r.left() + (int)((i - GraphStart)*GraphPixelsPerPoint);
274}
275
276int Plot::yCoordOf(int v, QRect r, int maxVal)
277{
278 int z = (r.bottom() - r.top())/2;
e8924be8 279 if ( maxVal == 0 ) maxVal++;
b8fdac9e 280 return -(z * v) / maxVal + z;
281}
282
283int 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}
288static const QColor GREEN = QColor(100,255,100);
289static const QColor RED = QColor(255,100,100);
290static const QColor BLUE = QColor(100,100,255);
291static const QColor GRAY = QColor(240,240,240);
292
293QColor 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
6658905f 300 }
b8fdac9e 301}
6658905f 302
999d57c2 303void 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
b8fdac9e 329void 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;
1a3c0064 345 if (BitStart > (int)len) return;
b8fdac9e 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;
1a3c0064 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++ ) {
b8fdac9e 360 x = xCoordOf(DemodStart+delta_x+ii, plotRect);
361 v = buffer[i]*200-100;
362
363 y = yCoordOf( v, plotRect, absVMax);
0bf5872f 364
b8fdac9e 365 penPath.lineTo(x, y);
6658905f 366
b8fdac9e 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 }
6658905f 380
b8fdac9e 381 //Graph annotations
382 painter->drawPath(penPath);
383}
6658905f 384
b8fdac9e 385void 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;
999d57c2 390 int vMin = INT_MAX, vMax = INT_MIN, vMean = 0, v = 0, i = 0;
b8fdac9e 391 int x = xCoordOf(GraphStart, plotRect);
999d57c2 392 int y = yCoordOf(buffer[GraphStart],plotRect,g_absVMax);
b8fdac9e 393 penPath.moveTo(x, y);
999d57c2 394 for(i = GraphStart; i < len && xCoordOf(i, plotRect) < plotRect.right(); i++) {
6658905f 395
b8fdac9e 396 x = xCoordOf(i, plotRect);
397 v = buffer[i];
6658905f 398
999d57c2 399 y = yCoordOf( v, plotRect, g_absVMax);
6658905f 400
b8fdac9e 401 penPath.lineTo(x, y);
6658905f 402
403 if(GraphPixelsPerPoint > 10) {
404 QRect f(QPoint(x - 3, y - 3),QPoint(x + 3, y + 3));
b8fdac9e 405 painter->fillRect(f, QColor(100, 255, 100));
6658905f 406 }
999d57c2 407 //catch stats
408 if(v < vMin) vMin = v;
409 if(v > vMax) vMax = v;
410 vMean += v;
b8fdac9e 411 }
999d57c2 412 vMean /= (i - GraphStart);
6658905f 413
b8fdac9e 414 painter->setPen(getColor(graphNum));
6658905f 415
b8fdac9e 416 //Draw y-axis
417 int xo = 5+(graphNum*40);
418 painter->drawLine(xo, plotRect.top(),xo, plotRect.bottom());
6658905f 419
999d57c2 420 int vMarkers = (g_absVMax - (g_absVMax % 10)) / 5;
b8fdac9e 421 int minYDist = 40; //Minimum pixel-distance between markers
6658905f 422
b8fdac9e 423 char yLbl[20];
6658905f 424
b8fdac9e 425 int n = 0;
426 int lasty0 = 65535;
6658905f 427
999d57c2 428 for(v = vMarkers; yCoordOf(v,plotRect,g_absVMax) > plotRect.top() && n < 20; v+= vMarkers ,n++)
b8fdac9e 429 {
999d57c2 430 int y0 = yCoordOf(v,plotRect,g_absVMax);
431 int y1 = yCoordOf(-v,plotRect,g_absVMax);
b8fdac9e 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]",
999d57c2 450 vMax, vMin, vMean, i, len, buffer[CursorAPos], buffer[CursorBPos]);
b8fdac9e 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
458void Plot::plotGridLines(QPainter* painter,QRect r)
459{
3fd7fce4 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
b8fdac9e 471 int i;
472 int grid_delta_x = (int) (PlotGridX * GraphPixelsPerPoint);
999d57c2 473 int grid_delta_y = PlotGridY;
b8fdac9e 474 if ((PlotGridX > 0) && ((PlotGridX * GraphPixelsPerPoint) > 1)) {
3fd7fce4 475 for(i = (offset * GraphPixelsPerPoint); i < r.right(); i += grid_delta_x) {
b8fdac9e 476 painter->drawLine(r.left()+i, r.top(), r.left()+i, r.bottom());
477 }
999d57c2 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) );
6658905f 483 }
484 }
b8fdac9e 485}
486
487#define HEIGHT_INFO 60
488#define WIDTH_AXES 80
489
490void Plot::paintEvent(QPaintEvent *event)
491{
999d57c2 492
b8fdac9e 493 QPainter painter(this);
b8fdac9e 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 }
6658905f 502
b8fdac9e 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
999d57c2 520 //init graph variables
521 setMaxAndStart(GraphBuffer,GraphTraceLen,plotRect);
522
b8fdac9e 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
999d57c2 531 PlotGraph(GraphBuffer, GraphTraceLen,plotRect,infoRect,&painter,0);
b8fdac9e 532 if (showDemod && DemodBufferLen > 8) {
533 PlotDemod(DemodBuffer, DemodBufferLen,plotRect,infoRect,&painter,2,g_DemodStartIdx);
6658905f 534 }
999d57c2 535 if (g_useOverlays) {
536 //init graph variables
537 setMaxAndStart(s_Buff,GraphTraceLen,plotRect);
538 PlotGraph(s_Buff, GraphTraceLen,plotRect,infoRect,&painter,1);
539 }
b8fdac9e 540 // End graph drawing
6658905f 541
b8fdac9e 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 }
6658905f 563
b8fdac9e 564 //Draw annotations
346ad5fb 565 char str[200];
b8fdac9e 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);
6658905f 569 painter.setPen(QColor(255, 255, 255));
b8fdac9e 570 painter.drawText(20, infoRect.bottom() - 3, str);
571
6658905f 572}
573
b8fdac9e 574Plot::Plot(QWidget *parent) : QWidget(parent), GraphStart(0), GraphPixelsPerPoint(1)
6658905f 575{
9fe4507c 576 //Need to set this, otherwise we don't receive keypress events
b8fdac9e 577 setFocusPolicy( Qt::StrongFocus);
9484ff3d 578 resize(600, 300);
6658905f 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);
cee48e2b 586 CursorAPos = 0;
587 CursorBPos = 0;
b8fdac9e 588
589 setWindowTitle(tr("Sliders"));
e8924be8 590
591 master = parent;
6658905f 592}
593
b8fdac9e 594void Plot::closeEvent(QCloseEvent *event)
6658905f 595{
596 event->ignore();
597 this->hide();
999d57c2 598 g_useOverlays = false;
6658905f 599}
600
b8fdac9e 601void Plot::mouseMoveEvent(QMouseEvent *event)
6658905f 602{
603 int x = event->x();
b8fdac9e 604 x -= WIDTH_AXES;
6658905f 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
b8fdac9e 617void Plot::keyPressEvent(QKeyEvent *event)
6658905f 618{
18856d88 619 int offset;
18856d88 620
621 if(event->modifiers() & Qt::ShiftModifier) {
622 if (PlotGridX)
623 offset= PageWidth - (PageWidth % PlotGridX);
624 else
625 offset= PageWidth;
ff2e9c1c 626 } else
627 if(event->modifiers() & Qt::ControlModifier)
628 offset= 1;
629 else
630 offset= (int)(20 / GraphPixelsPerPoint);
18856d88 631
6658905f 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) {
18856d88 647 GraphStart += offset;
6658905f 648 } else {
3bc2349d 649 GraphStart++;
6658905f 650 }
651 break;
652
653 case Qt::Key_Left:
654 if(GraphPixelsPerPoint < 20) {
18856d88 655 GraphStart -= offset;
6658905f 656 } else {
3bc2349d 657 GraphStart--;
6658905f 658 }
7ddb9900 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;
3fd7fce4 668 }
7ddb9900 669 break;
670
671 case Qt::Key_H:
672 puts("Plot Window Keystrokes:\n");
ff2e9c1c 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");
7ddb9900 688 puts("");
689 puts("Use client window 'data help' for more plot commands\n");
690 break;
691
692 case Qt::Key_L:
3fd7fce4 693 GridLocked = !GridLocked;
694 if (GridLocked)
695 GridOffset += (GraphStart - unlockStart);
696 else
697 unlockStart = GraphStart;
7ddb9900 698 break;
699
700 case Qt::Key_Q:
e8924be8 701 master->hide();
6658905f 702 break;
703
704 default:
705 QWidget::keyPressEvent(event);
706 return;
707 break;
708 }
709
710 this->update();
711}
Impressum, Datenschutz