aboutsummaryrefslogtreecommitdiff
path: root/brushinghandler.h
blob: ebee75a39e7209d440ff3c1126287d714fc5ccd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef BRUSHINGHANDLER_H
#define BRUSHINGHANDLER_H

#include <QObject>

class BrushingHandler
    : public QObject
{
    Q_OBJECT
public:
    BrushingHandler();

    void clearBrush();

signals:
    void itemBrushed(int item) const;

public slots:
    void brushItem(int item);

private:
    int m_brushedItem;
};

#endif // BRUSHINGHANDLER_H