Changeset 4301 in ntrip
- Timestamp:
- Jun 23, 2012, 11:46:56 AM (12 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/graphwin.cpp
r4299 r4301 42 42 43 43 #include "graphwin.h" 44 #include "polarplot.h" 44 45 45 46 using namespace std; … … 54 55 int ww = QFontMetrics(font()).width('w'); 55 56 57 _polarPlot = new t_polarPlot(this); 58 56 59 // Dialog Layout 57 60 // ------------- … … 63 66 64 67 QVBoxLayout* mainLayout = new QVBoxLayout(this); 68 mainLayout->addWidget(_polarPlot); 65 69 mainLayout->addLayout(buttonLayout); 66 70 -
trunk/BNC/src/rinex/graphwin.h
r4299 r4301 29 29 #include <QtGui> 30 30 31 class t_polarPlot; 32 31 33 class t_graphWin : public QDialog { 32 34 … … 46 48 47 49 private: 48 QPushButton* _buttonOK; 50 QPushButton* _buttonOK; 51 t_polarPlot* _polarPlot; 49 52 }; 50 53 -
trunk/BNC/src/src.pro
r4299 r4301 33 33 # Include Path 34 34 # ------------ 35 INCLUDEPATH = . ../newmat ./RTCM3 ./RTCM3/clock_and_orbit ./RTCM3/rtcm3torinex 35 INCLUDEPATH = . ../newmat ./RTCM3 ./RTCM3/clock_and_orbit ./RTCM3/rtcm3torinex \ 36 ../qwt ../qwtpolar 36 37 37 38 # Additional Libraries 38 39 # -------------------- 39 unix:LIBS += -L../newmat -lnewmat 40 unix:LIBS += -L../newmat -lnewmat -L../qwt -L../qwtpolar -lqwtpolar -lqwt 40 41 win32:LIBS += -L../newmat/release -lnewmat 41 42 … … 111 112 rinex/rnxnavfile.h rinex/corrfile.h \ 112 113 rinex/reqcedit.h rinex/reqcanalyze.h \ 113 rinex/graphwin.h 114 rinex/graphwin.h rinex/polarplot.h 114 115 SOURCES += rinex/bncpostprocess.cpp rinex/rnxobsfile.cpp \ 115 116 rinex/rnxnavfile.cpp rinex/corrfile.cpp \ 116 117 rinex/reqcedit.cpp rinex/reqcanalyze.cpp \ 117 rinex/graphwin.cpp 118 rinex/graphwin.cpp rinex/polarplot.cpp 118 119 } 119 120
Note:
See TracChangeset
for help on using the changeset viewer.