+// solid colors
+#define QT_ORANGE QColor(255, 153, 0)
+#define QT_WHITE QColor(255, 255, 255)
+#define QT_YELLOW QColor(255, 255, 0)
+#define QT_MAGENTA QColor(255, 0, 255)
+#define QT_LIGHTBLUE QColor(0, 0, 205)
+#define QT_LIGHTGREEN QColor(100, 255, 100)
+#define QT_GRAY QColor(100,100,100)
+#define QT_BLACK QColor(0,0,0)
+// transparent colors
+#define QT_ORANGE_TS QColor(255, 153, 0, 96)
+#define QT_RED_TS QColor(255, 0, 0, 64)
+#define QT_BLACK_TS QColor(0,0,0,0)
+
void ProxWidget::paintEvent(QPaintEvent *event)
{
QPainter painter(this);
QPainterPath penPath, whitePath, greyPath, lightgreyPath, cursorAPath, cursorBPath, cursorCPath, cursorDPath;
QRect r;
void ProxWidget::paintEvent(QPaintEvent *event)
{
QPainter painter(this);
QPainterPath penPath, whitePath, greyPath, lightgreyPath, cursorAPath, cursorBPath, cursorCPath, cursorDPath;
QRect r;
- if (CursorAPos > GraphTraceLen)
- CursorAPos= 0;
-
- if(CursorBPos > GraphTraceLen)
- CursorBPos= 0;
- if(CursorCPos > GraphTraceLen)
- CursorCPos= 0;
- if(CursorDPos > GraphTraceLen)
- CursorDPos= 0;
+ if (CursorAPos > GraphTraceLen) CursorAPos = 0;
+ if (CursorBPos > GraphTraceLen) CursorBPos = 0;
+ if (CursorCPos > GraphTraceLen) CursorCPos = 0;
+ if (CursorDPos > GraphTraceLen) CursorDPos = 0;
- // plot X and Y grid lines
- int i;
- if ((PlotGridX > 0) && ((PlotGridX * GraphPixelsPerPoint) > 1)) {
- for(i = 40 + (GridOffset * GraphPixelsPerPoint); i < r.right(); i += (int)(PlotGridX * GraphPixelsPerPoint)) {
- //SelectObject(hdc, GreyPenLite);
- //MoveToEx(hdc, r.left + i, r.top, NULL);
- //LineTo(hdc, r.left + i, r.bottom);
- lightgreyPath.moveTo(r.left()+i,r.top());
- lightgreyPath.lineTo(r.left()+i,r.bottom());
- painter.drawPath(lightgreyPath);
- }
- }
- if ((PlotGridY > 0) && ((PlotGridY * GraphPixelsPerPoint) > 1)){
- for(i = 0; i < ((r.top() + r.bottom())>>1); i += (int)(PlotGridY * GraphPixelsPerPoint)) {
- lightgreyPath.moveTo(r.left() + 40,zeroHeight + i);
- lightgreyPath.lineTo(r.right(),zeroHeight + i);
- painter.drawPath(lightgreyPath);
- lightgreyPath.moveTo(r.left() + 40,zeroHeight - i);
- lightgreyPath.lineTo(r.right(),zeroHeight - i);
- painter.drawPath(lightgreyPath);
- }
- }
+ // plot X and Y grid lines
+ int i;
+ if ((PlotGridX > 0) && ((PlotGridX * GraphPixelsPerPoint) > 1)) {
+ for(i = 40 + (GridOffset * GraphPixelsPerPoint); i < r.right(); i += (int)(PlotGridX * GraphPixelsPerPoint)) {
+ //SelectObject(hdc, GreyPenLite);
+ //MoveToEx(hdc, r.left + i, r.top, NULL);
+ //LineTo(hdc, r.left + i, r.bottom);
+ lightgreyPath.moveTo(r.left()+i,r.top());
+ lightgreyPath.lineTo(r.left()+i,r.bottom());
+ painter.drawPath(lightgreyPath);
+ }
+ }
+ if ((PlotGridY > 0) && ((PlotGridY * GraphPixelsPerPoint) > 1)){
+ for(i = 0; i < ((r.top() + r.bottom())>>1); i += (int)(PlotGridY * GraphPixelsPerPoint)) {
+ lightgreyPath.moveTo(r.left() + 40,zeroHeight + i);
+ lightgreyPath.lineTo(r.right(),zeroHeight + i);
+ painter.drawPath(lightgreyPath);
+ lightgreyPath.moveTo(r.left() + 40,zeroHeight - i);
+ lightgreyPath.lineTo(r.right(),zeroHeight - i);
+ painter.drawPath(lightgreyPath);
+ }
+ }
if(GraphPixelsPerPoint > 10) {
QRect f(QPoint(x - 3, y - 3),QPoint(x + 3, y + 3));
painter.fillRect(f, brush);
if(GraphPixelsPerPoint > 10) {
QRect f(QPoint(x - 3, y - 3),QPoint(x + 3, y + 3));
painter.fillRect(f, brush);
cursorPath = &cursorDPath;
cursorPath->moveTo(x, r.top());
cursorPath->lineTo(x, r.bottom());
cursorPath = &cursorDPath;
cursorPath->moveTo(x, r.top());
cursorPath->lineTo(x, r.bottom());
+
+ // Mark STT block in signal
+ if ( CursorCPos > 0 ){
+ int foo = 40 + (int)((CursorCPos - GraphStart) * GraphPixelsPerPoint);
+ int bar = 40 + ((CursorDPos - GraphStart) * GraphPixelsPerPoint);
+ QRect r_stt(foo, r.top(), bar-foo, r.bottom() );
+ painter.fillRect(r_stt, QBrush( QT_ORANGE_TS ));
+ painter.drawRect(r_stt);
+ }
+
+ // Mark Clock pulse
+ //extern int PlotClock, PlockClockStartIndex;
+ if ( PlotClock > 0){
+ for(int i = PlockClockStartIndex; ; i += PlotClock * 2) {
+ if(i >= GraphTraceLen ) break;
+ if ((CursorCPos > 0) && (i >= CursorCPos)) break;
+
+ int foo = 40 + (int)((i - GraphStart) * GraphPixelsPerPoint);
+ int bar = 40 + ((i + PlotClock - GraphStart) * GraphPixelsPerPoint);
+ QRect r_clock(foo, r.top(), bar-foo, r.bottom() );
+ painter.fillRect(r_clock, QBrush( QT_RED_TS ));
+ painter.drawRect(r_clock);
+ }
+ }
+
- painter.setPen(QColor(255, 255, 255));
- painter.drawPath(whitePath);
- painter.setPen(pen);
- painter.drawPath(penPath);
- painter.setPen(QColor(255, 255, 0));
- painter.drawPath(cursorAPath);
- painter.setPen(QColor(255, 0, 255));
- painter.drawPath(cursorBPath);
- painter.setPen(QColor(255, 153, 0)); //orange
- painter.drawPath(cursorCPath);
- painter.setPen(QColor(0, 0, 205)); //light blue
- painter.drawPath(cursorDPath);
+ painter.setPen( QT_WHITE ); painter.drawPath(whitePath);
+ painter.setPen(pen); painter.drawPath(penPath);
+ painter.setPen( QT_YELLOW ); painter.drawPath(cursorAPath);
+ painter.setPen( QT_MAGENTA ); painter.drawPath(cursorBPath);
+ //painter.setPen( QT_ORANGE ); painter.drawPath(cursorCPath);
+ //painter.setPen( QT_LIGHTBLUE ); painter.drawPath(cursorDPath);
- QPalette palette(QColor(0,0,0,0));
- palette.setColor(QPalette::WindowText, QColor(255,255,255));
- palette.setColor(QPalette::Text, QColor(255,255,255));
- palette.setColor(QPalette::Button, QColor(100, 100, 100));
+ QPalette palette( QT_BLACK_TS );
+ palette.setColor(QPalette::WindowText, QT_WHITE );
+ palette.setColor(QPalette::Text, QT_WHITE );
+ palette.setColor(QPalette::Button, QT_GRAY );