mirror of
https://github.com/YACReader/yacreader
synced 2025-05-25 09:50:33 -04:00
19 lines
330 B
C++
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
|