Files
SilentDragonXLite/src/fillediconlabel.h
2022-01-13 22:42:18 -05:00

24 lines
432 B
C++

// Copyright 2019-2022 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