//--------------------------------------------------------------------------- #include #include "ITSSkinF.h" #include "ITSUtilF.h" #include "FrmResourceF.h" #include "ITSLangTransF.h" #pragma hdrstop #include "FRAME_AviSectListF.h" //--------------------------------------------------------------------------- #pragma package(smart_init) #pragma link "cxButtons" #pragma link "cxCalc" #pragma link "cxCheckBox" #pragma link "cxClasses" #pragma link "cxControls" #pragma link "cxCustomData" #pragma link "cxData" #pragma link "cxDataStorage" #pragma link "cxEdit" #pragma link "cxFilter" #pragma link "cxGraphics" #pragma link "cxGrid" #pragma link "cxGridCustomTableView" #pragma link "cxGridCustomView" #pragma link "cxGridLevel" #pragma link "cxGridTableView" #pragma link "cxLookAndFeelPainters" #pragma link "cxLookAndFeels" #pragma link "cxStyles" #pragma link "cxTextEdit" #pragma link "dxSkinBlack" #pragma link "dxSkinBlue" #pragma link "dxSkinsCore" #pragma link "dxSkinscxPCPainter" #pragma resource "*.dfm" //TFRAMEAviSectList *FRAMEAviSectList; //--------------------------------------------------------------------------- __fastcall TFRAMEAviSectList::TFRAMEAviSectList(TComponent* Owner) : TFrame(Owner) { ColumnSel->Options->Filtering = false; m_pGDC = TvList->DataController; TvList->OptionsView->GroupByBox = false; TvList->OptionsView->NoDataToDisplayInfoText = FrmLang->lblNoInfo->Caption;//""; MyItsAviManager = new TItsAviManager(); MyItsAviManager->LoadFromDb(); MyItsAviManager->LoadFromSectDb(); FCodeIFD = ItsCodeManager->FLists.Find("IFD"); //Á¦¾î±âÀ¯Çü } //--------------------------------------------------------------------------- void __fastcall TFRAMEAviSectList::UpdateList() { CMM_ClearGridTableView(TvList); int nRow = 0; try { TvList->BeginUpdate(); try { MyItsAviManager->FSectLists.Lock(); FOR_STL(TItsAviSect*, pObj, MyItsAviManager->FSectLists) { if (pObj->DEL_YN == "Y") continue; nRow = m_pGDC->AppendRecord(); m_pGDC->Values[nRow][ColumnSel->Index] = false; //¼±Åà m_pGDC->Values[nRow][Column00->Index] = "-"; //ÆíÁý //m_pGDC->Values[nRow][Column01->Index] = pObj->AVI_LCTN_NM; //Á¦¾î±âÀ§Ä¡ m_pGDC->Values[nRow][Column02->Index] = pObj->AVI_SECT_NMBR; //AVI ID m_pGDC->Values[nRow][Column03->Index] = pObj->AVI_SECT_NM; //±¸°£¸í m_pGDC->Values[nRow][Column04->Index] = pObj->STRT_SPOT_NM; //½ÃÁ¡¸í m_pGDC->Values[nRow][Column05->Index] = pObj->END_SPOT_NM; //Á¾Á¡¸í m_pGDC->Values[nRow][Column99->Index] = (int)pObj; } } __finally { MyItsAviManager->FSectLists.UnLock(); } } __finally { LblRecords->Caption = "("+FormatFloat("##,##0", m_pGDC->FilteredRecordCount) +"/"+FormatFloat("##,##0", m_pGDC->RecordCount) + ")"; TvList->EndUpdate(); TvList->DataController->GotoFirst(); TvList->DataController->FocusedRecordIndex = 0; //CxList->SetFocus(); CMM_ExpandCollapseChk(TvList, true); } } //--------------------------------------------------------------------------- void __fastcall TFRAMEAviSectList::BtnAllSelectClick(TObject *Sender) { TcxButton *pBtn = (TcxButton*)Sender; CMM_CheckAllListItem(TvList, ColumnSel->Index, pBtn->Tag); } //--------------------------------------------------------------------------- int __fastcall TFRAMEAviSectList::GetSelIds(String &ALinkIds) { ALinkIds = ""; if (TvList->ViewData->RecordCount <= 0) return 0; int nIndex = m_pGDC->FocusedRecordIndex; if( nIndex < 0 ) return 0; String sLinkId = VarToStr(m_pGDC->Values[nIndex][Column02->Index]); ALinkIds = sLinkId; return 1; } //--------------------------------------------------------------------------- int __fastcall TFRAMEAviSectList::GetSelIds(TStringList *AStringList) { int nSelCnt = 0; try { TvList->BeginUpdate(); int nRowCnt = TvList->ViewData->RecordCount; for (int ii = 0; ii < nRowCnt; ii++) { TcxCustomGridRow* ARow = TvList->ViewData->Rows[ii]; if (((bool)ARow->Values[ColumnSel->Index])) { AStringList->Add(ARow->Values[Column02->Index]); nSelCnt++; } } } __finally { TvList->EndUpdate(); } return nSelCnt; } //--------------------------------------------------------------------------- void __fastcall TFRAMEAviSectList::TvListDataControllerFilterChanged(TObject *Sender) { CMM_SetFilterLike(TvList); LblRecords->Caption = "("+FormatFloat("##,##0", m_pGDC->FilteredRecordCount) +"/"+FormatFloat("##,##0", m_pGDC->RecordCount) + ")"; } //--------------------------------------------------------------------------- void __fastcall TFRAMEAviSectList::BtnExlSaveClick(TObject *Sender) { TcxGrid *pGrid = CxList; TcxGridTableView *pView = TvList; String sTitle= "AVI±¸°£Á¤º¸"; CMM_ExportToExcelFile(sTitle, pGrid, pView, (TForm*)this); } //--------------------------------------------------------------------------- void __fastcall TFRAMEAviSectList::OnCloseQuery(bool &CanClose) { try { if (MyItsAviManager) { delete MyItsAviManager; MyItsAviManager = NULL; } } catch(...) {} } //---------------------------------------------------------------------------