~ubuntu-branches/ubuntu/trusty/lcd4linux/trusty-proposed

« back to all changes in this revision

Viewing changes to widget_keypad.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2006-08-27 17:16:46 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060827171646-j63wpiogypbaik7a
* New Maintainer! 
* Dropping old maintainer in agreement with nobse@debian.org. 
  Thanks for your work so far, nobse!
* urgency medium because of release critical bugs
* Bump standards version to 3.7.2 (no changes needed)
* add build depends on libmpd-dev for mpd support
* new upstream snapshot
* drop dependency of ${misc:Depends}, not used anyway
* now supporting USB2LCD
* don't update config.{sub,guess} in clean target automatically
* new target ``update-config-sub-guess'' to update config.{sub,guess}
* Acking NMU, Thanks Steinar! (Closes: #374682)
* Bug fix: "FTBFS: undefined reference to many X functions", thanks to
  Eric Dorland. The problem was in driver.m4 (Closes: #381606).
* Bug fix: "Please stop Build-Depending on automake", thanks to Eric
  Dorland (Closes: #381812).
* Don't ship /etc/lcd4linux.conf anymore. Please install and customize 
  it yourself using /usr/share/doc/lcd4linux.conf.sample as template
* Bug fix: "lcd4linux - FTBFS: uses ia32 assembler", thanks to Bastian
  Blank. Fixed by adding #ifdefs to produce those asm statements on i386
  and amd64 only. (Closes: #336017).
* Removing outdated NEWS, FAQ, README.KDE on upstream request.
* Install manpage for lcd4linux

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: widget_keypad.h,v 1.3 2006/07/19 01:35:31 cmay Exp $
 
2
 *
 
3
 * keypad widget handling
 
4
 *
 
5
 * Copyright (C) 2006 Chris Maj <cmaj@freedomcorpse.com>
 
6
 * Copyright (C) 2006 The LCD4Linux Team <lcd4linux-devel@users.sourceforge.net>
 
7
 *
 
8
 * This file is part of LCD4Linux.
 
9
 *
 
10
 * LCD4Linux is free software; you can redistribute it and/or modify
 
11
 * it under the terms of the GNU General Public License as published by
 
12
 * the Free Software Foundation; either version 2, or (at your option)
 
13
 * any later version.
 
14
 *
 
15
 * LCD4Linux is distributed in the hope that it will be useful,
 
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
 * GNU General Public License for more details.
 
19
 *
 
20
 * You should have received a copy of the GNU General Public License
 
21
 * along with this program; if not, write to the Free Software
 
22
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
23
 *
 
24
 *
 
25
 * $Log: widget_keypad.h,v $
 
26
 * Revision 1.3  2006/07/19 01:35:31  cmay
 
27
 * Renamed keypad direction names to avoid conflict with Curses library defs.
 
28
 * Added keypad support to Curses display driver.
 
29
 *
 
30
 * Revision 1.2  2006/02/25 13:36:33  geronet
 
31
 * updated indent.sh, applied coding style
 
32
 *
 
33
 * Revision 1.1  2006/02/21 05:50:34  reinelt
 
34
 * keypad support from Cris Maj
 
35
 *
 
36
 *
 
37
 */
 
38
 
 
39
 
 
40
#ifndef _WIDGET_KEYPAD_H_
 
41
#define _WIDGET_KEYPAD_H_
 
42
 
 
43
typedef enum {
 
44
    WIDGET_KEY_UP = 1,
 
45
    WIDGET_KEY_DOWN = 2,
 
46
    WIDGET_KEY_LEFT = 4,
 
47
    WIDGET_KEY_RIGHT = 8,
 
48
    WIDGET_KEY_CONFIRM = 16,
 
49
    WIDGET_KEY_CANCEL = 32,
 
50
    WIDGET_KEY_PRESSED = 64,
 
51
    WIDGET_KEY_RELEASED = 128
 
52
} KEYPADKEY;
 
53
 
 
54
typedef struct WIDGET_KEYPAD {
 
55
    char *expression;           /* expression that delivers the value */
 
56
    void *tree;                 /* pre-compiled expression that delivers the value */
 
57
    int val;                    /* current value of the expression */
 
58
    KEYPADKEY key;              /* which key */
 
59
} WIDGET_KEYPAD;
 
60
 
 
61
 
 
62
extern WIDGET_CLASS Widget_Keypad;
 
63
 
 
64
#endif