File: INCLUDE\MANJUST\MJ_OLD.H

    1 //#############################################################################
    2 //                                                                           //
    3 // MJ_OLD.H                                                                  //
    4 //                                                                           //
    5 // Subsystem : alte Manuelle Justage / Oberfläche                            //
    6 // Benutung durch andere Subsysteme erforderlich: JA                         //
    7 //---------------------------------------------------------------------------//
    8 // Quelle: verschoben aus M_DLG.H                                            //
    9 // Stand : 11.01.2003                                                        //
   10 //                                                                           //
   11 //#############################################################################
   12 
   13 #ifndef __MJ_OLD_H
   14 #define __MJ_OLD_H
   15 
   16 #include "utils\u_utils.h" // TModalDlg
   17 
   18 #include "detecuse\detecuse.h" // TDetector
   19 
   20 //--||--\\--||--//--||--\\--||--//--||--\\--||--//--||--\\--||--//--||--\\--||--
   21 
   22 //#############################################################################
   23 // TAngleControlDlg
   24 //#############################################################################
   25 
   26 class TAngleControlDlg : public TModalDlg
   27 { //************ Steuerung des Probentellers über den Winkel *********************
   28 public:
   29         TAngleControlDlg();
   30         int GetBarEgde( EScrollBarSide );
   31         int GetBarPos( void );
   32         void Dlg_OnHScrollBar( HWND, HWND, UINT, int );
   33         void Dlg_OnTimer( HWND, UINT );
   34         void Dlg_OnCommand( HWND, int, HWND, UINT );
   35         BOOL Dlg_OnInit( HWND, HWND, LPARAM );
   36         void Interrupt( void );
   37         void LeaveDialog( void );
   38 private:
   39         int AskTime;
   40         BOOL bStepMode;
   41         BOOL bMoveActive;
   42         BOOL bLongMove;
   43         BOOL bMeasureHwb;
   44         HWND BarHandle;
   45         HWND hMotorList;
   46         int BarFactor;
   47         int nMotor;
   48         TDetector* Sensor;
   49         double* MoveSpeed;
   50 };
   51 
   52 #endif //__MJ_OLD.H
   53 
   54 //#############################################################################
   55 // LastLine
   56 //#############################################################################
   57