~ubuntu-branches/ubuntu/utopic/autopilot-qt/utopic

« back to all changes in this revision

Viewing changes to driver/autopilot_types.h

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Thomi Richards, Ubuntu daily release
  • Date: 2013-11-06 10:03:49 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20131106100349-9zlkhmhns3fsxup6
Tags: 1.4+14.04.20131106.1-0ubuntu1
[ Thomi Richards ]
* Update packaging details so upgrading from 1.3 -> 1.4 is seamless.
* Make Qt backend report wire protocol version when it starts. (LP:
  #1248293)

[ Ubuntu daily release ]
* Automatic snapshot from revision 74

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