mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
fdaed3c798
add QQtOSDFrame
24 lines
375 B
C++
24 lines
375 B
C++
#ifndef FRAMELESSFORM_H
|
||
#define FRAMELESSFORM_H
|
||
|
||
#include <QWidget>
|
||
|
||
namespace Ui {
|
||
class FramelessForm;
|
||
}
|
||
|
||
//测试framelesshelper,即将废弃。
|
||
class FramelessForm : public QWidget
|
||
{
|
||
Q_OBJECT
|
||
|
||
public:
|
||
explicit FramelessForm ( QWidget* parent = 0 );
|
||
~FramelessForm();
|
||
|
||
private:
|
||
Ui::FramelessForm* ui;
|
||
};
|
||
|
||
#endif // FRAMELESSFORM_H
|