X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/a47ded5b54e19b779bc4260466dcd093c2695d63..c6e5c7ea46eae6180eee3eb592a291257a0400b1:/client/proxguiqt.cpp diff --git a/client/proxguiqt.cpp b/client/proxguiqt.cpp index b269d721..a690e2e8 100644 --- a/client/proxguiqt.cpp +++ b/client/proxguiqt.cpp @@ -9,6 +9,7 @@ //----------------------------------------------------------------------------- #include +#include #include #include #include @@ -278,8 +279,10 @@ void ProxWidget::paintEvent(QPaintEvent *event) 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); + QBrush b_stt( QBrush( QT_ORANGE_TS )); + b_stt.setStyle(Qt::Dense1Pattern); + painter.setPen(Qt::NoPen); + painter.fillRect(r_stt, b_stt); } // Mark Clock pulse @@ -293,8 +296,11 @@ void ProxWidget::paintEvent(QPaintEvent *event) 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); + + QBrush b_clk( QBrush( QT_RED_TS )); + b_clk.setStyle(Qt::Dense1Pattern); + painter.setPen(Qt::NoPen); + painter.fillRect(r_clock, b_clk); } }