QCAD
Open Source 2D CAD
Loading...
Searching...
No Matches
RMainWindowProxy.h
Go to the documentation of this file.
1#ifndef RMAINWINDOWPROXY_H_
2#define RMAINWINDOWPROXY_H_
3
4class QObject;
5class QString;
6
8{
9public:
10 virtual ~RMainWindowProxy() {}
11
12 virtual void handleEnterKey(QObject* obj) = 0;
13 virtual bool handleTabKey(QObject* obj, bool backTab = false) = 0;
14 virtual bool handleOptionsShortcut(const QString& shortcut) = 0;
15};
16
17#endif
Definition RMainWindowProxy.h:8
virtual bool handleOptionsShortcut(const QString &shortcut)=0
virtual void handleEnterKey(QObject *obj)=0
virtual bool handleTabKey(QObject *obj, bool backTab=false)=0
virtual ~RMainWindowProxy()
Definition RMainWindowProxy.h:10