FrmCameraInfoF.cpp 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #include "AppGlobalF.h"
  4. #pragma hdrstop
  5. #include "FrmCameraInfoF.h"
  6. //---------------------------------------------------------------------------
  7. #pragma package(smart_init)
  8. #pragma link "cxContainer"
  9. #pragma link "cxControls"
  10. #pragma link "cxEdit"
  11. #pragma link "cxGraphics"
  12. #pragma link "cxLabel"
  13. #pragma link "cxLookAndFeelPainters"
  14. #pragma link "cxLookAndFeels"
  15. #pragma link "dxSkinBlack"
  16. #pragma link "dxSkinBlue"
  17. #pragma link "dxSkinsCore"
  18. #pragma link "dxSkinMcSkin"
  19. #pragma resource "*.dfm"
  20. TFrmCameraInfo *FrmCameraInfo = NULL;
  21. //---------------------------------------------------------------------------
  22. __fastcall TFrmCameraInfo::TFrmCameraInfo(TComponent* Owner)
  23. : TForm(Owner)
  24. {
  25. if (g_AppCfg.sLang != "kr")
  26. {
  27. Caption = "Information";
  28. Font->Name = "Tahoma";
  29. cxLabel1->Caption = "Controller No: ";
  30. cxLabel2->Caption = "Controller Name: ";
  31. cxLabel3->Caption = "Stream Address: ";
  32. cxLabel4->Caption = "Stream Address(Full): ";
  33. }
  34. }
  35. //---------------------------------------------------------------------------
  36. void __fastcall TFrmCameraInfo::FormClose(TObject *Sender, TCloseAction &Action)
  37. {
  38. FrmCameraInfo = NULL;
  39. }
  40. //---------------------------------------------------------------------------