mirror of
https://github.com/AxioDL/boo.git
synced 2025-12-14 07:36:26 +00:00
Added cursor change method
This commit is contained in:
20
lib/x11/XlibCommon.hpp
Normal file
20
lib/x11/XlibCommon.hpp
Normal file
@@ -0,0 +1,20 @@
|
||||
#ifndef BOO_XLIBCOMMON_HPP
|
||||
#define BOO_XLIBCOMMON_HPP
|
||||
|
||||
#include <X11/Xlib.h>
|
||||
|
||||
namespace boo
|
||||
{
|
||||
|
||||
struct XlibCursors
|
||||
{
|
||||
Cursor m_pointer;
|
||||
Cursor m_hArrow;
|
||||
Cursor m_vArrow;
|
||||
Cursor m_wait;
|
||||
};
|
||||
extern XlibCursors X_CURSORS;
|
||||
|
||||
}
|
||||
|
||||
#endif // BOO_XLIBCOMMON_HPP
|
||||
Reference in New Issue
Block a user