00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef __CAIROMM_FONTFACE_H
00019 #define __CAIROMM_FONTFACE_H
00020
00021 #include <cairomm/enums.h>
00022 #include <cairo/cairo.h>
00023
00024
00025 namespace Cairo
00026 {
00027
00032 class FontFace
00033 {
00034 protected:
00035
00036
00037
00038 public:
00039
00044 explicit FontFace(cairo_font_face_t* cobject, bool has_reference = false);
00045
00046
00047 virtual ~FontFace();
00048
00049
00050
00051
00052
00053
00054
00055
00056 typedef cairo_font_face_t cobject;
00057 inline cobject* cobj() { return m_cobject; }
00058 inline const cobject* cobj() const { return m_cobject; }
00059
00060 #ifndef DOXYGEN_IGNORE_THIS
00061
00062 inline ErrorStatus get_status() const
00063 { return cairo_font_face_status(const_cast<cairo_font_face_t*>(cobj())); }
00064 #endif //DOXYGEN_IGNORE_THIS
00065
00066 void reference() const;
00067 void unreference() const;
00068
00069 protected:
00070
00071 cobject* m_cobject;
00072 };
00073
00074 }
00075
00076 #endif //__CAIROMM_FONTFACE_H
00077