You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
543 B
31 lines
543 B
|
|
#ifndef UBSTYLUSPALLETTE_H_
|
|
#define UBSTYLUSPALLETTE_H_
|
|
|
|
#include <QButtonGroup>
|
|
|
|
#include "UBActionPalette.h"
|
|
|
|
|
|
class UBStylusPalette : public UBActionPalette
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
UBStylusPalette(QWidget *parent = 0, Qt::Orientation orient = Qt::Vertical);
|
|
virtual ~UBStylusPalette();
|
|
|
|
void initPosition();
|
|
|
|
private slots:
|
|
|
|
void stylusToolDoubleClicked();
|
|
|
|
private:
|
|
int mLastSelectedId;
|
|
|
|
signals:
|
|
void stylusToolDoubleClicked(int tool);
|
|
};
|
|
|
|
#endif /* UBSTYLUSPALLETTE_H_ */
|
|
|