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

« back to all changes in this revision

Viewing changes to gdk/gdkmm/event.cc

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2012-09-28 09:25:06 UTC
  • mfrom: (1.1.14)
  • Revision ID: package-import@ubuntu.com-20120928092506-9h63ais5o750a8sk
Tags: 3.5.13-0ubuntu1
* New upstream release
* debian/control:
  - Bump build-depends on libglibmm-2.4-dev, libgtk-3-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
134
134
 
135
135
void Event::put()
136
136
{
137
 
  gdk_event_put(gobj()); 
 
137
  gdk_event_put(gobj());
138
138
}
139
139
 
140
140
bool Event::events_pending()
170
170
 
171
171
void Event::set_show_events(bool show_events)
172
172
{
173
 
gdk_set_show_events(static_cast<int>(show_events));
 
173
  gdk_set_show_events(static_cast<int>(show_events));
174
174
}
175
175
 
176
176
 
182
182
 
183
183
Glib::RefPtr<Screen> Event::get_screen()
184
184
{
185
 
 
186
185
  Glib::RefPtr<Screen> retvalue = Glib::wrap(gdk_event_get_screen(gobj()));
187
186
  if(retvalue)
188
187
    retvalue->reference(); //The function does not do a ref for us.
189
188
  return retvalue;
190
 
 
191
189
}
192
190
 
193
191
Glib::RefPtr<const Screen> Event::get_screen() const