1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-23 10:42:11 +02:00
falkonOfficial/src/navigation/downicon.h

18 lines
253 B
C++

#ifndef DOWNICON_H
#define DOWNICON_H
#include "clickablelabel.h"
class DownIcon : public ClickableLabel
{
Q_OBJECT
public:
explicit DownIcon(QWidget* parent = 0);
private:
void mousePressEvent(QMouseEvent* ev);
};
#endif // DOWNICON_H