You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tqt3/plugins/src/accessible/widgets/qaccessiblemenu.h

56 lines
1.3 KiB

#ifndef TQACCESSIBLEMENU_H
#define TQACCESSIBLEMENU_H
#include "qaccessiblewidget.h"
class TQPopupMenu;
class TQMenuBar;
class TQAccessiblePopup : public TQAccessibleWidget
{
public:
TQAccessiblePopup( TQObject *o );
int childCount() const;
TQRESULT queryChild( int control, TQAccessibleInterface ** ) const;
TQRect rect( int control ) const;
int controlAt( int x, int y ) const;
int navigate( NavDirection direction, int control ) const;
TQString 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:
TQPopupMenu *popupMenu() const;
};
class TQAccessibleMenuBar : public TQAccessibleWidget
{
public:
TQAccessibleMenuBar( TQObject *o );
int childCount() const;
TQRESULT queryChild( int control, TQAccessibleInterface ** ) const;
TQRect rect( int control ) const;
int controlAt( int x, int y ) const;
int navigate( NavDirection direction, int control ) const;
TQString 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:
TQMenuBar *menuBar() const;
};
#endif // TQACCESSIBLEMENU_H