Changeset 4301 in ntrip


Ignore:
Timestamp:
Jun 23, 2012, 11:46:56 AM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/graphwin.cpp

    r4299 r4301  
    4242
    4343#include "graphwin.h"
     44#include "polarplot.h"
    4445
    4546using namespace std;
     
    5455  int ww = QFontMetrics(font()).width('w');
    5556
     57  _polarPlot = new t_polarPlot(this);
     58
    5659  // Dialog Layout
    5760  // -------------
     
    6366
    6467  QVBoxLayout* mainLayout = new QVBoxLayout(this);
     68  mainLayout->addWidget(_polarPlot);
    6569  mainLayout->addLayout(buttonLayout);
    6670
  • trunk/BNC/src/rinex/graphwin.h

    r4299 r4301  
    2929#include <QtGui>
    3030
     31class t_polarPlot;
     32
    3133class t_graphWin : public QDialog {
    3234
     
    4648
    4749  private:
    48    QPushButton*   _buttonOK;
     50   QPushButton* _buttonOK;
     51   t_polarPlot* _polarPlot;
    4952};
    5053
  • trunk/BNC/src/src.pro

    r4299 r4301  
    3333# Include Path
    3434# ------------
    35 INCLUDEPATH = . ../newmat ./RTCM3 ./RTCM3/clock_and_orbit ./RTCM3/rtcm3torinex
     35INCLUDEPATH = . ../newmat ./RTCM3 ./RTCM3/clock_and_orbit ./RTCM3/rtcm3torinex \
     36              ../qwt ../qwtpolar
    3637
    3738# Additional Libraries
    3839# --------------------
    39 unix:LIBS  += -L../newmat -lnewmat
     40unix:LIBS  += -L../newmat -lnewmat -L../qwt -L../qwtpolar -lqwtpolar -lqwt
    4041win32:LIBS += -L../newmat/release -lnewmat
    4142
     
    111112             rinex/rnxnavfile.h       rinex/corrfile.h     \
    112113             rinex/reqcedit.h         rinex/reqcanalyze.h  \
    113              rinex/graphwin.h
     114             rinex/graphwin.h         rinex/polarplot.h
    114115  SOURCES += rinex/bncpostprocess.cpp rinex/rnxobsfile.cpp \
    115116             rinex/rnxnavfile.cpp     rinex/corrfile.cpp   \
    116117             rinex/reqcedit.cpp       rinex/reqcanalyze.cpp \
    117              rinex/graphwin.cpp
     118             rinex/graphwin.cpp       rinex/polarplot.cpp
    118119}
    119120
Note: See TracChangeset for help on using the changeset viewer.