123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #include "ITSSkinF.h"
- #include "ITSUtilF.h"
- #include "AppGlobalF.h"
- #include "ITSLangTransF.h"
- #pragma hdrstop
- #include "VDSH050MF.h"
- #include "VDSH0501F.h"
- //---------------------------------------------------------------------------
- #pragma package(smart_init)
- #pragma link "cxButtons"
- #pragma link "cxCalendar"
- #pragma link "cxContainer"
- #pragma link "cxControls"
- #pragma link "cxDropDownEdit"
- #pragma link "cxEdit"
- #pragma link "cxGraphics"
- #pragma link "cxGroupBox"
- #pragma link "cxLabel"
- #pragma link "cxLookAndFeelPainters"
- #pragma link "cxLookAndFeels"
- #pragma link "cxMaskEdit"
- #pragma link "cxPC"
- #pragma link "cxPCdxBarPopupMenu"
- #pragma link "cxSpinEdit"
- #pragma link "cxSplitter"
- #pragma link "cxTextEdit"
- #pragma link "cxTimeEdit"
- #pragma link "dxSkinBlack"
- #pragma link "dxSkinBlue"
- #pragma link "dxSkinsCore"
- #pragma link "dxSkinscxPCPainter"
- #pragma link "FRAME_VdsDtctListF"
- #pragma resource "*.dfm"
- TVDSH050M *VDSH050M = NULL;
- //---------------------------------------------------------------------------
- __fastcall TVDSH050M::TVDSH050M(TComponent* Owner)
- : TForm(Owner)
- {
- LangTrans->Translate(this, ITSDb_GetConnection());
- FTitle = Caption;//"VDS-검지기 평활화 이력조회";
- ITSSkin_Load(this);
- CMM_LoadForm(g_sFormsDir, this);
- m_pFormList = new TList();
- TsList01->TabVisible = false;
- FRAMEVdsDtctList1->PnlBottom->Visible = false;
- }
- //---------------------------------------------------------------------------
- void __fastcall TVDSH050M::CommClose()
- {
- try
- {
- for (int idx = m_pFormList->Count-1; idx >= 0; idx--)
- {
- m_pFormList->Delete(idx);
- }
- delete m_pFormList;
- CMM_SaveForm(g_sFormsDir, this);
- }
- catch(...)
- {
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TVDSH050M::FormShow(TObject *Sender)
- {
- Refresh();
- FormInit();
- TmrShow->Enabled = true;
- }
- //---------------------------------------------------------------------------
- void __fastcall TVDSH050M::FormInit()
- {
- DtStDate->Date = Now() - 1;
- DtEdDate->Date = Now() - 1;
- //DtEdTime->EditValue = Now().FormatString("hh");
- DtStTime->Time = StrToDateTime("00:00");
- DtEdTime->Time = StrToDateTime("23:59");
- }
- //---------------------------------------------------------------------------
- void __fastcall TVDSH050M::TmrShowTimer(TObject *Sender)
- {
- TmrShow->Enabled = false;
- FRAMEVdsDtctList1->UpdateList();
- }
- //---------------------------------------------------------------------------
- void __fastcall TVDSH050M::RefreshData()
- {
- // 검색조건에 의한 링크 데이터 조회
- try
- {
- //SelListData();
- }
- __finally
- {
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TVDSH050M::BtnSearchClick(TObject *Sender)
- {
- Application->ProcessMessages();
- TSqlCursor sqlCrs((TControl*)BtnSearch);
- #if 0
- FStDateTime = DtStDate->Date.FormatString("yyyymmdd") + DtStTime->Time.FormatString("hh");
- FEdDateTime = DtEdDate->Date.FormatString("yyyymmdd") + DtEdTime->Time.FormatString("hh");
- #else
- FStDateTime = DtStDate->Date.FormatString("yyyymmdd") + DtStTime->Time.FormatString("hhnn");
- FEdDateTime = DtEdDate->Date.FormatString("yyyymmdd") + DtEdTime->Time.FormatString("hhnn");
- #endif
- if (FStDateTime > FEdDateTime)
- {
- Application->MessageBox(FrmLang->lblQryDtErr->Caption.c_str(),//L"검색 시작시각이 검색 종료시각 보다 큽니다.",
- FTitle.c_str(), MB_OK|MB_ICONWARNING|MB_APPLMODAL);
- ActiveControl = DtStDate;
- return;
- }
- #if 0
- FStDateTime = FStDateTime + "0000";
- FEdDateTime = FEdDateTime + "5959";
- #else
- FStDateTime = FStDateTime + "00";
- FEdDateTime = FEdDateTime + "59";
- #endif
- FIdList = "";
- int nSelects = CMM_GetSelectCount(FRAMEVdsDtctList1->TvList, FRAMEVdsDtctList1->ColumnSel->Index, FRAMEVdsDtctList1->Column02->Index, FIdList);
- if (0 == nSelects)
- {
- Application->MessageBox(FrmLang->lblSelLstErr->Caption.c_str(),//L"검색 목록을 선택하지 않았습니다.",
- FTitle.c_str(), MB_OK|MB_ICONWARNING|MB_APPLMODAL);
- FRAMEVdsDtctList1->CxList->SetFocus();
- return;
- }
- #if 0
- String sTitle = "[" + FStDateTime + "-" + FEdDateTime + "]";
- #else
- String sTitle = CMM_GetSelectTitle(FRAMEVdsDtctList1->TvList, FRAMEVdsDtctList1->ColumnSel->Index, FRAMEVdsDtctList1->Column02->Index);
- #endif
- try
- {
- Application->ProcessMessages();
- LockWindowUpdate(Handle);
- TcxTabSheet *pSheet = CMM_AddTabSheet(PgTab, sTitle);
- if (!pSheet) return;
- VDSH0501 = new TVDSH0501(this, Handle, FStDateTime, FEdDateTime, FIdList);
- VDSH0501->Parent = pSheet;
- VDSH0501->Show();
- PgTab->ActivePage = pSheet;
- pSheet = PgTab->ActivePage;
- m_pFormList->Add(VDSH0501);
- }
- __finally
- {
- LockWindowUpdate(0);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TVDSH050M::BtnCloseClick(TObject *Sender)
- {
- Close();
- }
- //---------------------------------------------------------------------------
- void __fastcall TVDSH050M::OnSubFormClose(TMessage Msg)
- {
- int nActiveIdx = PgTab->ActivePageIndex;
- if (nActiveIdx <= 0) return;
- LockWindowUpdate(Handle);
- TcxTabSheet *pSheet = PgTab->ActivePage;
- if (pSheet)
- {
- delete pSheet;
- }
- nActiveIdx--; // 첫번째 탭은 화면에 숨겨져 있다.
- m_pFormList->Delete(nActiveIdx);
- LockWindowUpdate(0);
- }
- //---------------------------------------------------------------------------
- void __fastcall TVDSH050M::PgTabDblClick(TObject *Sender)
- {
- TPoint APoint;
- APoint = PgTab->MouseDownPos;
- if (PgTab->IndexOfTabAt(APoint.x, APoint.y) != -1)
- POST_MSG(Handle, WM_SUBFORM_CLOSE, 0, 0);
- }
- //---------------------------------------------------------------------------
- void __fastcall TVDSH050M::FormClose(TObject *Sender, TCloseAction &Action)
- {
- CommClose();
- VDSH050M = NULL;
- Action = caFree;
- }
- //---------------------------------------------------------------------------
- void __fastcall TVDSH050M::FormCloseQuery(TObject *Sender, bool &CanClose)
- {
- FRAMEVdsDtctList1->OnCloseQuery(CanClose);
- }
- //---------------------------------------------------------------------------
- void __fastcall TVDSH050M::PgTabCanCloseEx(TObject *Sender, int ATabIndex, bool &ACanClose)
- {
- int nActiveIdx = ATabIndex;
- if (nActiveIdx <= 0) return;
- nActiveIdx--; // 첫번째 탭은 화면에 숨겨져 있다.
- m_pFormList->Delete(nActiveIdx);
- }
- //---------------------------------------------------------------------------
|