ofs | hex dump | ascii |
---|
0000 | 25 50 44 46 2d 31 2e 34 0d 0a 25 b5 b5 b5 b5 0d 0a 31 20 30 20 6f 62 6a 0d 0a 3c 3c 2f 54 79 70 | %PDF-1.4..%......1.0.obj..<</Typ |
0020 | 65 2f 43 61 74 61 6c 6f 67 2f 50 61 67 65 73 20 32 20 30 20 52 2f 4c 61 6e 67 28 64 65 2d 44 45 | e/Catalog/Pages.2.0.R/Lang(de-DE |
0040 | 29 20 2f 53 74 72 75 63 74 54 72 65 65 52 6f 6f 74 20 32 31 20 30 20 52 2f 4f 75 74 6c 69 6e 65 | )./StructTreeRoot.21.0.R/Outline |
0060 | 73 20 31 38 20 30 20 52 2f 4d 61 72 6b 49 6e 66 6f 3c 3c 2f 4d 61 72 6b 65 64 20 74 72 75 65 3e | s.18.0.R/MarkInfo<</Marked.true> |
0080 | 3e 2f 4f 75 74 70 75 74 49 6e 74 65 6e 74 73 5b 3c 3c 2f 54 79 70 65 2f 4f 75 74 70 75 74 49 6e | >/OutputIntents[<</Type/OutputIn |
00a0 | 74 65 6e 74 2f 53 2f 47 54 53 5f 50 44 46 41 31 2f 4f 75 74 70 75 74 43 6f 6e 64 69 74 69 6f 6e | tent/S/GTS_PDFA1/OutputCondition |
00c0 | 49 64 65 6e 74 69 66 69 65 72 28 73 52 47 42 29 20 2f 52 65 67 69 73 74 72 79 4e 61 6d 65 28 68 | Identifier(sRGB)./RegistryName(h |
00e0 | 74 74 70 3a 2f 2f 77 77 77 2e 63 6f 6c 6f 72 2e 6f 72 67 29 20 2f 49 6e 66 6f 28 43 72 65 61 74 | ttp://www.color.org)./Info(Creat |
0100 | 6f 72 3a 20 48 50 20 20 20 20 20 4d 61 6e 75 66 61 63 74 75 72 65 72 3a 49 45 43 20 20 20 20 4d | or:.HP.....Manufacturer:IEC....M |
0120 | 6f 64 65 6c 3a 73 52 47 42 29 20 2f 44 65 73 74 4f 75 74 70 75 74 50 72 6f 66 69 6c 65 20 35 33 | odel:sRGB)./DestOutputProfile.53 |
0140 | 20 30 20 52 3e 3e 5d 20 2f 4d 65 74 61 64 61 74 61 20 35 34 20 30 20 52 3e 3e 0d 0a 65 6e 64 6f | .0.R>>]./Metadata.54.0.R>>..endo |
0160 | 62 6a 0d 0a 32 20 30 20 6f 62 6a 0d 0a 3c 3c 2f 54 79 70 65 2f 50 61 67 65 73 2f 43 6f 75 6e 74 | bj../****************************************************************************
**
** 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 a Qt Solutions component.
**
** You may use this file under the terms of the BSD license as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in
** the documentation and/or other materials provided with the
** distribution.
** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
** the names of its contributors may be used to endorse or promote
** products derived from this software without specific prior written
** permission.
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
****************************************************************************/
#ifndef OBJECTCONTROLLER_H
#define OBJECTCONTROLLER_H
#include <QWidget>
class ObjectControllerPrivate;
class ObjectController : public QWidget
{
Q_OBJECT
public:
ObjectController(QWidget *parent = 0);
~ObjectController();
void setObject(QObject *object);
QObject *object() const;
private:
ObjectControllerPrivate *d_ptr;
Q_DECLARE_PRIVATE(ObjectController)
Q_DISABLE_COPY(ObjectController)
Q_PRIVATE_SLOT(d_func(), void slotValueChanged(QtProperty *, const QVariant &))
};
#endif
|