libroot/posix/stdio: Remove unused portions.
[haiku.git] / src / apps / stylededit / FindWindow.h
blobc6a2e17e08f288f66b710b9c4f376e05e3564914
1 /*
2 * Copyright 2002-2006, Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Mattias Sundblad
7 * Andrew Bachmann
8 */
9 #ifndef FIND_WINDOW_H
10 #define FIND_WINDOW_H
13 #include <Window.h>
16 class BButton;
17 class BCheckBox;
18 class BTextControl;
21 class FindWindow : public BWindow {
22 public:
23 FindWindow(BRect frame, BHandler* handler,
24 BString* searchString, bool caseState,
25 bool wrapState, bool backState);
27 virtual void MessageReceived(BMessage* message);
28 virtual void DispatchMessage(BMessage* message, BHandler* handler);
29 virtual bool QuitRequested();
30 virtual void Show();
32 private:
33 void _SendMessage();
35 BTextControl *fSearchString;
36 BCheckBox *fCaseSensBox;
37 BCheckBox *fWrapBox;
38 BCheckBox *fBackSearchBox;
39 BButton *fCancelButton;
40 BButton *fSearchButton;
42 BHandler *fHandler;
45 #endif // FIND_WINDOW_H