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

« back to all changes in this revision

Viewing changes to gtk/gtkmm/actiongroup.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:
382
382
 
383
383
void ActionGroup::set_sensitive(bool sensitive)
384
384
{
385
 
gtk_action_group_set_sensitive(gobj(), static_cast<int>(sensitive)); 
 
385
  gtk_action_group_set_sensitive(gobj(), static_cast<int>(sensitive)); 
386
386
}
387
387
 
388
388
bool ActionGroup::get_visible() const
392
392
 
393
393
void ActionGroup::set_visible(bool visible)
394
394
{
395
 
gtk_action_group_set_visible(gobj(), static_cast<int>(visible)); 
 
395
  gtk_action_group_set_visible(gobj(), static_cast<int>(visible)); 
396
396
}
397
397
 
398
398
Glib::RefPtr<Action> ActionGroup::get_action(const Glib::ustring& action_name)
422
422
 
423
423
void ActionGroup::remove(const Glib::RefPtr<Action>& action)
424
424
{
425
 
gtk_action_group_remove_action(gobj(), Glib::unwrap(action)); 
 
425
  gtk_action_group_remove_action(gobj(), Glib::unwrap(action)); 
426
426
}
427
427
 
428
428
Glib::ustring ActionGroup::translate_string(const Glib::ustring& str) const
455
455
}
456
456
 
457
457
 
 
458
#ifndef GTKMM_DISABLE_DEPRECATED
 
459
 
458
460
#ifdef GLIBMM_PROPERTIES_ENABLED
459
461
Glib::PropertyProxy_ReadOnly< Glib::ustring > ActionGroup::property_name() const
460
462
{
461
463
  return Glib::PropertyProxy_ReadOnly< Glib::ustring >(this, "name");
462
464
}
 
465
#endif // GTKMM_DISABLE_DEPRECATED
 
466
 
463
467
#endif //GLIBMM_PROPERTIES_ENABLED
464
468
 
 
469
#ifndef GTKMM_DISABLE_DEPRECATED
 
470
 
465
471
#ifdef GLIBMM_PROPERTIES_ENABLED
466
472
Glib::PropertyProxy< bool > ActionGroup::property_sensitive() 
467
473
{
468
474
  return Glib::PropertyProxy< bool >(this, "sensitive");
469
475
}
 
476
#endif // GTKMM_DISABLE_DEPRECATED
 
477
 
470
478
#endif //GLIBMM_PROPERTIES_ENABLED
471
479
 
472
480
#ifdef GLIBMM_PROPERTIES_ENABLED
476
484
}
477
485
#endif //GLIBMM_PROPERTIES_ENABLED
478
486
 
 
487
#ifndef GTKMM_DISABLE_DEPRECATED
 
488
 
479
489
#ifdef GLIBMM_PROPERTIES_ENABLED
480
490
Glib::PropertyProxy< bool > ActionGroup::property_visible() 
481
491
{
482
492
  return Glib::PropertyProxy< bool >(this, "visible");
483
493
}
 
494
#endif // GTKMM_DISABLE_DEPRECATED
 
495
 
484
496
#endif //GLIBMM_PROPERTIES_ENABLED
485
497
 
486
498
#ifdef GLIBMM_PROPERTIES_ENABLED