diff options
Diffstat (limited to 'dw/fltkmisc.hh')
-rw-r--r-- | dw/fltkmisc.hh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/dw/fltkmisc.hh b/dw/fltkmisc.hh new file mode 100644 index 00000000..fc004318 --- /dev/null +++ b/dw/fltkmisc.hh @@ -0,0 +1,22 @@ +#ifndef __FLTKMISC_HH__ +#define __FLTKMISC_HH__ + +namespace dw { +namespace fltk { + +/** + * \brief Miscellaneous FLTK stuff. + */ +namespace misc { + +int screenWidth (); +int screenHeight (); + +void warpPointer (int x, int y); + +} // namespace misc +} // namespace fltk +} // namespace dw + + +#endif // __FLTKMISC_HH__ |