Files
SilentDragonXLite/src/fillediconlabel.h
2023-02-20 15:39:41 +01:00

24 lines
432 B
C++

// Copyright 2019-2023 The Hush developers
// Released under the GPLv3
#ifndef FILLEDICONLABEL_H
#define FILLEDICONLABEL_H
#include "precompiled.h"
class FilledIconLabel : public QLabel
{
Q_OBJECT
public:
explicit FilledIconLabel(QWidget *parent = 0);
void setBasePixmap(QPixmap pm);
public slots:
void resizeEvent(QResizeEvent *);
private:
QPixmap basePm;
};
#endif // FILLEDICONLABEL_H