KDEUI
kcursor.h
Go to the documentation of this file.
00001 /* This file is part of the KDE libraries 00002 Copyright (C) 1998 Kurt Granroth (granroth@kde.org) 00003 2000 Carsten Pfeiffer <pfeiffer@kde.org> 00004 00005 This library is free software; you can redistribute it and/or 00006 modify it under the terms of the GNU Library General Public 00007 License version 2 as published by the Free Software Foundation. 00008 00009 This library is distributed in the hope that it will be useful, 00010 but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 Library General Public License for more details. 00013 00014 You should have received a copy of the GNU Library General Public License 00015 along with this library; see the file COPYING.LIB. If not, write to 00016 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00017 Boston, MA 02110-1301, USA. 00018 */ 00019 00020 #ifndef KCURSOR_H 00021 #define KCURSOR_H 00022 00023 #include <kdeui_export.h> 00024 #include <QtGui/QCursor> 00025 00026 class QEvent; 00027 class QWidget; 00028 00036 class KDEUI_EXPORT KCursor : public QCursor 00037 { 00038 public: 00055 explicit KCursor( const QString & name, Qt::CursorShape fallback = Qt::ArrowCursor ); 00056 00060 KCursor( const QCursor & cursor ); 00061 00066 KCursor & operator = ( const KCursor & cursor ); 00067 00090 static void setAutoHideCursor( QWidget *w, bool enable, 00091 bool customEventFilter = false ); 00092 00099 static void setHideCursorDelay( int ms ); 00100 00106 static int hideCursorDelay(); 00107 00137 static void autoHideEventFilter( QObject *, QEvent * ); 00138 00139 private: 00140 class Private; 00141 Private* const d; 00142 }; 00143 00144 00145 #endif // _KCURSOR_H
KDE 4.6 API Reference