File: Draw_Fl_Input.h

package info (click to toggle)
drawxtl 5.5-6.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,292 kB
  • sloc: cpp: 44,099; makefile: 157
file content (17 lines) | stat: -rw-r--r-- 320 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// $Id: Draw_Fl_Input.h 900 2009-08-13 20:00:45Z larry $
//
#ifndef Draw_Fl_Input_h
#define Draw_Fl_Input_h

#include <FL/Fl_Input.H>

class Draw_Fl_Input:public Fl_Input
{
  public:
  Draw_Fl_Input (int x, int y, int w, int h, const char *l = 0):
    Fl_Input (x, y, w, h, l) {
    }
    int handle (int e);
};

#endif