~attente/gsettings-desktop-schemas/indicator-keyboard

« back to all changes in this revision

Viewing changes to headers/gdesktop-enums.h

  • Committer: Bazaar Package Importer
  • Author(s): Rodrigo Moya
  • Date: 2010-11-05 17:22:35 UTC
  • Revision ID: james.westby@ubuntu.com-20101105172235-u437mwd7vsog01vc
Tags: upstream-0.1.0
Import upstream version 0.1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright © 2010 Codethink Limited
 
3
 *
 
4
 * This library is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Lesser General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2.1 of the License, or (at your option) any later version.
 
8
 *
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * Lesser General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Lesser General Public
 
15
 * License along with this library; if not, write to the
 
16
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
17
 * Boston, MA 02110-1301, USA.
 
18
 *
 
19
 * Authors:
 
20
 *      Ryan Lortie <desrt@desrt.ca>
 
21
 */
 
22
 
 
23
#ifndef __gdesktop_enums_h__
 
24
#define __gdesktop_enums_h__
 
25
 
 
26
typedef enum
 
27
{
 
28
  G_DESKTOP_PROXY_MODE_NONE,
 
29
  G_DESKTOP_PROXY_MODE_MANUAL,
 
30
  G_DESKTOP_PROXY_MODE_AUTO
 
31
} GDesktopProxyMode;
 
32
 
 
33
typedef enum
 
34
{
 
35
  G_DESKTOP_TOOLBAR_STYLE_BOTH,
 
36
  G_DESKTOP_TOOLBAR_STYLE_BOTH_HORIZ,
 
37
  G_DESKTOP_TOOLBAR_STYLE_ICONS,
 
38
  G_DESKTOP_TOOLBAR_STYLE_TEXT
 
39
} GDesktopToolbarStyle;
 
40
 
 
41
typedef enum
 
42
{
 
43
  G_DESKTOP_TOOLBAR_ICON_SIZE_SMALL,
 
44
  G_DESKTOP_TOOLBAR_ICON_SIZE_LARGE
 
45
} GDesktopToolbarIconSize;
 
46
 
 
47
typedef enum
 
48
{
 
49
  G_DESKTOP_BACKGROUND_STYLE_NONE,
 
50
  G_DESKTOP_BACKGROUND_STYLE_WALLPAPER,
 
51
  G_DESKTOP_BACKGROUND_STYLE_CENTERED,
 
52
  G_DESKTOP_BACKGROUND_STYLE_SCALED,
 
53
  G_DESKTOP_BACKGROUND_STYLE_STRETCHED,
 
54
  G_DESKTOP_BACKGROUND_STYLE_ZOOM,
 
55
  G_DESKTOP_BACKGROUND_STYLE_SPANNED
 
56
} GDesktopBackgroundStyle;
 
57
 
 
58
typedef enum
 
59
{
 
60
  G_DESKTOP_BACKGROUND_SHADING_SOLID,
 
61
  G_DESKTOP_BACKGROUND_SHADING_VERTICAL,
 
62
  G_DESKTOP_BACKGROUND_SHADING_HORIZONTAL
 
63
} GDesktopBackgroundShading;
 
64
 
 
65
typedef enum
 
66
{
 
67
  G_DESKTOP_MOUSE_DWELL_MODE_WINDOW,
 
68
  G_DESKTOP_MOUSE_DWELL_MODE_GESTURE
 
69
} GDesktopMouseDwellMode;
 
70
 
 
71
typedef enum
 
72
{
 
73
  G_DESKTOP_MOUSE_DWELL_DIRECTION_LEFT,
 
74
  G_DESKTOP_MOUSE_DWELL_DIRECTION_RIGHT,
 
75
  G_DESKTOP_MOUSE_DWELL_DIRECTION_UP,
 
76
  G_DESKTOP_MOUSE_DWELL_DIRECTION_DOWN
 
77
} GDesktopMouseDwellDirection;
 
78
 
 
79
#endif /* __gdesktop_enums_h__ */