mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
29 lines
1,010 B
C++
29 lines
1,010 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef SearchFrmH
|
|
#define SearchFrmH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <ExtCtrls.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TFrmSearch : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TRadioGroup *rgSI;
|
|
TEdit *edSeach;
|
|
TLabel *lbseach;
|
|
TButton *btOk;
|
|
TButton *btCancel;
|
|
void __fastcall btOkClick(TObject *Sender);
|
|
void __fastcall btCancelClick(TObject *Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TFrmSearch(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TFrmSearch *FrmSearch;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|