~ubuntu-branches/ubuntu/precise/gtkmm3.0/precise

« back to all changes in this revision

Viewing changes to gtk/gtkmm/private/textbuffer_p.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl
  • Date: 2011-06-17 00:12:44 UTC
  • Revision ID: james.westby@ubuntu.com-20110617001244-9hl5an15hiaaahi6
Tags: upstream-3.0.1
ImportĀ upstreamĀ versionĀ 3.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- c++ -*-
 
2
// Generated by gtkmmproc -- DO NOT MODIFY!
 
3
#ifndef _GTKMM_TEXTBUFFER_P_H
 
4
#define _GTKMM_TEXTBUFFER_P_H
 
5
 
 
6
 
 
7
#include <glibmm/private/object_p.h>
 
8
 
 
9
#include <glibmm/class.h>
 
10
 
 
11
namespace Gtk
 
12
{
 
13
 
 
14
class TextBuffer_Class : public Glib::Class
 
15
{
 
16
public:
 
17
#ifndef DOXYGEN_SHOULD_SKIP_THIS
 
18
  typedef TextBuffer CppObjectType;
 
19
  typedef GtkTextBuffer BaseObjectType;
 
20
  typedef GtkTextBufferClass BaseClassType;
 
21
  typedef Glib::Object_Class CppClassParent;
 
22
  typedef GObjectClass BaseClassParent;
 
23
 
 
24
  friend class TextBuffer;
 
25
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
 
26
 
 
27
  const Glib::Class& init();
 
28
 
 
29
 
 
30
  static void class_init_function(void* g_class, void* class_data);
 
31
 
 
32
  static Glib::ObjectBase* wrap_new(GObject*);
 
33
 
 
34
protected:
 
35
 
 
36
  //Callbacks (default signal handlers):
 
37
  //These will call the *_impl member methods, which will then call the existing default signal callbacks, if any.
 
38
  //You could prevent the original default signal handlers being called by overriding the *_impl method.
 
39
  static void insert_text_callback(GtkTextBuffer* self, GtkTextIter* p0, const gchar* p1, gint p2);
 
40
  static void insert_pixbuf_callback(GtkTextBuffer* self, GtkTextIter* p0, GdkPixbuf* p1);
 
41
  static void insert_child_anchor_callback(GtkTextBuffer* self, GtkTextIter* p0, GtkTextChildAnchor* p1);
 
42
  static void delete_range_callback(GtkTextBuffer* self, GtkTextIter* p0, GtkTextIter* p1);
 
43
  static void changed_callback(GtkTextBuffer* self);
 
44
  static void modified_changed_callback(GtkTextBuffer* self);
 
45
  static void mark_set_callback(GtkTextBuffer* self, const GtkTextIter* p0, GtkTextMark* p1);
 
46
  static void mark_deleted_callback(GtkTextBuffer* self, GtkTextMark* p0);
 
47
  static void apply_tag_callback(GtkTextBuffer* self, GtkTextTag* p0, const GtkTextIter* p1, const GtkTextIter* p2);
 
48
  static void remove_tag_callback(GtkTextBuffer* self, GtkTextTag* p0, const GtkTextIter* p1, const GtkTextIter* p2);
 
49
  static void begin_user_action_callback(GtkTextBuffer* self);
 
50
  static void end_user_action_callback(GtkTextBuffer* self);
 
51
  static void paste_done_callback(GtkTextBuffer* self, GtkClipboard* p0);
 
52
 
 
53
  //Callbacks (virtual functions):
 
54
};
 
55
 
 
56
 
 
57
} // namespace Gtk
 
58
 
 
59
 
 
60
#endif /* _GTKMM_TEXTBUFFER_P_H */
 
61