~ubuntu-branches/ubuntu/vivid/ardour/vivid-proposed

« back to all changes in this revision

Viewing changes to libs/gtkmm2/atk/atkmm/private/editabletext_p.h

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler, Jaromír Mikeš, Felipe Sateler
  • Date: 2014-05-22 14:39:25 UTC
  • mfrom: (29 sid)
  • mto: This revision was merged to the branch mainline in revision 30.
  • Revision ID: package-import@ubuntu.com-20140522143925-vwqfo9287pmkrroe
Tags: 1:2.8.16+git20131003-3
* Team upload

[ Jaromír Mikeš ]
* Add -dbg package

[ Felipe Sateler ]
* Upload to experimental

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- c++ -*-
 
2
// Generated by gtkmmproc -- DO NOT MODIFY!
 
3
#ifndef _ATKMM_EDITABLETEXT_P_H
 
4
#define _ATKMM_EDITABLETEXT_P_H
 
5
 
 
6
#include <glibmm/private/interface_p.h>
 
7
 
 
8
namespace Atk
 
9
{
 
10
 
 
11
class EditableText_Class : public Glib::Interface_Class
 
12
{
 
13
public:
 
14
  typedef EditableText CppObjectType;
 
15
  typedef AtkEditableText BaseObjectType;
 
16
  typedef AtkEditableTextIface BaseClassType;
 
17
  typedef Glib::Interface_Class CppClassParent;
 
18
 
 
19
  friend class EditableText;
 
20
 
 
21
  const Glib::Interface_Class& init();
 
22
 
 
23
  static void iface_init_function(void* g_iface, void* iface_data);
 
24
 
 
25
  static Glib::ObjectBase* wrap_new(GObject*);
 
26
 
 
27
protected:
 
28
 
 
29
  //Callbacks (default signal handlers):
 
30
  //These will call the *_impl member methods, which will then call the existing default signal callbacks, if any.
 
31
  //You could prevent the original default signal handlers being called by overriding the *_impl method.
 
32
 
 
33
  //Callbacks (virtual functions):
 
34
  static gboolean set_run_attributes_vfunc_callback(AtkEditableText* self, AtkAttributeSet* attrib_set, gint start_offset, gint end_offset);
 
35
  static void set_text_contents_vfunc_callback(AtkEditableText* self, const gchar* string);
 
36
  static void insert_text_vfunc_callback(AtkEditableText* self, const gchar* string, gint length, gint* position);
 
37
  static void copy_text_vfunc_callback(AtkEditableText* self, gint start_pos, gint end_pos);
 
38
  static void cut_text_vfunc_callback(AtkEditableText* self, gint start_pos, gint end_pos);
 
39
  static void delete_text_vfunc_callback(AtkEditableText* self, gint start_pos, gint end_pos);
 
40
  static void paste_text_vfunc_callback(AtkEditableText* self, gint position);
 
41
};
 
42
 
 
43
 
 
44
} // namespace Atk
 
45
 
 
46
#endif /* _ATKMM_EDITABLETEXT_P_H */
 
47