File: MCursor.h

package info (click to toggle)
xbill 2.0-9
  • links: PTS
  • area: main
  • in suites: slink
  • size: 528 kB
  • ctags: 339
  • sloc: cpp: 1,803; makefile: 38; sh: 21
file content (15 lines) | stat: -rw-r--r-- 246 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef X11_MCURSOR_H
#define X11_MCURSOR_H

#include <X11/Xlib.h>
#include <X11/xpm.h>

class MCursor {
public:
	static const int SEP_MASK = 0;
	static const int OWN_MASK = 1;
	Pixmap cursor;
	void load(const char *name, int masked);
};

#endif