first commit
This commit is contained in:
22
project/fm_viewer/ui/fm_logo_widget.h
Normal file
22
project/fm_viewer/ui/fm_logo_widget.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#ifndef FM_LOGO_WIDGET_H
|
||||
#define FM_LOGO_WIDGET_H
|
||||
|
||||
#include <QWidget>
|
||||
#include <QLabel>
|
||||
|
||||
class FMLogoWidget : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit FMLogoWidget(bool bMain,QWidget *parent = nullptr);
|
||||
void setStyle(bool front);
|
||||
private:
|
||||
bool _bMain;
|
||||
void paintEvent(QPaintEvent *pe);
|
||||
QLabel* _logo;
|
||||
signals:
|
||||
|
||||
public slots:
|
||||
};
|
||||
|
||||
#endif // FM_LOGO_WIDGET_H
|
||||
Reference in New Issue
Block a user