mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-07 06:09:42 +00:00
qt ui - status main page now works
This commit is contained in:
22
qt/i2pd_qt/textbrowsertweaked1.h
Normal file
22
qt/i2pd_qt/textbrowsertweaked1.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#ifndef TEXTBROWSERTWEAKED1_H
|
||||
#define TEXTBROWSERTWEAKED1_H
|
||||
|
||||
#include <QTextBrowser>
|
||||
|
||||
class TextBrowserTweaked1 : public QTextBrowser
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
TextBrowserTweaked1();
|
||||
|
||||
signals:
|
||||
void mouseReleased();
|
||||
|
||||
protected:
|
||||
void mouseReleaseEvent(QMouseEvent *event) {
|
||||
emit mouseReleased();
|
||||
}
|
||||
};
|
||||
|
||||
#endif // TEXTBROWSERTWEAKED1_H
|
||||
Reference in New Issue
Block a user