1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869
|
//////////////////////////////////////////////////////////////////////
// plotter.cpp: implementation of the CPlotter class.
//
// This class creates and draws a combination spectral view using
// a 2D and waterfall display and manages mouse events within the plot area
//
// History:
// 2010-09-15 Initial creation MSW
// 2011-03-27 Initial release
// 2012-02-11 Fixed compiler warning
//////////////////////////////////////////////////////////////////////
//==========================================================================================
// + + + This Software is released under the "Simplified BSD License" + + +
//Copyright 2010 Moe Wheatley. All rights reserved.
//
//Redistribution and use in source and binary forms, with or without modification, are
//permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this list of
// conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
// of conditions and the following disclaimer in the documentation and/or other materials
// provided with the distribution.
//
//THIS SOFTWARE IS PROVIDED BY Moe Wheatley ``AS IS'' AND ANY EXPRESS OR IMPLIED
//WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
//FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Moe Wheatley OR
//CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
//CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
//SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
//ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
//NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
//ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
//The views and conclusions contained in the software and documentation are those of the
//authors and should not be interpreted as representing official policies, either expressed
//or implied, of Moe Wheatley.
//==========================================================================================
#include "gui/plotter.h"
#include <stdlib.h>
#include <QDebug>
#include <QToolTip>
#include "interface/perform.h"
//////////////////////////////////////////////////////////////////////
// Local defines
//////////////////////////////////////////////////////////////////////
#define MAX_SCREENSIZE 4096
#define CUR_CUT_DELTA 10 //cursor capture delta in pixels
#define OVERLOAD_DISPLAY_LIMIT 3
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CPlotter::CPlotter(QWidget *parent) :
QFrame(parent)
{
m_pSdrInterface = NULL;
setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
setFocusPolicy(Qt::StrongFocus);
setAttribute(Qt::WA_PaintOnScreen,false);
setAutoFillBackground(false);
setAttribute(Qt::WA_OpaquePaintEvent, false);
setAttribute(Qt::WA_NoSystemBackground, true);
setMouseTracking ( true );
//create a default waterfall color scheme
// *** Need to read from file ***
for( int i=0; i<256; i++)
{
if( (i<43) )
m_ColorTbl[i].setRgb( 0,0, 255*(i)/43);
if( (i>=43) && (i<87) )
m_ColorTbl[i].setRgb( 0, 255*(i-43)/43, 255 );
if( (i>=87) && (i<120) )
m_ColorTbl[i].setRgb( 0,255, 255-(255*(i-87)/32));
if( (i>=120) && (i<154) )
m_ColorTbl[i].setRgb( (255*(i-120)/33), 255, 0);
if( (i>=154) && (i<217) )
m_ColorTbl[i].setRgb( 255, 255 - (255*(i-154)/62), 0);
if( (i>=217) )
m_ColorTbl[i].setRgb( 255, 0, 128*(i-217)/38);
}
m_CenterFreq = 680000;
m_DemodCenterFreq = 610000;
m_DemodHiCutFreq = 5000;
m_DemodLowCutFreq = -5000;
m_FLowCmin = -10000;
m_FLowCmax = -100;
m_FHiCmin = 100;
m_FHiCmax = 10000;
m_symetric = true;
m_ClickResolution = 100;
m_FilterClickResolution = 100;
m_CursorCaptureDelta = CUR_CUT_DELTA;
m_Span = 50000;
m_MaxdB = 0;
m_MindB = -130;
m_dBStepSize = 10;
m_FreqUnits = 1000;
m_CursorCaptured = NONE;
m_Running = false;
m_ADOverloadOneShotCounter = 0;
m_ADOverLoad = false;
m_2DPixmap = QPixmap(0,0);
m_OverlayPixmap = QPixmap(0,0);
m_WaterfallPixmap = QPixmap(0,0);
m_Size = QSize(0,0);
m_GrabPosition = 0;
m_Percent2DScreen = 50; //percent of screen used for 2D display
m_RdsCall[0] = 0;
m_RdsText[0] = 0;
}
CPlotter::~CPlotter()
{
}
//////////////////////////////////////////////////////////////////////
// Sizing interface
//////////////////////////////////////////////////////////////////////
QSize CPlotter::minimumSizeHint() const
{
return QSize(50, 50);
}
QSize CPlotter::sizeHint() const
{
return QSize(180, 180);
}
//////////////////////////////////////////////////////////////////////
// Called when mouse moves and does different things depending
//on the state of the mouse buttons for dragging the demod bar or
// filter edges.
//////////////////////////////////////////////////////////////////////
void CPlotter::mouseMoveEvent(QMouseEvent* event)
{
QPoint pt = event->pos();
QPoint gpt = event->globalPos();
if( m_OverlayPixmap.rect().contains(pt) )
{ //is in Overlay bitmap region
if( event->buttons()==Qt::NoButton)
{ //if no mouse button monitor grab regions and change cursor icon
if( IsPointCloseTo( pt.x(),(m_DemodHiCutFreqX+m_DemodLowCutFreqX)/2,
(m_DemodHiCutFreqX-m_DemodLowCutFreqX/*-m_CursorCaptureDelta*/)/2) )
{ //in move demod box center frequency region
if(CENTER!=m_CursorCaptured)
setCursor(QCursor(Qt::CrossCursor));
m_CursorCaptured = CENTER;
DisplayCursorFreq(gpt, RoundFreq( FreqfromX( pt.x() ), m_ClickResolution) );
}
else if( IsPointCloseTo( pt.x(),m_DemodHiCutFreqX, m_CursorCaptureDelta) )
{ //in move demod hicut region
if(RIGHT!=m_CursorCaptured)
setCursor(QCursor(Qt::SizeFDiagCursor));
m_CursorCaptured = RIGHT;
DisplayCursorFreq(gpt, m_DemodHiCutFreq );
}
else if( IsPointCloseTo( pt.x(),m_DemodLowCutFreqX, m_CursorCaptureDelta) )
{ //in move demod lowcut region
if(LEFT!=m_CursorCaptured)
setCursor(QCursor(Qt::SizeBDiagCursor));
m_CursorCaptured = LEFT;
DisplayCursorFreq(gpt, m_DemodLowCutFreq);
}
else
{ //if not near any grab boundaries
if(NONE!=m_CursorCaptured)
{
setCursor(QCursor(Qt::ArrowCursor));
m_CursorCaptured = NONE;
}
DisplayCursorFreq(gpt, RoundFreq( FreqfromX( pt.x() ), m_ClickResolution) );
}
m_GrabPosition = 0;
}
}
else
{ //not in Overlay region
if( event->buttons()==Qt::NoButton)
{
if(NONE!=m_CursorCaptured)
setCursor(QCursor(Qt::ArrowCursor));
m_CursorCaptured = NONE;
m_GrabPosition = 0;
DisplayCursorFreq(gpt, RoundFreq(FreqfromX( pt.x() ), m_ClickResolution) );
}
}
//process mouse moves while in cursor capture modes
if(LEFT==m_CursorCaptured)
{ //moving in demod lowcut region
if(event->buttons()&Qt::RightButton)
{ //moving in demod lowcut region with right button held
if(m_GrabPosition!=0)
{
m_DemodLowCutFreq = FreqfromX(pt.x()-m_GrabPosition ) - m_DemodCenterFreq;
m_DemodLowCutFreq = RoundFreq(m_DemodLowCutFreq, m_FilterClickResolution);
DrawOverlay();
if(m_symetric)
{
m_DemodHiCutFreq = -m_DemodLowCutFreq;
emit NewHighCutFreq(m_DemodHiCutFreq);
}
emit NewLowCutFreq(m_DemodLowCutFreq);
}
else
{ //save initial grab postion from m_DemodFreqX
m_GrabPosition = pt.x()-m_DemodLowCutFreqX;
}
DisplayCursorFreq(gpt, m_DemodLowCutFreq);
}
else if(event->buttons() & ~Qt::NoButton)
{
setCursor(QCursor(Qt::ArrowCursor));
m_CursorCaptured = NONE;
}
}
else if(RIGHT==m_CursorCaptured)
{ //moving in demod highcut region
if(event->buttons()&Qt::RightButton)
{ //moving in demod highcut region with right button held
if(m_GrabPosition!=0)
{
m_DemodHiCutFreq = FreqfromX( pt.x()-m_GrabPosition ) - m_DemodCenterFreq;
m_DemodHiCutFreq = RoundFreq(m_DemodHiCutFreq, m_FilterClickResolution);
DrawOverlay();
if(m_symetric)
{
m_DemodLowCutFreq = -m_DemodHiCutFreq;
emit NewLowCutFreq(m_DemodLowCutFreq);
}
emit NewHighCutFreq(m_DemodHiCutFreq);
}
else
{ //save initial grab postion from m_DemodFreqX
m_GrabPosition = pt.x()-m_DemodHiCutFreqX;
}
DisplayCursorFreq(gpt, m_DemodHiCutFreq);
}
else if(event->buttons() & ~Qt::NoButton)
{
setCursor(QCursor(Qt::ArrowCursor));
m_CursorCaptured = NONE;
}
}
else if(CENTER==m_CursorCaptured)
{ //moving inbetween demod lowcut and highcut region
if(event->buttons()&Qt::LeftButton)
{//moving inbetween demod lowcut and highcut region with left button held
if(m_GrabPosition!=0)
{
m_DemodCenterFreq = RoundFreq(FreqfromX( pt.x()-m_GrabPosition ),m_ClickResolution );
emit NewDemodFreq(m_DemodCenterFreq);
}
else
{ //save initial grab postion from m_DemodFreqX
m_GrabPosition = pt.x()-m_DemodFreqX;
}
DisplayCursorFreq(gpt, m_DemodCenterFreq);
}
else if(event->buttons() & ~Qt::NoButton)
{
setCursor(QCursor(Qt::ArrowCursor));
m_CursorCaptured = NONE;
}
}
else //if cursor not captured
{
m_GrabPosition = 0;
}
if( !this->rect().contains(pt) )
{
if(NONE != m_CursorCaptured)
setCursor(QCursor(Qt::ArrowCursor));
m_CursorCaptured = NONE;
QToolTip::hideText();
}
}
//////////////////////////////////////////////////////////////////////
// Called when a mouse button is pressed
//////////////////////////////////////////////////////////////////////
void CPlotter::mousePressEvent(QMouseEvent * event)
{
QPoint pt = event->pos();
QPoint gpt = event->globalPos();
if(event->buttons()==Qt::LeftButton)
{
if( IsPointCloseTo( pt.x(),(m_DemodHiCutFreqX+m_DemodLowCutFreqX)/2,
(m_DemodHiCutFreqX-m_DemodLowCutFreqX/*-m_CursorCaptureDelta*/)/2) )
{ //in move demod box center frequency region
if(CENTER!=m_CursorCaptured)
setCursor(QCursor(Qt::CrossCursor));
m_CursorCaptured = CENTER;
m_GrabPosition = pt.x()-m_DemodFreqX;
}
if( CENTER!=m_CursorCaptured)
{ //if cursor not captured set demod frequency and start demod box capture
m_DemodCenterFreq = RoundFreq(FreqfromX(pt.x()),m_ClickResolution );
//qDebug()<<m_ClickResolution << m_DemodCenterFreq;
emit NewDemodFreq(m_DemodCenterFreq);
//save initial grab postion from m_DemodFreqX
setCursor(QCursor(Qt::CrossCursor));
m_CursorCaptured = CENTER;
m_GrabPosition = 1;
}
DisplayCursorFreq(gpt, m_DemodCenterFreq);
}
else if(event->buttons()==Qt::MiddleButton)
{
if( NONE==m_CursorCaptured)
{ //if cursor not captured set center freq
m_CenterFreq = RoundFreq(FreqfromX(pt.x()),m_ClickResolution );
m_DemodCenterFreq = m_CenterFreq;
emit NewCenterFreq(m_CenterFreq);
DisplayCursorFreq(gpt, m_CenterFreq);
}
}
else if(event->buttons()==Qt::RightButton)
{
if( NONE==m_CursorCaptured)
{
DisplayCursorFreq(gpt, FreqfromX( pt.x() ));
}
else if( IsPointCloseTo( pt.x(),m_DemodHiCutFreqX, m_CursorCaptureDelta) )
{ //in move demod hicut region
DisplayCursorFreq(gpt, m_DemodHiCutFreq );
}
else if( IsPointCloseTo( pt.x(),m_DemodLowCutFreqX, m_CursorCaptureDelta) )
{ //in move demod lowcut region
DisplayCursorFreq(gpt, m_DemodLowCutFreq);
}
}
}
//////////////////////////////////////////////////////////////////////
// Called when a mouse button is released
//////////////////////////////////////////////////////////////////////
void CPlotter::mouseReleaseEvent(QMouseEvent * event)
{
QPoint pt = event->pos();
QPoint gpt = event->globalPos();
if( !m_OverlayPixmap.rect().contains(pt) )
{ //not in Overlay region
if(NONE!=m_CursorCaptured)
setCursor(QCursor(Qt::ArrowCursor));
m_CursorCaptured = NONE;
m_GrabPosition = 0;
DisplayCursorFreq(gpt, m_DemodCenterFreq);
}
else
{
if( IsPointCloseTo( pt.x(),m_DemodHiCutFreqX, m_CursorCaptureDelta) )
{ //in move demod hicut region
DisplayCursorFreq(gpt, m_DemodHiCutFreq );
}
else if( IsPointCloseTo( pt.x(),m_DemodLowCutFreqX, m_CursorCaptureDelta) )
{ //in move demod lowcut region
DisplayCursorFreq(gpt, m_DemodLowCutFreq);
}
}
}
//////////////////////////////////////////////////////////////////////
// Called when a mouse wheel is turned
//////////////////////////////////////////////////////////////////////
void CPlotter::wheelEvent( QWheelEvent * event )
{
QPoint gpt = event->globalPos();
int numDegrees = event->delta() / 8;
int numSteps = numDegrees / 15;
if(event->buttons()==Qt::RightButton)
{ //right button held while wheel is spun
if(RIGHT==m_CursorCaptured)
{ //change demod high cut
m_DemodHiCutFreq += (numSteps*m_FilterClickResolution);
m_DemodHiCutFreq = RoundFreq(m_DemodHiCutFreq, m_FilterClickResolution);
DrawOverlay();
if(m_symetric)
{
m_DemodLowCutFreq = -m_DemodHiCutFreq;
emit NewLowCutFreq(m_DemodLowCutFreq);
}
emit NewHighCutFreq(m_DemodHiCutFreq);
DisplayCursorFreq(gpt, m_DemodHiCutFreq );
}
else if(LEFT==m_CursorCaptured)
{ //change demod low cut
m_DemodLowCutFreq += (numSteps*m_FilterClickResolution);
m_DemodLowCutFreq = RoundFreq(m_DemodLowCutFreq, m_FilterClickResolution);
DrawOverlay();
if(m_symetric)
{
m_DemodHiCutFreq = -m_DemodLowCutFreq;
emit NewHighCutFreq(m_DemodHiCutFreq);
}
emit NewLowCutFreq(m_DemodLowCutFreq);
DisplayCursorFreq(gpt, m_DemodLowCutFreq );
}
}
else
{ //inc/dec demod frequency if right button NOT pressed
m_DemodCenterFreq += (numSteps*m_ClickResolution);
m_DemodCenterFreq = RoundFreq(m_DemodCenterFreq, m_ClickResolution );
emit NewDemodFreq(m_DemodCenterFreq);
DisplayCursorFreq(gpt, m_DemodCenterFreq );
}
}
//////////////////////////////////////////////////////////////////////
// Called when screen size changes so must recalculate bitmaps
//////////////////////////////////////////////////////////////////////
void CPlotter::resizeEvent(QResizeEvent* )
{
if(!size().isValid())
return;
if( m_Size != size() )
{ //if changed, resize pixmaps to new screensize
m_Size = size();
m_OverlayPixmap = QPixmap(m_Size.width(), m_Percent2DScreen*m_Size.height()/100);
m_OverlayPixmap.fill(Qt::black);
m_2DPixmap = QPixmap(m_Size.width(), m_Percent2DScreen*m_Size.height()/100);
m_2DPixmap.fill(Qt::black);
m_WaterfallPixmap = QPixmap(m_Size.width(), (100-m_Percent2DScreen)*m_Size.height()/100);
}
m_WaterfallPixmap.fill(Qt::black);
DrawOverlay();
}
//////////////////////////////////////////////////////////////////////
// Called by QT when screen needs to be redrawn
//////////////////////////////////////////////////////////////////////
void CPlotter::paintEvent(QPaintEvent *)
{
QPainter painter(this);
painter.drawPixmap(0,0,m_2DPixmap);
painter.drawPixmap(0, m_Percent2DScreen*m_Size.height()/100,m_WaterfallPixmap);
//tell interface that its ok to signal a new line of fft data
if(m_pSdrInterface)
m_pSdrInterface->ScreenUpdateDone();
return;
}
//////////////////////////////////////////////////////////////////////
// Called to update spectrum data for displaying on the screen
//////////////////////////////////////////////////////////////////////
void CPlotter::draw()
{
int i;
int w;
int h;
qint32 fftbuf[MAX_SCREENSIZE];
QPoint LineBuf[MAX_SCREENSIZE];
if(!m_Running)
return;
//StartPerformance();
//get/draw the waterfall
w = m_WaterfallPixmap.width();
h = m_WaterfallPixmap.height();
//move current data down one line(must do before attaching a QPainter object)
m_WaterfallPixmap.scroll(0,1,0,0, w, h);
QPainter painter1(&m_WaterfallPixmap);
//get scaled FFT data
bool fftoverload = false;
if(m_pSdrInterface)
fftoverload = m_pSdrInterface->GetScreenIntegerFFTData( 255, w,
m_MaxdB,
m_MindB,
-m_Span/2,
m_Span/2,
fftbuf );
//draw new line of fft data at top of waterfall bitmap
for(i=0; i<w; i++)
{
painter1.setPen(m_ColorTbl[ 255-fftbuf[i] ]);
painter1.drawPoint(i,0);
}
//get/draw the 2D spectrum
w = m_2DPixmap.width();
h = m_2DPixmap.height();
//first copy into 2Dbitmap the overlay bitmap.
m_2DPixmap = m_OverlayPixmap.copy(0,0,w,h);
QPainter painter2(&m_2DPixmap);
// workaround for "fixed" line drawing since Qt 5
// see http://stackoverflow.com/questions/16990326
#if QT_VERSION >= 0x050000
painter2.translate(0.5, 0.5);
#endif
//get new scaled fft data
if(m_pSdrInterface)
m_pSdrInterface->GetScreenIntegerFFTData( h, w,
m_MaxdB,
m_MindB,
-m_Span/2,
m_Span/2,
fftbuf );
//draw the 2D spectrum
if(m_ADOverLoad || fftoverload)
{
painter2.setPen( Qt::red );
if(m_ADOverloadOneShotCounter++ > OVERLOAD_DISPLAY_LIMIT)
{
m_ADOverloadOneShotCounter = 0;
m_ADOverLoad = false;
}
}
else
painter2.setPen( Qt::green );
for(i=0; i<w; i++)
{
LineBuf[i].setX(i);
LineBuf[i].setY(fftbuf[i]);
}
painter2.drawPolyline(LineBuf,w);
//trigger a new paintEvent
update();
//StopPerformance(1);
}
//////////////////////////////////////////////////////////////////////
// Called to draw an overlay bitmap containing grid and text that
// does not need to be recreated every fft data update.
//////////////////////////////////////////////////////////////////////
void CPlotter::DrawOverlay()
{
if(m_OverlayPixmap.isNull())
return;
int w = m_OverlayPixmap.width();
int h = m_OverlayPixmap.height();
int x,y;
float pixperdiv;
QRect rect;
QPainter painter(&m_OverlayPixmap);
painter.initFrom(this);
//m_OverlayPixmap.fill(Qt::black);
//fill background with gradient
QLinearGradient gradient(0, 0, 0 ,h);
gradient.setColorAt(1, Qt::black);
// gradient.setColorAt(0, Qt::gray);
gradient.setColorAt(0, Qt::darkBlue);
painter.setBrush(gradient);
painter.drawRect(0, 0, w, h);
//Draw demod filter box
ClampDemodParameters();
m_DemodFreqX = XfromFreq(m_DemodCenterFreq);
m_DemodLowCutFreqX = XfromFreq(m_DemodCenterFreq + m_DemodLowCutFreq);
m_DemodHiCutFreqX = XfromFreq(m_DemodCenterFreq + m_DemodHiCutFreq);
int dw = m_DemodHiCutFreqX - m_DemodLowCutFreqX;
painter.setBrush(Qt::SolidPattern);
painter.setOpacity(0.5);
int LockState = false;
if(m_pSdrInterface)
m_pSdrInterface->GetStereoLock(&LockState);
if( LockState )
painter.fillRect(m_DemodLowCutFreqX, 0,dw, h, Qt::green);
else
painter.fillRect(m_DemodLowCutFreqX, 0,dw, h, Qt::gray);
painter.setPen(QPen(Qt::magenta, 2,Qt::DotLine));
painter.drawLine(m_DemodLowCutFreqX, 0, m_DemodLowCutFreqX, h);
painter.drawLine(m_DemodHiCutFreqX, 0, m_DemodHiCutFreqX, h);
painter.setPen(QPen(Qt::blue, 1,Qt::DashLine));
painter.drawLine(m_DemodFreqX, 0, m_DemodFreqX, h);
painter.setOpacity(1);
//create Font to use for scales
QFont Font("Arial");
QFontMetrics metrics(Font);
y = h/VERT_DIVS;
int vskip;
if(y>15)
{
vskip = 1;
Font.setPointSize(10);
}
else if(y>8)
{
vskip = 2;
Font.setPixelSize(y);
}
else
{
vskip = 20;
Font.setPointSize(6);
}
Font.setWeight(QFont::DemiBold);
painter.setFont(Font);
//draw vertical grids
pixperdiv = (float)w / (float)HORZ_DIVS;
y = h - h/VERT_DIVS;
for( int i=1; i<HORZ_DIVS; i++)
{
x = (int)( (float)i*pixperdiv );
if(i==HORZ_DIVS/2)
painter.setPen(QPen(Qt::red, 1,Qt::DotLine));
else
painter.setPen(QPen(Qt::white, 1,Qt::DotLine));
painter.drawLine(x, 0, x , y);
painter.drawLine(x, h-5, x , h);
}
//draw frequency values
MakeFrequencyStrs();
Font.setWeight(QFont::DemiBold);
painter.setPen(Qt::white);
y = h - (h/VERT_DIVS);
//qDebug()<<"pixperxdiv = "<<pixperdiv;
int hskip;
if(pixperdiv>90.)
hskip=1;
else if(pixperdiv>65.)
hskip = 2;
else
hskip = 3;
for( int i=0; i<=HORZ_DIVS; i++)
{
if( 0==i )
{
if( hskip==1 )
{ //left justify the leftmost text
x = (int)( (float)i*pixperdiv);
rect.setRect(x ,y, (int)pixperdiv, h/VERT_DIVS);
painter.drawText(rect, Qt::AlignLeft|Qt::AlignVCenter, m_HDivText[i]);
}
}
else if(HORZ_DIVS == i)
{
if( hskip==1 )
{ //right justify the rightmost text
x = (int)( (float)i*pixperdiv - pixperdiv);
rect.setRect(x ,y, (int)pixperdiv, h/VERT_DIVS);
painter.drawText(rect, Qt::AlignRight|Qt::AlignVCenter, m_HDivText[i]);
}
}
else
{
if((hskip<=2) || (i&1) )
{
//center justify the rest of the text
x = (int)( (float)i*pixperdiv - pixperdiv/2);
rect.setRect(x ,y, (int)pixperdiv, h/VERT_DIVS);
painter.drawText(rect, Qt::AlignHCenter|Qt::AlignVCenter, m_HDivText[i]);
}
}
}
//draw horizontal grids
pixperdiv = (float)h / (float)VERT_DIVS;
painter.setPen(QPen(Qt::white, 1,Qt::DotLine));
for( int i=1; i<VERT_DIVS; i++)
{
y = (int)( (float)i*pixperdiv );
painter.drawLine(0, y, w, y);
}
//draw amplitude values
painter.setPen(Qt::yellow);
Font.setWeight(QFont::Light);
painter.setFont(Font);
int dB = m_MaxdB;
for( int i=0; i<VERT_DIVS-1; i+=vskip)
{
y = (int)( (float)i*pixperdiv );
painter.drawText(5, y-1, QString::number(dB)+" dB");
dB -= (m_dBStepSize*vskip);
}
m_MindB = m_MaxdB - (VERT_DIVS)*m_dBStepSize;
if( 0 != m_RdsCall[0] )
{
painter.setPen(Qt::yellow);
Font.setWeight(QFont::Bold);
Font.setPointSize(20);
painter.setFont(Font);
rect.setTop(0);
rect.setLeft(0);
rect.setRight(w);
rect.setHeight(m_OverlayPixmap.height());
painter.drawText(rect,Qt::AlignHCenter|Qt::AlignTop, m_RdsCall);
if( 0 != m_RdsText[0] )
{
QFontMetrics metrics2(Font);
//
painter.setPen(Qt::white);
Font.setWeight(QFont::DemiBold);
Font.setPointSize(12);
painter.setFont(Font);
rect.setLeft(0);
rect.setRight(w);
rect.setTop(metrics2.height());
painter.drawText(rect,Qt::AlignHCenter|Qt::AlignTop, m_RdsText);
}
}
if(!m_Running)
{ //if not running so is no data updates to draw to screen
//copy into 2Dbitmap the overlay bitmap.
m_2DPixmap = m_OverlayPixmap.copy(0,0,w,h);
//trigger a new paintEvent
update();
}
}
//////////////////////////////////////////////////////////////////////
// Helper function Called to create all the frequency division text
//strings based on start frequency, span frequency, frequency units.
//Places in QString array m_HDivText
//Keeps all strings the same fractional length
//////////////////////////////////////////////////////////////////////
void CPlotter::MakeFrequencyStrs()
{
qint64 FreqPerDiv = m_Span/HORZ_DIVS;
qint64 StartFreq = m_CenterFreq - m_Span/2;
float freq;
int i,j;
int numfractdigits = (int)MLOG10((TYPEREAL)m_FreqUnits);
if(1 == m_FreqUnits)
{ //if units is Hz then just output integer freq
for(int i=0; i<=HORZ_DIVS; i++)
{
freq = (float)StartFreq/(float)m_FreqUnits;
m_HDivText[i].setNum((int)freq);
StartFreq += FreqPerDiv;
}
return;
}
//here if is fractional frequency values
//so create max sized text based on frequency units
for(int i=0; i<=HORZ_DIVS; i++)
{
freq = (float)StartFreq/(float)m_FreqUnits;
m_HDivText[i].setNum(freq,'f', numfractdigits);
StartFreq += FreqPerDiv;
}
//now find the division text with the longest non-zero digit
//to the right of the decimal point.
int max = 0;
for(i=0; i<=HORZ_DIVS; i++)
{
int dp = m_HDivText[i].indexOf('.');
int l = m_HDivText[i].length()-1;
for(j=l; j>dp; j--)
{
if(m_HDivText[i][j] != '0')
break;
}
if( (j-dp) > max)
max = j-dp;
}
//truncate all strings to maximum fractional length
StartFreq = m_CenterFreq - m_Span/2;
for( i=0; i<=HORZ_DIVS; i++)
{
freq = (float)StartFreq/(float)m_FreqUnits;
m_HDivText[i].setNum(freq,'f', max);
StartFreq += FreqPerDiv;
}
}
//////////////////////////////////////////////////////////////////////
// Helper functions to convert to/from screen coordinates to frequency
//////////////////////////////////////////////////////////////////////
int CPlotter::XfromFreq(qint64 freq)
{
float w = m_OverlayPixmap.width();
float StartFreq = (float)m_CenterFreq - (float)m_Span/2.;
int x = (int) w * ((float)freq - StartFreq)/(float)m_Span;
if(x<0 )
return 0;
if(x>(int)w)
return m_OverlayPixmap.width();
return x;
}
qint64 CPlotter::FreqfromX(int x)
{
float w = m_OverlayPixmap.width();
float StartFreq = (float)m_CenterFreq - (float)m_Span/2.;
qint64 f = (int)(StartFreq + (float)m_Span * (float)x/(float)w );
return f;
}
//////////////////////////////////////////////////////////////////////
// Helper function to round frequency to click resolution value
//////////////////////////////////////////////////////////////////////
qint64 CPlotter::RoundFreq(qint64 freq, int resolution)
{
qint64 delta = resolution;
qint64 delta_2 = delta/2;
if(freq>=0)
return ( freq - (freq+delta_2)%delta + delta_2);
else
return ( freq - (freq+delta_2)%delta - delta_2);
}
//////////////////////////////////////////////////////////////////////
// Helper function called to display frequency text with cursor tooltip
//////////////////////////////////////////////////////////////////////
void CPlotter::DisplayCursorFreq(QPoint pt, qint64 freq)
{
if(!m_UseCursorText)
return;
if(freq<100000)
m_Str = QString::number(freq) + " Hz";
else if(freq<1000000)
m_Str = QString::number((TYPEREAL)freq/1000.0) + " kHz";
else
m_Str = QString::number((TYPEREAL)freq/1000000.0,'g', 8) + " MHz";
QToolTip::showText(pt, m_Str, this, rect() );
}
//////////////////////////////////////////////////////////////////////
// Helper function clamps demod freqeuency limits of
// m_DemodCenterFreq
//////////////////////////////////////////////////////////////////////
void CPlotter::ClampDemodParameters()
{
if(m_DemodLowCutFreq < m_FLowCmin)
m_DemodLowCutFreq = m_FLowCmin;
if(m_DemodLowCutFreq > m_FLowCmax)
m_DemodLowCutFreq = m_FLowCmax;
if(m_DemodHiCutFreq < m_FHiCmin)
m_DemodHiCutFreq = m_FHiCmin;
if(m_DemodHiCutFreq > m_FHiCmax)
m_DemodHiCutFreq = m_FHiCmax;
}
void CPlotter::SetDemodRanges(int FLowCmin, int FLowCmax, int FHiCmin, int FHiCmax, bool symetric)
{
m_FLowCmin=FLowCmin;
m_FLowCmax=FLowCmax;
m_FHiCmin=FHiCmin;
m_FHiCmax=FHiCmax;
m_symetric=symetric;
ClampDemodParameters();
}
|