normal sizes of buttons in meego/desktop gui
[mdictionary] / trunk / src / base / gui / TranslationWidgetAutoResizer.h
1 /*******************************************************************************
2
3     This file is part of mDictionary.
4
5     mDictionary is free software: you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation, either version 3 of the License, or
8     (at your option) any later version.
9
10     mDictionary is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with mDictionary.  If not, see <http://www.gnu.org/licenses/>.
17
18     Copyright 2010 Comarch S.A.
19
20 *******************************************************************************/
21 //! \file TranslationWidgetAutoResizer.h
22 //! \brief Implements translation widget auto resizer
23 //! \author Mateusz Półrola <mateusz.polrola@comarch.pl>a
24
25 #ifndef TRANSLATIONWIDGETAUTORESIZER_H
26 #define TRANSLATIONWIDGETAUTORESIZER_H
27
28 #include <QtGui/qtextedit.h>
29 class TranslationWidgetAutoResizer : public QObject
30 {
31     Q_OBJECT
32
33 public:
34     TranslationWidgetAutoResizer(QWidget *parent) :QObject(parent),
35     textEdit(qobject_cast<QTextEdit* >((parent))),
36     edit(qobject_cast<QFrame* >((parent))) {
37
38      connect(parent, SIGNAL(textChanged()), this,
39              SLOT(textEditChanged()));
40      connect(parent, SIGNAL(cursorPositionChanged()),
41              this, SLOT(textEditChanged()));
42      }
43
44 public Q_SLOTS:
45     inline void textEditChanged();
46
47 private:
48     QTextEdit *textEdit;
49     QFrame *edit;
50 };
51
52 void TranslationWidgetAutoResizer::textEditChanged() {
53     QTextDocument *doc = textEdit->document();
54
55     QSize s = doc->size().toSize();
56
57     const QRect fr = edit->frameRect();
58     const QRect cr = edit->contentsRect();
59
60     edit->setMinimumHeight(qMax(70, s.height() + (fr.height() - cr.height()) -
61                                 1));
62
63     edit->setMinimumHeight(qMax(70, s.height() + (fr.height() - cr.height()) -
64                                 1));
65 }
66
67 #endif // TRANSLATIONWIDGETAUTORESIZER_H