v1.4.4
This commit is contained in:
commit
9c94d113d3
10260 changed files with 1237388 additions and 0 deletions
28
source/mod_uploader/StarSPlainTextEdit.hpp
Normal file
28
source/mod_uploader/StarSPlainTextEdit.hpp
Normal file
|
@ -0,0 +1,28 @@
|
|||
#ifndef STAR_SPLAIN_TEXT_EDIT_HPP
|
||||
#define STAR_SPLAIN_TEXT_EDIT_HPP
|
||||
|
||||
#include <QPlainTextEdit>
|
||||
|
||||
namespace Star {
|
||||
|
||||
class SPlainTextEdit : public QPlainTextEdit {
|
||||
Q_OBJECT
|
||||
public:
|
||||
SPlainTextEdit(QWidget* parent = nullptr);
|
||||
|
||||
signals:
|
||||
void editingFinished();
|
||||
|
||||
protected:
|
||||
void focusOutEvent(QFocusEvent* e);
|
||||
|
||||
private slots:
|
||||
void wasChanged();
|
||||
|
||||
private:
|
||||
bool m_changed;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue