00001 /*************************************************************************** 00002 MCursor.h - description 00003 ------------------- 00004 begin : Thu Dec 30 1999 00005 copyright : (C) 1999 by Jurrien Loonstra 00006 email : j.h.loonstra@st.hanze.nl 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 #ifndef MCURSOR_H 00018 #define MCURSOR_H 00019 00020 /*#include <X11/Xlib.h> 00021 #include <X11/xpm.h>*/ 00022 00023 #include <qcursor.h> 00024 00025 class MCursor { 00026 public: 00027 ~MCursor(); 00028 static const int SEP_MASK = 0; 00029 static const int OWN_MASK = 1; 00030 void load(const char *name, int masked); 00031 private: 00032 QCursor *cursor; 00033 00034 friend class UI; 00035 }; 00036 00037 #endif
1.4.2