File: widgetpath.cc

package info (click to toggle)
gtkmm3.0 3.14.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 159,024 kB
  • ctags: 22,555
  • sloc: xml: 107,819; sh: 11,425; cpp: 7,074; makefile: 241; perl: 235
file content (251 lines) | stat: -rw-r--r-- 6,312 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
// Generated by gmmproc 2.42.0 -- DO NOT MODIFY!

#undef GTK_DISABLE_DEPRECATED
#define GDK_DISABLE_DEPRECATION_WARNINGS 1
 

#include <glibmm.h>

#include <gtkmm/widgetpath.h>
#include <gtkmm/private/widgetpath_p.h>


/* Copyright 2010 The gtkmm Development Team
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include <gtk/gtk.h>

namespace Gtk
{

}//namespace Gtk


namespace
{
} // anonymous namespace


namespace Glib
{

Gtk::WidgetPath wrap(GtkWidgetPath* object, bool take_copy)
{
  return Gtk::WidgetPath(object, take_copy);
}

} // namespace Glib


namespace Gtk
{


// static
GType WidgetPath::get_type()
{
  return gtk_widget_path_get_type();
}

WidgetPath::WidgetPath()
:
  gobject_ (gtk_widget_path_new())
{}

WidgetPath::WidgetPath(const WidgetPath& other)
:
  gobject_ ((other.gobject_) ? gtk_widget_path_copy(other.gobject_) : 0)
{}

WidgetPath::WidgetPath(GtkWidgetPath* gobject, bool make_a_copy)
:
  // For BoxedType wrappers, make_a_copy is true by default.  The static
  // BoxedType wrappers must always take a copy, thus make_a_copy = true
  // ensures identical behaviour if the default argument is used.
  gobject_ ((make_a_copy && gobject) ? gtk_widget_path_copy(gobject) : gobject)
{}

WidgetPath& WidgetPath::operator=(const WidgetPath& other)
{
  WidgetPath temp (other);
  swap(temp);
  return *this;
}

WidgetPath::~WidgetPath()
{
  if(gobject_)
    gtk_widget_path_free(gobject_);
}

void WidgetPath::swap(WidgetPath& other)
{
  GtkWidgetPath *const temp = gobject_;
  gobject_ = other.gobject_;
  other.gobject_ = temp;
}

GtkWidgetPath* WidgetPath::gobj_copy() const
{
  return gtk_widget_path_copy(gobject_);
}


Glib::ustring WidgetPath::to_string() const
{
  return Glib::convert_return_gchar_ptr_to_ustring(gtk_widget_path_to_string(const_cast<GtkWidgetPath*>(gobj())));
}

int WidgetPath::path_length() const
{
  return gtk_widget_path_length(const_cast<GtkWidgetPath*>(gobj()));
}

int WidgetPath::path_append_type(GType type)
{
  return gtk_widget_path_append_type(gobj(), type);
}

void WidgetPath::prepend_type(GType type)
{
  gtk_widget_path_prepend_type(gobj(), type);
}

GType WidgetPath::iter_get_object_type(int pos) const
{
  return gtk_widget_path_iter_get_object_type(const_cast<GtkWidgetPath*>(gobj()), pos);
}

void WidgetPath::iter_set_object_type(int pos, GType type)
{
  gtk_widget_path_iter_set_object_type(gobj(), pos, type);
}

Glib::ustring WidgetPath::iter_get_name(int pos) const
{
  return Glib::convert_const_gchar_ptr_to_ustring(gtk_widget_path_iter_get_name(const_cast<GtkWidgetPath*>(gobj()), pos));
}

void WidgetPath::iter_set_name(int pos, const Glib::ustring& name)
{
  gtk_widget_path_iter_set_name(gobj(), pos, name.c_str());
}

bool WidgetPath::iter_has_name(int pos, const Glib::ustring& name) const
{
  return gtk_widget_path_iter_has_name(const_cast<GtkWidgetPath*>(gobj()), pos, name.c_str());
}

WidgetPath WidgetPath::iter_get_siblings(int pos) const
{
  return Glib::wrap(const_cast<GtkWidgetPath*>(gtk_widget_path_iter_get_siblings(const_cast<GtkWidgetPath*>(gobj()), pos)), true);
}

guint WidgetPath::get_sibling_index(int pos)
{
  return gtk_widget_path_iter_get_sibling_index(gobj(), pos);
}

void WidgetPath::iter_add_class(int pos, const Glib::ustring& name)
{
  gtk_widget_path_iter_add_class(gobj(), pos, name.c_str());
}

void WidgetPath::iter_remove_class(int pos, const Glib::ustring& name)
{
  gtk_widget_path_iter_remove_class(gobj(), pos, name.c_str());
}

void WidgetPath::iter_clear_classes(int pos)
{
  gtk_widget_path_iter_clear_classes(gobj(), pos);
}

std::vector<Glib::ustring> WidgetPath::iter_list_classes(int pos) const
{
  return Glib::SListHandler<Glib::ustring>::slist_to_vector(gtk_widget_path_iter_list_classes(const_cast<GtkWidgetPath*>(gobj()), pos), Glib::OWNERSHIP_SHALLOW);
}

bool WidgetPath::iter_has_class(int pos, const Glib::ustring& name) const
{
  return gtk_widget_path_iter_has_class(const_cast<GtkWidgetPath*>(gobj()), pos, name.c_str());
}

#ifndef GTKMM_DISABLE_DEPRECATED

void WidgetPath::iter_add_region(int pos, const Glib::ustring& name, RegionFlags flags)
{
  gtk_widget_path_iter_add_region(gobj(), pos, name.c_str(), ((GtkRegionFlags)(flags)));
}

#endif // GTKMM_DISABLE_DEPRECATED

#ifndef GTKMM_DISABLE_DEPRECATED

void WidgetPath::iter_remove_region(int pos, const Glib::ustring& name)
{
  gtk_widget_path_iter_remove_region(gobj(), pos, name.c_str());
}

#endif // GTKMM_DISABLE_DEPRECATED

#ifndef GTKMM_DISABLE_DEPRECATED

void WidgetPath::iter_clear_regions(int pos)
{
  gtk_widget_path_iter_clear_regions(gobj(), pos);
}

#endif // GTKMM_DISABLE_DEPRECATED

#ifndef GTKMM_DISABLE_DEPRECATED

std::vector<Glib::ustring> WidgetPath::iter_list_regions(int pos) const
{
  return Glib::SListHandler<Glib::ustring>::slist_to_vector(gtk_widget_path_iter_list_regions(const_cast<GtkWidgetPath*>(gobj()), pos), Glib::OWNERSHIP_SHALLOW);
}

#endif // GTKMM_DISABLE_DEPRECATED

#ifndef GTKMM_DISABLE_DEPRECATED

bool WidgetPath::iter_has_region(int pos, const Glib::ustring& name, RegionFlags& flags) const
{
  return gtk_widget_path_iter_has_region(const_cast<GtkWidgetPath*>(gobj()), pos, name.c_str(), ((GtkRegionFlags*) &(flags)));
}

#endif // GTKMM_DISABLE_DEPRECATED

GType WidgetPath::get_object_type() const
{
  return gtk_widget_path_get_object_type(const_cast<GtkWidgetPath*>(gobj()));
}

bool WidgetPath::is_type(GType type) const
{
  return gtk_widget_path_is_type(const_cast<GtkWidgetPath*>(gobj()), type);
}

bool WidgetPath::has_parent(GType type) const
{
  return gtk_widget_path_has_parent(const_cast<GtkWidgetPath*>(gobj()), type);
}


} // namespace Gtk