📄 qaccessiblemenu.h
字号:
#ifndef QACCESSIBLEMENU_H#define QACCESSIBLEMENU_H#include "qaccessiblewidget.h"class QPopupMenu;class QMenuBar;class QAccessiblePopup : public QAccessibleWidget{public: QAccessiblePopup( QObject *o ); int childCount() const; QRESULT queryChild( int control, QAccessibleInterface ** ) const; QRect rect( int control ) const; int controlAt( int x, int y ) const; int navigate( NavDirection direction, int control ) const; QString text( Text t, int control ) const; Role role( int control ) const; State state( int control ) const; bool doDefaultAction( int control ); bool setFocus( int control );protected: QPopupMenu *popupMenu() const;};class QAccessibleMenuBar : public QAccessibleWidget{public: QAccessibleMenuBar( QObject *o ); int childCount() const; QRESULT queryChild( int control, QAccessibleInterface ** ) const; QRect rect( int control ) const; int controlAt( int x, int y ) const; int navigate( NavDirection direction, int control ) const; QString text( Text t, int control ) const; Role role( int control ) const; State state( int control ) const; bool doDefaultAction( int control ); bool setFocus( int control );protected: QMenuBar *menuBar() const;};#endif // QACCESSIBLEMENU_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -