~canonical-platform-qa/autopilot-qt/overlay

« back to all changes in this revision

Viewing changes to driver/autopilot_types.h

  • Committer: Tarmac
  • Author(s): Thomi Richards
  • Date: 2013-09-16 19:29:53 UTC
  • mfrom: (70.1.15 experimental)
  • Revision ID: tarmac-20130916192953-gfi8t8ot60cvm4ea
1.4 wire protocol changes. Fixes: https://bugs.launchpad.net/bugs/1195141, https://bugs.launchpad.net/bugs/1214128.

Approved by PS Jenkins bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
Copyright 2012 Canonical
 
3
 
 
4
This program is free software: you can redistribute it and/or modify it
 
5
under the terms of the GNU General Public License version 3, as published
 
6
by the Free Software Foundation.
 
7
*/
 
8
 
 
9
 
 
10
#ifndef AUTOPILOT_TYPES_H
 
11
#define AUTOPILOT_TYPES_H
 
12
 
 
13
/// IMPORTANT: THese constants are taken from the autopilot XPathSelect protocol document.
 
14
/// Only add options here if the support has been added for them in autopilot itself.
 
15
enum autopilot_type_id
 
16
{
 
17
    TYPE_PLAIN = 0,
 
18
    TYPE_RECT = 1,
 
19
    TYPE_POINT = 2,
 
20
    TYPE_SIZE = 3,
 
21
    TYPE_COLOR = 4,
 
22
    TYPE_DATETIME = 5,
 
23
    TYPE_TIME = 6,
 
24
};
 
25
 
 
26
#endif