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

« back to all changes in this revision

Viewing changes to atk/atkvalue.c

  • Committer: Package Import Robot
  • Author(s): Luke Yelavich
  • Date: 2013-08-27 07:52:22 UTC
  • mfrom: (1.4.9) (11.2.12 saucy-proposed)
  • Revision ID: package-import@ubuntu.com-20130827075222-59k70z0310f06jbb
* New upstream release
* Update symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#include <string.h>
21
21
#include "atkvalue.h"
22
22
 
 
23
/**
 
24
 * SECTION:atkvalue
 
25
 * @Short_description: The ATK interface implemented by valuators and
 
26
 *  components which display or select a value from a bounded range of
 
27
 *  values.
 
28
 * @Title:AtkValue
 
29
 *
 
30
 * #AtkValue should be implemented for components which either display
 
31
 * a value from a bounded range, or which allow the user to specify a
 
32
 * value from a bounded range, or both.  For instance, most sliders
 
33
 * and range controls, as well as dials, should have #AtkObject
 
34
 * representations which implement #AtkValue on the component's
 
35
 * behalf.  #AtKValues may be read-only, in which case attempts to
 
36
 * alter the value return FALSE to indicate failure.
 
37
 */
 
38
 
23
39
GType
24
40
atk_value_get_type (void)
25
41
{