FrmCameraInfoF.cpp 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 resource "*.dfm"
  19. TFrmCameraInfo *FrmCameraInfo = NULL;
  20. //---------------------------------------------------------------------------
  21. __fastcall TFrmCameraInfo::TFrmCameraInfo(TComponent* Owner)
  22. : TForm(Owner)
  23. {
  24. if (g_AppCfg.sLang != "kr")
  25. {
  26. Caption = "Information";
  27. Font->Name = "Tahoma";
  28. cxLabel1->Caption = "Controller No: ";
  29. cxLabel2->Caption = "Controller Name: ";
  30. cxLabel3->Caption = "Stream Address: ";
  31. cxLabel4->Caption = "Stream Address(Full): ";
  32. }
  33. }
  34. //---------------------------------------------------------------------------
  35. void __fastcall TFrmCameraInfo::FormClose(TObject *Sender, TCloseAction &Action)
  36. {
  37. FrmCameraInfo = NULL;
  38. }
  39. //---------------------------------------------------------------------------