-
Notifications
You must be signed in to change notification settings - Fork 0
/
fSearchBar.h
33 lines (32 loc) · 1.08 KB
/
fSearchBar.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//---------------------------------------------------------------------------
#ifndef fSearchBarH
#define fSearchBarH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
//---------------------------------------------------------------------------
class TSearchBar : public TForm
{
__published: // IDE-managed Components
TEdit *Edit1;
TLabel *Label1;
TCheckBox *CheckBox1;
TButton *Button1;
TButton *Button2;
void __fastcall Button2Click(TObject *Sender);
void __fastcall Button1Click(TObject *Sender);
void __fastcall Edit1KeyPress(TObject *Sender, wchar_t &Key);
private: // User declarations
public: // User declarations
bool success;
bool forward;
bool cases;
String text;
__fastcall TSearchBar(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TSearchBar *SearchBar;
//---------------------------------------------------------------------------
#endif