summaryrefslogtreecommitdiffstats
path: root/Lib/test/encoded_modules
diff options
context:
space:
mode:
authorNed Deily <nad@python.org>2017-07-07 07:16:00 (GMT)
committerNed Deily <nad@python.org>2017-07-07 07:16:00 (GMT)
commit891331134516784ff1c5ad8d1720fdc2d056a15f (patch)
tree52b85d7207f41532f9363615484ac7b2743d022b /Lib/test/encoded_modules
parentbdabd7666032ce356d550da21c35e4bee5b3448c (diff)
downloadcpython-3.6.2rc2.zip
cpython-3.6.2rc2.tar.gz
cpython-3.6.2rc2.tar.bz2
Version bump to 3.6.2rc2v3.6.2rc2
Diffstat (limited to 'Lib/test/encoded_modules')
0 files changed, 0 insertions, 0 deletions
* Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions ** contained in the Technology Preview License Agreement accompanying ** this package. ** ** 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 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. ** ** If you have questions regarding the use of this file, please contact ** Nokia at qt-info@nokia.com. ** ** ** ** ** ** ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef PREVIEWWINDOW_H #define PREVIEWWINDOW_H #include <QWidget> QT_BEGIN_NAMESPACE class QPushButton; class QTextEdit; QT_END_NAMESPACE //! [0] class PreviewWindow : public QWidget { Q_OBJECT public: PreviewWindow(QWidget *parent = 0); void setWindowFlags(Qt::WindowFlags flags); private: QTextEdit *textEdit; QPushButton *closeButton; }; //! [0] #endif