Install ardour as a binary, a script and a set of shared
[ardour.git] / libs / gtkmm2 / gtk / gtkmm / textchildanchor.cc
1 // Generated by gtkmmproc -- DO NOT MODIFY!
2
3 #include <gtkmm/textchildanchor.h>
4 #include <gtkmm/private/textchildanchor_p.h>
5
6 // -*- c++ -*-
7 /* $Id$ */
8
9 /* 
10  *
11  * Copyright 1998-2002 The gtkmm Development Team
12  *
13  * This library is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU Library General Public
15  * License as published by the Free Software Foundation; either
16  * version 2 of the License, or (at your option) any later version.
17  *
18  * This library is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21  * Library General Public License for more details.
22  *
23  * You should have received a copy of the GNU Library General Public
24  * License along with this library; if not, write to the Free
25  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26  */
27
28 #include <gtk/gtktextchild.h>
29
30 namespace
31 {
32 } // anonymous namespace
33
34
35 namespace Glib
36 {
37
38 Glib::RefPtr<Gtk::TextChildAnchor> wrap(GtkTextChildAnchor* object, bool take_copy)
39 {
40   return Glib::RefPtr<Gtk::TextChildAnchor>( dynamic_cast<Gtk::TextChildAnchor*> (Glib::wrap_auto ((GObject*)(object), take_copy)) );
41   //We use dynamic_cast<> in case of multiple inheritance.
42 }
43
44 } /* namespace Glib */
45
46
47 namespace Gtk
48 {
49
50
51 /* The *_Class implementation: */
52
53 const Glib::Class& TextChildAnchor_Class::init()
54 {
55   if(!gtype_) // create the GType if necessary
56   {
57     // Glib::Class has to know the class init function to clone custom types.
58     class_init_func_ = &TextChildAnchor_Class::class_init_function;
59
60     // This is actually just optimized away, apparently with no harm.
61     // Make sure that the parent type has been created.
62     //CppClassParent::CppObjectType::get_type();
63
64     // Create the wrapper type, with the same class/instance size as the base type.
65     register_derived_type(gtk_text_child_anchor_get_type());
66
67     // Add derived versions of interfaces, if the C type implements any interfaces:
68   }
69
70   return *this;
71 }
72
73 void TextChildAnchor_Class::class_init_function(void* g_class, void* class_data)
74 {
75   BaseClassType *const klass = static_cast<BaseClassType*>(g_class);
76   CppClassParent::class_init_function(klass, class_data);
77
78 }
79
80
81 Glib::ObjectBase* TextChildAnchor_Class::wrap_new(GObject* object)
82 {
83   return new TextChildAnchor((GtkTextChildAnchor*)object);
84 }
85
86
87 /* The implementation: */
88
89 GtkTextChildAnchor* TextChildAnchor::gobj_copy()
90 {
91   reference();
92   return gobj();
93 }
94
95 TextChildAnchor::TextChildAnchor(const Glib::ConstructParams& construct_params)
96 :
97   Glib::Object(construct_params)
98 {}
99
100 TextChildAnchor::TextChildAnchor(GtkTextChildAnchor* castitem)
101 :
102   Glib::Object((GObject*)(castitem))
103 {}
104
105 TextChildAnchor::~TextChildAnchor()
106 {}
107
108
109 TextChildAnchor::CppClassType TextChildAnchor::textchildanchor_class_; // initialize static member
110
111 GType TextChildAnchor::get_type()
112 {
113   return textchildanchor_class_.init().get_type();
114 }
115
116 GType TextChildAnchor::get_base_type()
117 {
118   return gtk_text_child_anchor_get_type();
119 }
120
121
122 TextChildAnchor::TextChildAnchor()
123 :
124   Glib::ObjectBase(0), //Mark this class as gtkmmproc-generated, rather than a custom class, to allow vfunc optimisations.
125   Glib::Object(Glib::ConstructParams(textchildanchor_class_.init()))
126 {
127   }
128
129 Glib::RefPtr<TextChildAnchor> TextChildAnchor::create()
130 {
131   return Glib::RefPtr<TextChildAnchor>( new TextChildAnchor() );
132 }
133 Glib::ListHandle<Widget*> TextChildAnchor::get_widgets()
134 {
135   return Glib::ListHandle<Widget*>(gtk_text_child_anchor_get_widgets(gobj()), Glib::OWNERSHIP_SHALLOW);
136 }
137
138 Glib::ListHandle<const Widget*> TextChildAnchor::get_widgets() const
139 {
140   return Glib::ListHandle<const Widget*>(gtk_text_child_anchor_get_widgets(const_cast<GtkTextChildAnchor*>(gobj())), Glib::OWNERSHIP_SHALLOW);
141 }
142
143 bool TextChildAnchor::get_deleted() const
144 {
145   return gtk_text_child_anchor_get_deleted(const_cast<GtkTextChildAnchor*>(gobj()));
146 }
147
148
149 } // namespace Gtk
150
151