//--------------------------------------------------------------------------- #ifndef ITSSEL2MFH #define ITSSEL2MFH //--------------------------------------------------------------------------- #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "cxButtons.hpp" #include "cxContainer.hpp" #include "cxControls.hpp" #include "cxEdit.hpp" #include "cxGraphics.hpp" #include "cxGroupBox.hpp" #include "cxLookAndFeelPainters.hpp" #include "cxLookAndFeels.hpp" #include "dxSkinBlack.hpp" #include "dxSkinBlue.hpp" #include "dxSkinsCore.hpp" #include "FRAME_IfscListF.h" //--------------------------------------------------------------------------- class TITSSEL2M : public TForm { __published: // IDE-managed Components TTimer *TmrShow; TcxButton *BtnSearch; TcxButton *BtnClose; TEdit *EdFocus; TcxButton *BtnSelect; TcxGroupBox *cxGroupBox1; TShape *ShpList; TListBox *SelList; TFRAMEIfscList *FRAMEIfscList1; void __fastcall FormShow(TObject *Sender); void __fastcall TmrShowTimer(TObject *Sender); void __fastcall BtnSearchClick(TObject *Sender); void __fastcall BtnCloseClick(TObject *Sender); void __fastcall BtnSelectClick(TObject *Sender); void __fastcall FormClose(TObject *Sender, TCloseAction &Action); private: // User declarations void __fastcall CommClose(); void __fastcall SetMultiSelect(bool AMultiSelect); bool __fastcall GetMultiSelect(); bool FMultiSelect; public: bool m_bSelected; String m_sSelLinkId; public: // User declarations __fastcall TITSSEL2M(TComponent* Owner); void __fastcall RefreshData(); void __fastcall SelListData(); __property bool MultiSelect = {read = GetMultiSelect, write=SetMultiSelect }; }; //--------------------------------------------------------------------------- extern PACKAGE TITSSEL2M *ITSSEL2M; //--------------------------------------------------------------------------- #endif