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.
22 lines
363 B
22 lines
363 B
|
|
#ifndef LABEL_WITH_DOUBLE_CLICK_HPP_VP_2006_04_04
|
|
#define LABEL_WITH_DOUBLE_CLICK_HPP_VP_2006_04_04
|
|
|
|
#include <tqlabel.h>
|
|
|
|
class LabelWithDoubleClick : public TQLabel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
LabelWithDoubleClick(const TQString& s, TQWidget* parent);
|
|
|
|
signals:
|
|
void doubleClicked();
|
|
|
|
protected:
|
|
void mouseDoubleClickEvent(TQMouseEvent*);
|
|
};
|
|
|
|
#endif
|