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

« back to all changes in this revision

Viewing changes to atk/atkdocument.h

  • 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:
46
46
#endif
47
47
typedef struct _AtkDocumentIface AtkDocumentIface;
48
48
 
 
49
/**
 
50
 * AtkDocumentIface:
 
51
 * @get_document_locale: gets locale. This virtual function is
 
52
 * deprecated since 2.7.90 and it should not be overriden.
 
53
 */
49
54
struct _AtkDocumentIface
50
55
{
51
56
  GTypeInterface parent;
59
64
  gboolean              ( *set_document_attribute) (AtkDocument         *document,
60
65
                                                    const gchar         *attribute_name,
61
66
                                                    const gchar         *attribute_value);
62
 
  
63
 
  AtkFunction pad1;
64
 
  AtkFunction pad2;
65
 
  AtkFunction pad3;
66
 
  AtkFunction pad4;
67
67
};
68
68
 
69
69
GType  atk_document_get_type             (void);
70
70
 
71
71
const gchar*          atk_document_get_document_type (AtkDocument   *document);
72
72
gpointer atk_document_get_document (AtkDocument   *document);
73
 
#ifndef ATK_DISABLE_DEPRECATED
 
73
 
74
74
G_DEPRECATED
75
75
const gchar*          atk_document_get_locale (AtkDocument *document);
76
 
#endif /* ATK_DISABLE_DEPRECATED */
 
76
 
77
77
AtkAttributeSet*      atk_document_get_attributes (AtkDocument *document);
78
78
const gchar*          atk_document_get_attribute_value (AtkDocument *document,
79
79
                                                        const gchar *attribute_name);