Subversion Repositories Projects

Rev

Rev 440 | Rev 442 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 440 Rev 441
Line 98... Line 98...
98
    dlg_Map *f_Map;
98
    dlg_Map *f_Map;
Line 99... Line 99...
99
 
99
 
100
    //TCP-Socket
100
    //TCP-Socket
Line -... Line 101...
-
 
101
    QTcpSocket *TcpSocket;
101
    QTcpSocket *TcpSocket;
102
 
102
 
103
    //FIXME: replace ticker with something else
Line 103... Line 104...
103
    // Default-Ticker
104
    // Default-Ticker
104
    QTimer *Ticker;
105
    //QTimer *Ticker;
Line 105... Line 106...
105
 
106
 
106
    // Kopie der Tabs des Hauptfensters
107
    // copy of the tabs from the main widget
Line -... Line 108...
-
 
108
    QWidget *TabWidgets[7];
-
 
109
 
-
 
110
    // analog names (label)
107
    QWidget *TabWidgets[7];
111
    QLabel *lb_Analog[MaxAnalog];
108
 
112
 
Line 109... Line 113...
109
    // Analogwert-Beschreibungen
113
    // analog values (line edit)
110
    QLabel *lb_Analog[MaxAnalog];
114
    QLineEdit *le_Analog[MaxAnalog];
111
 
115
 
112
    // Plots für die Analogwerte
116
    // Plots für die Analogwerte
Line 113... Line 117...
113
    QwtPlotCurve *Plot[MaxAnalog];    
117
    QwtPlotCurve *Plot[MaxAnalog];
114
 
118
 
Line 115... Line 119...
115
    // Datenspeicher für die Plots
119
    // Datenspeicher für die Plots
-
 
120
    double aData[MaxAnalog][MaxPlot];
116
    double aData[MaxAnalog][MaxPlot];
121
    double aID[MaxPlot];
117
    double aID[MaxPlot];
122
    int NextPlot;
Line 118... Line 123...
118
    int NextPlot;
123
 
119
 
124
    AttitudeIndicator *Attitude;
Line 120... Line 125...
120
    AttitudeIndicator *Attitude;
125
    cSpeedMeter * SpeedMeter;