~noskcaj/ubuntu/saucy/xfce4-power-manager/1.2.0-2ubuntu1

« back to all changes in this revision

Viewing changes to src/xfpm-enum.h

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Le Folgoc
  • Date: 2010-12-09 18:28:34 UTC
  • mfrom: (2.3.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20101209182834-efb7dinmf9ssp3es
Tags: 1.0.1-0ubuntu1
Upload to natty (pkg-xfce svn r4665), no Ubuntu changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
typedef enum
42
42
{
43
43
    LID_KEY             = (1 << 0),
44
 
    BRIGHTNESS_KEY      = (1 << 1),
45
 
    SLEEP_KEY           = (1 << 2),
46
 
    HIBERNATE_KEY       = (1 << 3),
47
 
    POWER_KEY           = (1 << 4)
 
44
    BRIGHTNESS_KEY_UP   = (1 << 1),
 
45
    BRIGHTNESS_KEY_DOWN = (1 << 2),
 
46
    SLEEP_KEY           = (1 << 3),
 
47
    HIBERNATE_KEY       = (1 << 4),
 
48
    POWER_KEY           = (1 << 5)
48
49
    
49
50
} XfpmKeys;
50
51