2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2011-02-22 12:08:19 +01:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2010-11-24 14:52:06 +01:00
|
|
|
|
|
|
|
|
#include <QMetaType>
|
2011-06-28 13:41:52 +02:00
|
|
|
#include <QPair>
|
2010-11-24 14:52:06 +01:00
|
|
|
|
|
|
|
|
namespace QmlDesigner {
|
|
|
|
|
|
|
|
|
|
enum InformationName
|
|
|
|
|
{
|
|
|
|
|
NoName,
|
2011-06-28 13:41:52 +02:00
|
|
|
NoInformationChange = NoName,
|
2020-04-21 08:06:43 +02:00
|
|
|
AllStates,
|
2010-11-24 14:52:06 +01:00
|
|
|
Size,
|
|
|
|
|
BoundingRect,
|
|
|
|
|
Transform,
|
|
|
|
|
HasAnchor,
|
|
|
|
|
Anchor,
|
|
|
|
|
InstanceTypeForProperty,
|
|
|
|
|
PenWidth,
|
|
|
|
|
Position,
|
2013-04-18 18:42:58 +02:00
|
|
|
IsInLayoutable,
|
2010-11-24 14:52:06 +01:00
|
|
|
SceneTransform,
|
|
|
|
|
IsResizable,
|
|
|
|
|
IsMovable,
|
|
|
|
|
IsAnchoredByChildren,
|
|
|
|
|
IsAnchoredBySibling,
|
|
|
|
|
HasContent,
|
2013-05-22 13:07:32 +02:00
|
|
|
HasBindingForProperty,
|
2013-05-28 14:14:07 +02:00
|
|
|
ContentTransform,
|
|
|
|
|
ContentItemTransform,
|
2019-11-13 11:16:55 +01:00
|
|
|
ContentItemBoundingRect,
|
|
|
|
|
MoveView,
|
|
|
|
|
ShowView,
|
|
|
|
|
ResizeView,
|
|
|
|
|
HideView
|
2010-11-24 14:52:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|