added Xcursor unpacker; added untested incomplete CursorFX parser
[xcurtheme.git] / src / xcr / xcrthemefx.h
blob6dd2a58e7dc5c207e9723382433ea39563f193c3
1 /* coded by Ketmar // Vampire Avalon (psyc://ketmar.no-ip.org/~Ketmar)
3 * This program is free software. It comes without any warranty, to
4 * the extent permitted by applicable law. You can redistribute it
5 * and/or modify it under the terms of the Do What The Fuck You Want
6 * To Public License, Version 2, as published by Sam Hocevar. See
7 * http://sam.zoy.org/wtfpl/COPYING for more details.
8 */
9 #ifndef XCRTHEMEFX_H
10 #define XCRTHEMEFX_H
12 #include <QtCore>
13 #include <QCursor>
14 #include <QPixmap>
16 #include "xcrimg.h"
17 #include "xcrtheme.h"
20 class XCursorThemeFX : public XCursorTheme {
21 public:
22 XCursorThemeFX (const QString &aFileName);
24 protected:
25 bool parseCursorFXTheme (const QString &aFileName);
29 #endif