~ubuntu-branches/ubuntu/vivid/atk1.0/vivid-proposed

« back to all changes in this revision

Viewing changes to atk/atkrange.h

  • Committer: Package Import Robot
  • Author(s): Luke Yelavich
  • Date: 2014-10-25 10:12:48 UTC
  • mfrom: (11.3.3 sid)
  • Revision ID: package-import@ubuntu.com-20141025101248-r41m1uvjfbri1lj4
Tags: 2.14.0-1ubuntu1
* Merge from Debian unstable.  Remaining changes:
  - Build using dh-autoreconf.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#define __ATK_RANGE_H__
27
27
 
28
28
#include <glib-object.h>
 
29
#include <atk/atkversion.h>
29
30
 
30
31
G_BEGIN_DECLS
31
32
 
34
35
typedef struct _AtkRange AtkRange;
35
36
 
36
37
/* AtkRange methods */
 
38
ATK_AVAILABLE_IN_2_12
37
39
GType atk_range_get_type (void);
38
40
 
 
41
ATK_AVAILABLE_IN_2_12
39
42
AtkRange*    atk_range_copy (AtkRange *src);
 
43
ATK_AVAILABLE_IN_2_12
40
44
void         atk_range_free (AtkRange *range);
41
45
 
 
46
ATK_AVAILABLE_IN_2_12
42
47
gdouble      atk_range_get_lower_limit  (AtkRange    *range);
 
48
ATK_AVAILABLE_IN_2_12
43
49
gdouble      atk_range_get_upper_limit  (AtkRange    *range);
 
50
ATK_AVAILABLE_IN_2_12
44
51
const gchar* atk_range_get_description  (AtkRange    *range);
 
52
ATK_AVAILABLE_IN_2_12
45
53
AtkRange*    atk_range_new              (gdouble      lower_limit,
46
54
                                         gdouble      upper_limit,
47
55
                                         const gchar *description);