xref: /OK3568_Linux_fs/app/forlinx/flapp/src/libs/ui/iwidgetbridge.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 /* 窗口间通信接口
2   */
3 #ifndef IWIDGETBRIDGE_H
4 #define IWIDGETBRIDGE_H
5 #include "ui_global.h"
6 class UI_LIBRARY IWidgetBridge
7 {
8 public:
9     IWidgetBridge();
10     /*隐藏标题栏*/
11     virtual void setTitleBarVisible(bool bShow) =0;
12     /*显示窗口插件*/
13     virtual void showWidgt(const QString &id) =0;
14 };
15 
16 #endif // IWIDGETBRIDGE_H
17