Add copyright notice
[forms.git] / F / F_Browser.H
blob7caef4e99e65be149a59feb8890aafd878619d7a
2  /*
3   *   Copyright (C) 2007, Harbour, All rights reserved.
4   */
6 #ifndef _F_BROWSER_H_
7 #define _F_BROWSER_H_
9 #include <F_Text_Display.H>
10 #include <F_Widget.H>
12 namespace F {
14 class F_Browser : public F_Widget {
16   void draw();
17   bool handle(F_Event_t &ev);
19  public:
20   F_Browser(F_Box_Type_t btype, coord_t x, coord_t y, dim_t w, dim_t h,
21     const char *label = 0) : F_Widget(x, y, w + 1, h + 1, label) {
22  }
23   ~F_Browser() { }
24  };
27 #endif