83a5694dc2
Qt copyrights are now in The Qt Company, so we could update the source code headers accordingly. In the same go we should also fix the links to point to qt.io. Outdated header.LGPL removed (use header.LGPL21 instead) Old header.LGPL3 renamed to header.LGPL3-COMM to match actual licensing combination. New header.LGPL-COMM taken in the use file which were using old header.LGPL3 (src/plugins/platforms/android/extract.cpp) Added new header.LGPL3 containing Commercial + LGPLv3 + GPLv2 license combination Change-Id: I6f49b819a8a20cc4f88b794a8f6726d975e8ffbe Reviewed-by: Matti Paaso <matti.paaso@theqtcompany.com>
210 lines
7.9 KiB
C++
210 lines
7.9 KiB
C++
/*
|
|
*********************************************************************
|
|
**
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
** Contact: http://www.qt.io/licensing/
|
|
**
|
|
** This file is part of the autotests of the Qt Toolkit.
|
|
**
|
|
** $QT_BEGIN_LICENSE:LGPL21$
|
|
** Commercial License Usage
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
** accordance with the commercial license agreement provided with the
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
** and conditions see http://www.qt.io/terms-conditions. For further
|
|
** information use the contact form at http://www.qt.io/contact-us.
|
|
**
|
|
** GNU Lesser General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
** following information to ensure the GNU Lesser General Public License
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
**
|
|
** As a special exception, The Qt Company gives you certain additional
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
**
|
|
** $QT_END_LICENSE$
|
|
**
|
|
*********************************************************************
|
|
*/
|
|
|
|
/********************************************************************************
|
|
** Form generated from reading UI file 'tabbedbrowser.ui'
|
|
**
|
|
** Created by: Qt User Interface Compiler version 5.0.0
|
|
**
|
|
** WARNING! All changes made in this file will be lost when recompiling UI file!
|
|
********************************************************************************/
|
|
|
|
#ifndef TABBEDBROWSER_H
|
|
#define TABBEDBROWSER_H
|
|
|
|
#include <QtCore/QVariant>
|
|
#include <QtWidgets/QAction>
|
|
#include <QtWidgets/QApplication>
|
|
#include <QtWidgets/QButtonGroup>
|
|
#include <QtWidgets/QCheckBox>
|
|
#include <QtWidgets/QFrame>
|
|
#include <QtWidgets/QGridLayout>
|
|
#include <QtWidgets/QHBoxLayout>
|
|
#include <QtWidgets/QHeaderView>
|
|
#include <QtWidgets/QLabel>
|
|
#include <QtWidgets/QLineEdit>
|
|
#include <QtWidgets/QSpacerItem>
|
|
#include <QtWidgets/QTabWidget>
|
|
#include <QtWidgets/QToolButton>
|
|
#include <QtWidgets/QVBoxLayout>
|
|
#include <QtWidgets/QWidget>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class Ui_TabbedBrowser
|
|
{
|
|
public:
|
|
QVBoxLayout *vboxLayout;
|
|
QTabWidget *tab;
|
|
QWidget *frontpage;
|
|
QGridLayout *gridLayout;
|
|
QFrame *frameFind;
|
|
QHBoxLayout *hboxLayout;
|
|
QToolButton *toolClose;
|
|
QLineEdit *editFind;
|
|
QToolButton *toolPrevious;
|
|
QToolButton *toolNext;
|
|
QCheckBox *checkCase;
|
|
QCheckBox *checkWholeWords;
|
|
QLabel *labelWrapped;
|
|
QSpacerItem *spacerItem;
|
|
|
|
void setupUi(QWidget *TabbedBrowser)
|
|
{
|
|
if (TabbedBrowser->objectName().isEmpty())
|
|
TabbedBrowser->setObjectName(QStringLiteral("TabbedBrowser"));
|
|
TabbedBrowser->resize(710, 664);
|
|
vboxLayout = new QVBoxLayout(TabbedBrowser);
|
|
vboxLayout->setSpacing(0);
|
|
vboxLayout->setContentsMargins(0, 0, 0, 0);
|
|
vboxLayout->setObjectName(QStringLiteral("vboxLayout"));
|
|
tab = new QTabWidget(TabbedBrowser);
|
|
tab->setObjectName(QStringLiteral("tab"));
|
|
frontpage = new QWidget();
|
|
frontpage->setObjectName(QStringLiteral("frontpage"));
|
|
gridLayout = new QGridLayout(frontpage);
|
|
#ifndef Q_OS_MAC
|
|
gridLayout->setSpacing(6);
|
|
#endif
|
|
gridLayout->setContentsMargins(8, 8, 8, 8);
|
|
gridLayout->setObjectName(QStringLiteral("gridLayout"));
|
|
tab->addTab(frontpage, QString());
|
|
|
|
vboxLayout->addWidget(tab);
|
|
|
|
frameFind = new QFrame(TabbedBrowser);
|
|
frameFind->setObjectName(QStringLiteral("frameFind"));
|
|
frameFind->setFrameShape(QFrame::StyledPanel);
|
|
frameFind->setFrameShadow(QFrame::Raised);
|
|
hboxLayout = new QHBoxLayout(frameFind);
|
|
#ifndef Q_OS_MAC
|
|
hboxLayout->setSpacing(6);
|
|
#endif
|
|
hboxLayout->setContentsMargins(0, 0, 0, 0);
|
|
hboxLayout->setObjectName(QStringLiteral("hboxLayout"));
|
|
toolClose = new QToolButton(frameFind);
|
|
toolClose->setObjectName(QStringLiteral("toolClose"));
|
|
const QIcon icon = QIcon(QString::fromUtf8(":/qt-project.org/assistant/images/close.png"));
|
|
toolClose->setIcon(icon);
|
|
toolClose->setAutoRaise(true);
|
|
|
|
hboxLayout->addWidget(toolClose);
|
|
|
|
editFind = new QLineEdit(frameFind);
|
|
editFind->setObjectName(QStringLiteral("editFind"));
|
|
QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(0), static_cast<QSizePolicy::Policy>(0));
|
|
sizePolicy.setHorizontalStretch(0);
|
|
sizePolicy.setVerticalStretch(0);
|
|
sizePolicy.setHeightForWidth(editFind->sizePolicy().hasHeightForWidth());
|
|
editFind->setSizePolicy(sizePolicy);
|
|
editFind->setMinimumSize(QSize(150, 0));
|
|
|
|
hboxLayout->addWidget(editFind);
|
|
|
|
toolPrevious = new QToolButton(frameFind);
|
|
toolPrevious->setObjectName(QStringLiteral("toolPrevious"));
|
|
const QIcon icon1 = QIcon(QString::fromUtf8(":/qt-project.org/assistant/images/win/previous.png"));
|
|
toolPrevious->setIcon(icon1);
|
|
toolPrevious->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
|
|
toolPrevious->setAutoRaise(true);
|
|
|
|
hboxLayout->addWidget(toolPrevious);
|
|
|
|
toolNext = new QToolButton(frameFind);
|
|
toolNext->setObjectName(QStringLiteral("toolNext"));
|
|
toolNext->setMinimumSize(QSize(0, 0));
|
|
const QIcon icon2 = QIcon(QString::fromUtf8(":/qt-project.org/assistant/images/win/next.png"));
|
|
toolNext->setIcon(icon2);
|
|
toolNext->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
|
|
toolNext->setAutoRaise(true);
|
|
toolNext->setArrowType(Qt::NoArrow);
|
|
|
|
hboxLayout->addWidget(toolNext);
|
|
|
|
checkCase = new QCheckBox(frameFind);
|
|
checkCase->setObjectName(QStringLiteral("checkCase"));
|
|
|
|
hboxLayout->addWidget(checkCase);
|
|
|
|
checkWholeWords = new QCheckBox(frameFind);
|
|
checkWholeWords->setObjectName(QStringLiteral("checkWholeWords"));
|
|
|
|
hboxLayout->addWidget(checkWholeWords);
|
|
|
|
labelWrapped = new QLabel(frameFind);
|
|
labelWrapped->setObjectName(QStringLiteral("labelWrapped"));
|
|
labelWrapped->setMinimumSize(QSize(0, 20));
|
|
labelWrapped->setMaximumSize(QSize(105, 20));
|
|
labelWrapped->setTextFormat(Qt::RichText);
|
|
labelWrapped->setScaledContents(true);
|
|
labelWrapped->setAlignment(Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter);
|
|
|
|
hboxLayout->addWidget(labelWrapped);
|
|
|
|
spacerItem = new QSpacerItem(81, 21, QSizePolicy::Expanding, QSizePolicy::Minimum);
|
|
|
|
hboxLayout->addItem(spacerItem);
|
|
|
|
|
|
vboxLayout->addWidget(frameFind);
|
|
|
|
|
|
retranslateUi(TabbedBrowser);
|
|
|
|
QMetaObject::connectSlotsByName(TabbedBrowser);
|
|
} // setupUi
|
|
|
|
void retranslateUi(QWidget *TabbedBrowser)
|
|
{
|
|
TabbedBrowser->setWindowTitle(QApplication::translate("TabbedBrowser", "TabbedBrowser", 0));
|
|
tab->setTabText(tab->indexOf(frontpage), QApplication::translate("TabbedBrowser", "Untitled", 0));
|
|
toolClose->setText(QString());
|
|
toolPrevious->setText(QApplication::translate("TabbedBrowser", "Previous", 0));
|
|
toolNext->setText(QApplication::translate("TabbedBrowser", "Next", 0));
|
|
checkCase->setText(QApplication::translate("TabbedBrowser", "Case Sensitive", 0));
|
|
checkWholeWords->setText(QApplication::translate("TabbedBrowser", "Whole words", 0));
|
|
labelWrapped->setText(QApplication::translate("TabbedBrowser", "<img src=\":/qt-project.org/assistant/images/wrap.png\"> Search wrapped", 0));
|
|
} // retranslateUi
|
|
|
|
};
|
|
|
|
namespace Ui {
|
|
class TabbedBrowser: public Ui_TabbedBrowser {};
|
|
} // namespace Ui
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif // TABBEDBROWSER_H
|