qt 6.5.1 original

This commit is contained in:
kleuter
2023-10-29 23:33:08 +01:00
parent 71d22ab6b0
commit 85d238dfda
21202 changed files with 5499099 additions and 0 deletions

View File

@ -0,0 +1,37 @@
[cursor2]
osx
[resizeAnchor]
rhel
# QTBUG-87397
[itemsAtPoint]
android
[itemsInRect_cosmeticAdjust]
android
[itemAt]
android
[mapToScenePath]
android
[mapFromScenePoly]
android
[mapFromScenePath]
android
[viewportUpdateMode]
android
[scrollBarRanges]
android
[moveItemWhileScrolling]
android
[exposeRegion]
android
[update2]
android
[update_ancestorClipsChildrenToShape]
android
[update_ancestorClipsChildrenToShape2]
android
[QTBUG_70255_scrollTo]
android # QTBUG-87397
[embeddedViewsWithFocus]
android # QTBUG-87397
[viewportUpdateMode2]
android # QTBUG-87397

View File

@ -0,0 +1,30 @@
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause
#####################################################################
## tst_qgraphicsview Test:
#####################################################################
qt_internal_add_test(tst_qgraphicsview
SOURCES
tst_qgraphicsview.cpp tst_qgraphicsview.h
tst_qgraphicsview_2.cpp
DEFINES
QT_NO_CAST_TO_ASCII
LIBRARIES
Qt::CorePrivate
Qt::Gui
Qt::GuiPrivate
Qt::TestPrivate
Qt::Widgets
Qt::WidgetsPrivate
)
## Scopes:
#####################################################################
qt_internal_extend_target(tst_qgraphicsview CONDITION QT_FEATURE_opengl
LIBRARIES
Qt::OpenGL
Qt::OpenGLWidgets
)

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,47 @@
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#ifndef TST_QGRAPHICSVIEW_H
#define TST_QGRAPHICSVIEW_H
// This file contains structs used in tst_qgraphicsview::scrollBarRanges.
// Whenever these mention scrollbars or spacing it is about the number of
// scrollbars or spacings to use as these are style dependent so that the real
// value to add/remove has to be obtained in test run using the actual style.
struct ExpectedValueDescription {
constexpr ExpectedValueDescription(int v = 0, int sbeta = 0, int sta = 0)
: value(v)
, scrollBarExtentsToAdd(sbeta)
, spacingsToAdd(sta)
{
}
int value;
// Describes how often the scrollbar widht/height has to be added to or
// removed from the value.
int scrollBarExtentsToAdd;
// Describes how often the scrollbar spacing has to be added to or removed
// from the value if the used style has SH_ScrollView_FrameOnlyAroundContents
// set
int spacingsToAdd;
};
// Describes how often the scroll bar width/height has to be added to/removed
// from the according side of the sceneRect.
struct ScrollBarCount {
constexpr ScrollBarCount(int l = 0, int t = 0, int r = 0, int b = 0 )
: left(l)
, top(t)
, right(r)
, bottom(b)
{
}
int left;
int top;
int right;
int bottom;
};
#endif // TST_QGRAPHICSVIEW_H

File diff suppressed because it is too large Load Diff