74 QStringList cursorShapeNames()
const;
75 QMap<int, QIcon> cursorShapeIcons()
const;
76 QString cursorToShapeName(
const QCursor &cursor)
const;
77 QIcon cursorToShapeIcon(
const QCursor &cursor)
const;
78 int cursorToValue(
const QCursor &cursor)
const;
80 QCursor valueToCursor(
int value)
const;
83 void appendCursor(Qt::CursorShape shape,
const QString &name,
const QIcon &icon);
84 QStringList m_cursorNames;
85 QMap<int, QIcon> m_cursorIcons;
86 QMap<int, Qt::CursorShape> m_valueToCursorShape;
87 QMap<Qt::CursorShape, int> m_cursorShapeToValue;
135 QKeySequence keySequence()
const;
136 bool eventFilter(QObject *o, QEvent *e);
138 void setKeySequence(
const QKeySequence &sequence);
140 void keySequenceChanged(
const QKeySequence &sequence);
142 void focusInEvent(QFocusEvent *e);
143 void focusOutEvent(QFocusEvent *e);
144 void keyPressEvent(QKeyEvent *e);
145 void keyReleaseEvent(QKeyEvent *e);
146 void paintEvent(QPaintEvent *);
147 bool event(QEvent *e);
149 void slotClearShortcut();
151 void handleKeyEvent(QKeyEvent *e);
152 int translateModifiers(Qt::KeyboardModifiers state,
const QString &text)
const;
155 QKeySequence m_keySequence;
156 QLineEdit *m_lineEdit;