simplify
[kdepim.git] / mobile / mail / composerautoresizer.h
blobc7e8ca8deaa4f7b986a5193fb3c5395920204be7
1 /*
2 Copyright (c) 2010 Anselmo Lacerda S. de Melo <anselmolsm@gmail.com>
3 Copyright (c) 2010 Artur Duque de Souza <asouza@kde.org>
5 This library is free software; you can redistribute it and/or modify it
6 under the terms of the GNU Library General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or (at your
8 option) any later version.
10 This library is distributed in the hope that it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
13 License for more details.
15 You should have received a copy of the GNU Library General Public License
16 along with this library; see the file COPYING.LIB. If not, write to the
17 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 02110-1301, USA.
21 #ifndef COMPOSERAUTORESIZER_H
22 #define COMPOSERAUTORESIZER_H
24 #include <QtDeclarative/QDeclarativeItem>
25 #include <QtGui/QTextEdit>
27 class ComposerAutoResizer : public QObject
29 Q_OBJECT
31 public:
32 ComposerAutoResizer( QTextEdit *parent );
34 QDeclarativeItem *findFlickable( QGraphicsItem *parent ) const;
36 private Q_SLOTS:
37 void textEditChanged();
39 private:
40 QTextEdit *mComposer;
41 int mMinimumHeight;
42 QDeclarativeItem *mFlickable;
45 #endif