yacreader/custom_widgets/rounded_corners_dialog.h
Luis Ángel San Martín 58fdf0af23 Add what's new dialog
2021-01-21 21:39:22 +01:00

19 lines
330 B
C++

#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