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

« back to all changes in this revision

Viewing changes to gtk/gtkmm/menubar.cc

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2012-03-01 23:42:36 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20120301234236-12w6m0hkomhi7h53
Tags: 3.3.16-0ubuntu1
* New upstream version
* debian/control.in: updated the glib requirement

Show diffs side-by-side

added added

removed removed

Lines of Context:
164
164
 
165
165
void MenuBar::set_pack_direction(PackDirection pack_dir)
166
166
{
167
 
gtk_menu_bar_set_pack_direction(gobj(), ((GtkPackDirection)(pack_dir))); 
 
167
  gtk_menu_bar_set_pack_direction(gobj(), ((GtkPackDirection)(pack_dir))); 
168
168
}
169
169
 
170
170
PackDirection MenuBar::get_child_pack_direction() const
174
174
 
175
175
void MenuBar::set_child_pack_direction(PackDirection child_pack_dir)
176
176
{
177
 
gtk_menu_bar_set_child_pack_direction(gobj(), ((GtkPackDirection)(child_pack_dir))); 
 
177
  gtk_menu_bar_set_child_pack_direction(gobj(), ((GtkPackDirection)(child_pack_dir))); 
178
178
}
179
179
 
180
180
 
 
181
#ifndef GTKMM_DISABLE_DEPRECATED
 
182
 
181
183
#ifdef GLIBMM_PROPERTIES_ENABLED
182
184
Glib::PropertyProxy< PackDirection > MenuBar::property_pack_direction() 
183
185
{
184
186
  return Glib::PropertyProxy< PackDirection >(this, "pack-direction");
185
187
}
 
188
#endif // GTKMM_DISABLE_DEPRECATED
 
189
 
186
190
#endif //GLIBMM_PROPERTIES_ENABLED
187
191
 
188
192
#ifdef GLIBMM_PROPERTIES_ENABLED
192
196
}
193
197
#endif //GLIBMM_PROPERTIES_ENABLED
194
198
 
 
199
#ifndef GTKMM_DISABLE_DEPRECATED
 
200
 
195
201
#ifdef GLIBMM_PROPERTIES_ENABLED
196
202
Glib::PropertyProxy< PackDirection > MenuBar::property_child_pack_direction() 
197
203
{
198
204
  return Glib::PropertyProxy< PackDirection >(this, "child-pack-direction");
199
205
}
 
206
#endif // GTKMM_DISABLE_DEPRECATED
 
207
 
200
208
#endif //GLIBMM_PROPERTIES_ENABLED
201
209
 
202
210
#ifdef GLIBMM_PROPERTIES_ENABLED