6663b6c9
adorian
projet complet av...
|
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
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// ======================================================================
// File: Flve_Input.cxx - Flve_Input implementation
// Library: flvw - FLTK Virtual widget library
// Version: 0.1.0
// Started: 01/12/2000
//
// Copyright (C) 1999 Laurence Charlton
//
// Description:
// Flve_Input implements cell text editing for a list/table.
// ======================================================================
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifndef IN_GIAC
#include <giac/first.h>
#else
#include "first.h"
#endif
#ifdef HAVE_LIBFLTK
#include <FL/Fl.H>
#include "Flve_Input.H"
int Flve_Input::handle(int event)
{
int stat = Fl_Input::handle(event);
if (event==FL_KEYBOARD)
{
// if (stat)
// {
// damage(FL_DAMAGE_CHILD);
// draw();
// }
if ( !stat && owner )
{
if ( owner->handle(FL_SHORTCUT) )
return 1;
}
}
return stat;
}
#endif
|