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

« back to all changes in this revision

Viewing changes to common/xfpm-brightness.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:
 
1
/*
 
2
 * * Copyright (C) 2009 Ali <aliov@xfce.org>
 
3
 *
 
4
 * Licensed under the GNU General Public License Version 2
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; either version 2 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program; if not, write to the Free Software
 
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
19
 */
 
20
 
 
21
#ifndef __XFPM_BRIGHTNESS_H
 
22
#define __XFPM_BRIGHTNESS_H
 
23
 
 
24
#include <glib-object.h>
 
25
 
 
26
G_BEGIN_DECLS
 
27
 
 
28
#define XFPM_TYPE_BRIGHTNESS        (xfpm_brightness_get_type () )
 
29
#define XFPM_BRIGHTNESS(o)          (G_TYPE_CHECK_INSTANCE_CAST ((o), XFPM_TYPE_BRIGHTNESS, XfpmBrightness))
 
30
#define XFPM_IS_BRIGHTNESS(o)       (G_TYPE_CHECK_INSTANCE_TYPE ((o), XFPM_TYPE_BRIGHTNESS))
 
31
 
 
32
typedef enum
 
33
{
 
34
    XFPM_BRIGHTNESS_CONTROL_UNKNOWN,
 
35
    XFPM_BRIGHTNESS_CONTROL_XRANDR,
 
36
    XFPM_BRIGHTNESS_CONTROL_HAL
 
37
    
 
38
} XfpmBrightnessControl;
 
39
 
 
40
typedef struct XfpmBrightnessPrivate XfpmBrightnessPrivate;
 
41
 
 
42
typedef struct
 
43
{
 
44
    GObject                     parent;
 
45
    XfpmBrightnessPrivate      *priv;
 
46
    
 
47
} XfpmBrightness;
 
48
 
 
49
typedef struct
 
50
{
 
51
    GObjectClass                parent_class;
 
52
    
 
53
} XfpmBrightnessClass;
 
54
 
 
55
GType                           xfpm_brightness_get_type        (void) G_GNUC_CONST;
 
56
 
 
57
XfpmBrightness                 *xfpm_brightness_new             (void);
 
58
 
 
59
gboolean                        xfpm_brightness_setup           (XfpmBrightness *brightness);
 
60
 
 
61
gboolean                        xfpm_brightness_up              (XfpmBrightness *brightness,
 
62
                                                                 gint *new_level);
 
63
 
 
64
gboolean                        xfpm_brightness_down            (XfpmBrightness *brightness,
 
65
                                                                 gint *new_level);
 
66
 
 
67
gboolean                        xfpm_brightness_has_hw          (XfpmBrightness *brightness);
 
68
 
 
69
gint                            xfpm_brightness_get_max_level   (XfpmBrightness *brightness);
 
70
 
 
71
gboolean                        xfpm_brightness_get_level       (XfpmBrightness *brightness,
 
72
                                                                 gint *level);
 
73
 
 
74
gboolean                        xfpm_brightness_set_level       (XfpmBrightness *brightness,
 
75
                                                                 gint level);
 
76
 
 
77
gboolean                        xfpm_brightness_dim_down        (XfpmBrightness *brightness);
 
78
 
 
79
XfpmBrightnessControl           xfpm_brightness_get_control     (XfpmBrightness *brightness);
 
80
 
 
81
gboolean                        xfpm_brightness_in_hw           (XfpmBrightness *brightness);
 
82
 
 
83
G_END_DECLS
 
84
 
 
85
#endif /* __XFPM_BRIGHTNESS_H */