Scroom  0.14
gtk-helpers.cc File Reference
#include <boost/thread.hpp>
#include <scroom/assertions.hh>
#include <scroom/gtk-helpers.hh>
Include dependency graph for gtk-helpers.cc:

Namespaces

 Scroom
 
 Scroom::GtkHelpers
 

Functions

bool Scroom::GtkHelpers::on_ui_thread ()
 
GtkWindow * Scroom::GtkHelpers::get_parent_window (GtkWidget *widget)
 
std::ostream & operator<< (std::ostream &os, cairo_rectangle_int_t const &r)
 
std::ostream & operator<< (std::ostream &os, const GdkPoint &p)
 

Function Documentation

◆ operator<<() [1/2]

std::ostream& operator<< ( std::ostream &  os,
cairo_rectangle_int_t const &  r 
)
inline
30 {
31  return os << "cairo_rectangle_int_t(" << r.x << ", " << r.y << ", " << r.width << ", " << r.height << ")";
32 }

Referenced by std::operator<<().

Here is the caller graph for this function:

◆ operator<<() [2/2]

std::ostream& operator<< ( std::ostream &  os,
const GdkPoint &  p 
)
34 { return os << "GdkPoint(" << p.x << ", " << p.y << ")"; }