diff options
author | Florian Jung <flo@windfisch.org> | 2011-12-21 17:39:57 +0000 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2011-12-21 17:39:57 +0000 |
commit | 1057d7190242cdf9248671b316a398db805f5f56 (patch) | |
tree | ab50268a7db2f80cfb45a7ad6578fe735ab84ce5 /muse2/awl/sigspinbox.cpp | |
parent | 9977c7114089b8708d310268833b83343caa0fd1 (diff) | |
parent | c36a5508aa42e596b005425208054af9a60734b4 (diff) |
merged with trunk (that is, pulled the fixes from release_2_0)
only quickly tested, seems okay on the first glance
Diffstat (limited to 'muse2/awl/sigspinbox.cpp')
-rw-r--r-- | muse2/awl/sigspinbox.cpp | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/muse2/awl/sigspinbox.cpp b/muse2/awl/sigspinbox.cpp index 6e38b164..f1399538 100644 --- a/muse2/awl/sigspinbox.cpp +++ b/muse2/awl/sigspinbox.cpp @@ -1,14 +1,33 @@ #include "sigspinbox.h" #include "al/sig.h" #include <QKeyEvent> +#include <QMouseEvent> #include <stdio.h> +#include <QLineEdit> + +class MyLineEdit : public QLineEdit +{ + public: + MyLineEdit() : QLineEdit() {}; + MyLineEdit(QWidget* parent) : QLineEdit(parent) {}; + + protected: + virtual void mousePressEvent (QMouseEvent* e) + { + QLineEdit::mousePressEvent(e); + selectAll(); + } +}; + SigSpinBox::SigSpinBox(QWidget *parent) : QSpinBox(parent) { _denominator=false; + setLineEdit(new MyLineEdit(this)); } -void SigSpinBox::keyPressEvent(QKeyEvent*ev) + +void SigSpinBox::keyPressEvent(QKeyEvent* ev) { switch (ev->key()) { case Qt::Key_Return: |