mirror of
https://github.com/YACReader/yacreader
synced 2025-07-18 21:14:33 -04:00
Add what's new dialog
This commit is contained in:
18
custom_widgets/rounded_corners_dialog.h
Normal file
18
custom_widgets/rounded_corners_dialog.h
Normal file
@ -0,0 +1,18 @@
|
||||
#ifndef ROUNDEDCORNERSDIALOG_H
|
||||
#define ROUNDEDCORNERSDIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
namespace YACReader {
|
||||
class RoundedCornersDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit RoundedCornersDialog(QWidget *parent = nullptr);
|
||||
|
||||
protected:
|
||||
void paintEvent(QPaintEvent *) override;
|
||||
};
|
||||
}
|
||||
|
||||
#endif // ROUNDEDCORNERSDIALOG_H
|
Reference in New Issue
Block a user