summaryrefslogtreecommitdiffstats
path: root/krita/ui/kis_cursor.h
diff options
context:
space:
mode:
Diffstat (limited to 'krita/ui/kis_cursor.h')
-rw-r--r--krita/ui/kis_cursor.h68
1 files changed, 34 insertions, 34 deletions
diff --git a/krita/ui/kis_cursor.h b/krita/ui/kis_cursor.h
index b4e7e344..69c5cbd5 100644
--- a/krita/ui/kis_cursor.h
+++ b/krita/ui/kis_cursor.h
@@ -22,7 +22,7 @@
#ifndef __kis_cursor_h__
#define __kis_cursor_h__
#include <koffice_export.h>
-class QCursor;
+class TQCursor;
class KRITACORE_EXPORT KisCursor
{
@@ -31,43 +31,43 @@ public:
KisCursor();
- // Predefined Qt cursors.
- static QCursor arrowCursor(); // standard arrow cursor
- static QCursor upArrowCursor(); // upwards arrow
- static QCursor crossCursor(); // crosshair
- static QCursor waitCursor(); // hourglass/watch
- static QCursor ibeamCursor(); // ibeam/text entry
- static QCursor sizeVerCursor(); // vertical resize
- static QCursor sizeHorCursor(); // horizontal resize
- static QCursor sizeBDiagCursor(); // diagonal resize (/)
- static QCursor sizeFDiagCursor(); // diagonal resize (\)
- static QCursor sizeAllCursor(); // all directions resize
- static QCursor blankCursor(); // blank/invisible cursor
- static QCursor splitVCursor(); // vertical splitting
- static QCursor splitHCursor(); // horziontal splitting
- static QCursor pointingHandCursor(); // a pointing hand
+ // Predefined TQt cursors.
+ static TQCursor arrowCursor(); // standard arrow cursor
+ static TQCursor upArrowCursor(); // upwards arrow
+ static TQCursor crossCursor(); // crosshair
+ static TQCursor waitCursor(); // hourglass/watch
+ static TQCursor ibeamCursor(); // ibeam/text entry
+ static TQCursor sizeVerCursor(); // vertical resize
+ static TQCursor sizeHorCursor(); // horizontal resize
+ static TQCursor sizeBDiagCursor(); // diagonal resize (/)
+ static TQCursor sizeFDiagCursor(); // diagonal resize (\)
+ static TQCursor sizeAllCursor(); // all directions resize
+ static TQCursor blankCursor(); // blank/invisible cursor
+ static TQCursor splitVCursor(); // vertical splitting
+ static TQCursor splitHCursor(); // horziontal splitting
+ static TQCursor pointingHandCursor(); // a pointing hand
// Existing custom KimageShop cursors. Use the 'load' function for all new cursors.
- static QCursor moveCursor(); // move tool cursor
- static QCursor penCursor(); // pen tool cursor
- static QCursor brushCursor(); // brush tool cursor
- static QCursor airbrushCursor(); // airbrush tool cursor
- static QCursor eraserCursor(); // eraser tool cursor
- static QCursor fillerCursor(); // filler tool cursor
- static QCursor pickerCursor(); // color picker cursor
- static QCursor pickerPlusCursor(); // color picker cursor
- static QCursor pickerMinusCursor(); // color picker cursor
- static QCursor colorChangerCursor(); // color changer tool cursor
- static QCursor selectCursor(); // select cursor
- static QCursor zoomCursor(); // zoom tool cursor
- static QCursor handCursor(); // hand tool cursor
- static QCursor openHandCursor(); // Pan tool cursor
- static QCursor closedHandCursor(); // Pan tool cursor
- static QCursor rotateCursor(); // Transform tool cursor
+ static TQCursor moveCursor(); // move tool cursor
+ static TQCursor penCursor(); // pen tool cursor
+ static TQCursor brushCursor(); // brush tool cursor
+ static TQCursor airbrushCursor(); // airbrush tool cursor
+ static TQCursor eraserCursor(); // eraser tool cursor
+ static TQCursor fillerCursor(); // filler tool cursor
+ static TQCursor pickerCursor(); // color picker cursor
+ static TQCursor pickerPlusCursor(); // color picker cursor
+ static TQCursor pickerMinusCursor(); // color picker cursor
+ static TQCursor colorChangerCursor(); // color changer tool cursor
+ static TQCursor selectCursor(); // select cursor
+ static TQCursor zoomCursor(); // zoom tool cursor
+ static TQCursor handCursor(); // hand tool cursor
+ static TQCursor openHandCursor(); // Pan tool cursor
+ static TQCursor closedHandCursor(); // Pan tool cursor
+ static TQCursor rotateCursor(); // Transform tool cursor
// Load a cursor from an image file. The image should have an alpha channel
// and will be converted to black and white on loading. Any format loadable by
- // QImage can be used.
- static QCursor load(const QString & imageFilename, int hotspotX = -1, int hotspotY = -1);
+ // TQImage can be used.
+ static TQCursor load(const TQString & imageFilename, int hotspotX = -1, int hotspotY = -1);
};
#endif // __kis_cursor_h__