Initial commit
This commit is contained in:
86
MyCode/Gui/DetectorCurve.h
Normal file
86
MyCode/Gui/DetectorCurve.h
Normal file
@@ -0,0 +1,86 @@
|
||||
#ifndef DETETORCURVE_H_
|
||||
#define DETETORCURVE_H_
|
||||
|
||||
#include "gType.h"
|
||||
#include "GraphBase.h"
|
||||
#include "string.h"
|
||||
#include "my_string.h"
|
||||
#include "Device.h"
|
||||
#include "EpDevice.h"
|
||||
#include "StaticText.h"
|
||||
#include "CtlPanel1.h"
|
||||
#include "ProtoInnerCan.h"
|
||||
|
||||
class TDetectorCurve{
|
||||
public:
|
||||
unsigned int OnActive;
|
||||
TCtlPanel1 *aPanel;
|
||||
public:
|
||||
TStaticText Caption;
|
||||
TStaticText SText;
|
||||
|
||||
u32 Color;
|
||||
u32 TextColor;
|
||||
u32 SelectedColor;
|
||||
u32 SelectedTextColor;
|
||||
|
||||
int TabOrder;
|
||||
|
||||
TRect Bound;
|
||||
TRect RectCanvas;
|
||||
|
||||
TRect Content;
|
||||
TRect RectPanel;
|
||||
|
||||
TMyString Str;
|
||||
|
||||
unsigned int CtlIndex;
|
||||
unsigned int FastIndex;
|
||||
unsigned short Scaling[4];
|
||||
int IsFastCmd;
|
||||
unsigned char Data[8];
|
||||
unsigned char RecData[8];
|
||||
|
||||
unsigned char Path0;
|
||||
unsigned char Path1;
|
||||
unsigned char IsShowing;
|
||||
unsigned char IsOnGoing;
|
||||
private:
|
||||
void SetListColWidth(int w0, int w1, int w2, int w3, int w4,int w5,int w6, int w7, int w8, int w9);
|
||||
public:
|
||||
TDetectorCurve(){};
|
||||
TDetectorCurve(int x1, int y1, int aW, int aH, int OwnerX, int OwnerY, u32 aColor){
|
||||
Init(x1, y1, aW, aH, OwnerX, OwnerY, aColor);
|
||||
}
|
||||
void Init(int x1, int y1, int aW, int aH, int OwnerX, int OwnerY, u32 aColor);
|
||||
|
||||
void SetAndShowCaption(unsigned char aType);
|
||||
|
||||
void RenderBackGround(void);
|
||||
void RenderBackGround(unsigned int aClr);
|
||||
void DrawSelf(void);
|
||||
|
||||
void Show(void);
|
||||
void ReDraw(void);
|
||||
void FullRedraw(int Prm);
|
||||
void PanelCanvasOut();
|
||||
void DrawCaption2(void);
|
||||
|
||||
TGuiMsgReturn KeyIn(unsigned char aKey);
|
||||
|
||||
void InitPanel();
|
||||
|
||||
void Check4Selected(void);
|
||||
|
||||
void SendCmd();
|
||||
void SendCmdAbort();
|
||||
|
||||
int ExtRequst(unsigned char Prm);
|
||||
};
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user