ktextedit.hpp 716 B

12345678910111213141516171819202122232425262728293031
  1. #include <QPlainTextEdit>
  2. #include <QDebug>
  3. #include <QKeyEvent>
  4. #include <QtUiPlugin/QDesignerCustomWidgetInterface>
  5. class KTextEdit : public QPlainTextEdit, public QDesignerCustomWidgetInterface {
  6. Q_PLUGIN_METADATA(IID "kstyleyo.kygui.ktextedit" FILE "ktextedit.json")
  7. Q_INTERFACES(QDesignerCustomWidgetInterface)
  8. public:
  9. QString toPlainText() {
  10. return QPlainTextEdit::toPlainText();
  11. }
  12. void clear() {
  13. QPlainTextEdit::clear();
  14. }
  15. protected:
  16. virtual void keyPressEvent(QKeyEvent* e) {
  17. qDebug() << "Key press: " << e->key();
  18. if (e->key()==Qt::Key_Enter) {
  19. qDebug() << "Ouch!";
  20. }
  21. QPlainTextEdit::keyPressEvent(e);
  22. }
  23. };