]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - client/proxguiqt.h
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2009 Michael Gernoth <michael at gernoth.net>
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
7 //-----------------------------------------------------------------------------
9 //-----------------------------------------------------------------------------
11 #include <QApplication>
12 #include <QPushButton>
18 #include "ui/ui_overlays.h"
20 * @brief The actual plot, black area were we paint the graph
22 class Plot
: public QWidget
26 double GraphPixelsPerPoint
;
29 void PlotGraph(int *buffer
, int len
, QRect r
,QPainter
* painter
, int graphNum
);
30 void plotGridLines(QPainter
* painter
,QRect r
);
32 int yCoordOf(int v
, QRect r
, int maxVal
);
33 int valueOf_yCoord(int y
, QRect r
, int maxVal
);
34 QColor
getColor(int graphNum
);
36 Plot(QWidget
*parent
= 0);
39 void paintEvent(QPaintEvent
*event
);
40 void closeEvent(QCloseEvent
*event
);
41 void mouseMoveEvent(QMouseEvent
*event
);
42 void mousePressEvent(QMouseEvent
*event
) { mouseMoveEvent(event
); }
43 void keyPressEvent(QKeyEvent
*event
);
49 * The window with plot and controls
51 class ProxWidget
: public QWidget
56 Ui::Form
*opsController
;
59 ProxWidget(QWidget
*parent
= 0, ProxGuiQT
*master
= NULL
);
65 void applyOperation();
66 void stickOperation();
67 void vchange_autocorr(int v
);
68 void vchange_dthr_up(int v
);
69 void vchange_dthr_down(int v
);
70 //void tabChange(int currentTab);
73 class ProxGuiOverlayController: public UI_form
77 void setupOverlayUi(QWidget *Form)
79 //Let auto-generated class setup the UI
80 Ui_Form::setupUi(Form);
81 //Then connect the signals
83 QObject::connect(UI_form::pushButton_apply, SIGNAL(clicked()), label_4, SLOT(clear()));
84 QObject::connect(pushButton_sticky, SIGNAL(clicked()), label_4, SLOT(clear()));
85 QObject::connect(horizontalSlider_window, SIGNAL(valueChanged(int)), label_4, SLOT(setNum(int)));
86 QObject::connect(horizontalSlider_window, SIGNAL(valueChanged(int)), label_5, SLOT(setNum(int)));
87 QObject::connect(horizontalSlider_dirthr_up, SIGNAL(valueChanged(int)), label_6, SLOT(setNum(int)));
88 QObject::connect(horizontalSlider_dirthr_down, SIGNAL(valueChanged(int)), label_7, SLOT(setNum(int)));
89 QMetaObject::connectSlotsByName(Form);
94 class ProxGuiQT
: public QObject
99 QApplication
*plotapp
;
100 ProxWidget
*plotwidget
;
101 //ProxGuiOverlayController *overlayController;
104 void (*main_func
)(void);
107 ProxGuiQT(int argc
, char **argv
);
109 void ShowGraphWindow(void);
110 void RepaintGraphWindow(void);
111 void HideGraphWindow(void);
115 void _ShowGraphWindow(void);
116 void _RepaintGraphWindow(void);
117 void _HideGraphWindow(void);
120 void ShowGraphWindowSignal(void);
121 void RepaintGraphWindowSignal(void);
122 void HideGraphWindowSignal(void);