aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/flowlayout.h
diff options
context:
space:
mode:
authorcon <qtc-committer@nokia.com>2011-06-23 14:35:45 +0200
committerEike Ziller <eike.ziller@nokia.com>2011-06-23 16:26:30 +0200
commit78fa1bb0aab0e14c6ee8c4ab33286c818bcc704e (patch)
tree11939e93c82161aea7ee66a0e7ef75fce4d2b209 /src/libs/utils/flowlayout.h
parentfbce58bf8cd626aca2b93b4df0d237a392f9b6c3 (diff)
Find/replace tool bar wasn't usable in very small width editors.
E.g. in split editors with small main window. We now have line edits with a minimum size and use a flow layout for the replace buttons (which will reduce width when necessary by laying out vertically). Flow layout is taken from the Qt examples. Task-number: QTCREATORBUG-3279 Change-Id: Ic07d4d3e75e3d928d6b53534adb42481ce26256b Reviewed-on: http://codereview.qt.nokia.com/666 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Leandro T. C. Melo <leandro.melo@nokia.com>
Diffstat (limited to 'src/libs/utils/flowlayout.h')
-rw-r--r--src/libs/utils/flowlayout.h75
1 files changed, 75 insertions, 0 deletions
diff --git a/src/libs/utils/flowlayout.h b/src/libs/utils/flowlayout.h
new file mode 100644
index 00000000000..d75f4072174
--- /dev/null
+++ b/src/libs/utils/flowlayout.h
@@ -0,0 +1,75 @@
+/**************************************************************************
+**
+** This file is part of Qt Creator
+**
+** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
+**
+** Contact: Nokia Corporation (info@qt.nokia.com)
+**
+**
+** GNU Lesser General Public License Usage
+**
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** Other Usage
+**
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at info@qt.nokia.com.
+**
+**************************************************************************/
+
+#ifndef FLOWLAYOUT_H
+#define FLOWLAYOUT_H
+
+#include "utils_global.h"
+
+#include <QtGui/QLayout>
+#include <QtGui/QWidget>
+#include <QtGui/QStyle>
+
+namespace Utils {
+
+class QTCREATOR_UTILS_EXPORT FlowLayout : public QLayout
+{
+public:
+ explicit FlowLayout(QWidget *parent, int margin = -1, int hSpacing = -1, int vSpacing = -1);
+ FlowLayout(int margin = -1, int hSpacing = -1, int vSpacing = -1);
+ ~FlowLayout();
+
+ void addItem(QLayoutItem *item);
+ int horizontalSpacing() const;
+ int verticalSpacing() const;
+ Qt::Orientations expandingDirections() const;
+ bool hasHeightForWidth() const;
+ int heightForWidth(int) const;
+ int count() const;
+ QLayoutItem *itemAt(int index) const;
+ QSize minimumSize() const;
+ void setGeometry(const QRect &rect);
+ QSize sizeHint() const;
+ QLayoutItem *takeAt(int index);
+
+private:
+ int doLayout(const QRect &rect, bool testOnly) const;
+ int smartSpacing(QStyle::PixelMetric pm) const;
+
+ QList<QLayoutItem *> itemList;
+ int m_hSpace;
+ int m_vSpace;
+};
+
+} // namespace Utils
+
+#endif // FLOWLAYOUT_H