1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/test/QQtOSDFormTest/framelessform.h
tianduanrui fdaed3c798 add QQt title bar
add QQtOSDFrame
2018-07-07 20:41:50 +08:00

24 lines
375 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#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