Home
last modified time | relevance | path

Searched refs:QtCore (Results 1 – 25 of 7697) sorted by relevance

12345678910>>...308

/dports/graphics/py-traitsui/traitsui-7.1.1/traitsui/qt4/
H A Dkey_event_to_name.py43 QtCore.Qt.Key_0: "0",
44 QtCore.Qt.Key_1: "1",
45 QtCore.Qt.Key_2: "2",
46 QtCore.Qt.Key_3: "3",
47 QtCore.Qt.Key_4: "4",
48 QtCore.Qt.Key_5: "5",
49 QtCore.Qt.Key_6: "6",
50 QtCore.Qt.Key_7: "7",
51 QtCore.Qt.Key_8: "8",
52 QtCore.Qt.Key_9: "9",
[all …]
/dports/devel/pyside2/pyside-setup-opensource-src-5.15.2/examples/widgets/graphicsview/
H A Danchorlayout.py87 l.addAnchor(a, QtCore.Qt.AnchorTop, l, QtCore.Qt.AnchorTop)
88 l.addAnchor(b, QtCore.Qt.AnchorTop, l, QtCore.Qt.AnchorTop)
90 l.addAnchor(c, QtCore.Qt.AnchorTop, a, QtCore.Qt.AnchorBottom)
91 l.addAnchor(c, QtCore.Qt.AnchorTop, b, QtCore.Qt.AnchorBottom)
92 l.addAnchor(c, QtCore.Qt.AnchorBottom, d, QtCore.Qt.AnchorTop)
93 l.addAnchor(c, QtCore.Qt.AnchorBottom, e, QtCore.Qt.AnchorTop)
98 l.addAnchor(c, QtCore.Qt.AnchorTop, f, QtCore.Qt.AnchorTop)
104 l.addAnchor(l, QtCore.Qt.AnchorLeft, a, QtCore.Qt.AnchorLeft)
105 l.addAnchor(l, QtCore.Qt.AnchorLeft, d, QtCore.Qt.AnchorLeft)
115 l.addAnchor(l, QtCore.Qt.AnchorLeft, f, QtCore.Qt.AnchorLeft)
[all …]
/dports/devel/pyside2-tools/pyside-setup-opensource-src-5.15.2/examples/widgets/graphicsview/
H A Danchorlayout.py87 l.addAnchor(a, QtCore.Qt.AnchorTop, l, QtCore.Qt.AnchorTop)
88 l.addAnchor(b, QtCore.Qt.AnchorTop, l, QtCore.Qt.AnchorTop)
90 l.addAnchor(c, QtCore.Qt.AnchorTop, a, QtCore.Qt.AnchorBottom)
91 l.addAnchor(c, QtCore.Qt.AnchorTop, b, QtCore.Qt.AnchorBottom)
92 l.addAnchor(c, QtCore.Qt.AnchorBottom, d, QtCore.Qt.AnchorTop)
93 l.addAnchor(c, QtCore.Qt.AnchorBottom, e, QtCore.Qt.AnchorTop)
98 l.addAnchor(c, QtCore.Qt.AnchorTop, f, QtCore.Qt.AnchorTop)
104 l.addAnchor(l, QtCore.Qt.AnchorLeft, a, QtCore.Qt.AnchorLeft)
105 l.addAnchor(l, QtCore.Qt.AnchorLeft, d, QtCore.Qt.AnchorLeft)
115 l.addAnchor(l, QtCore.Qt.AnchorLeft, f, QtCore.Qt.AnchorLeft)
[all …]
/dports/devel/shiboken2/pyside-setup-opensource-src-5.15.2/examples/widgets/graphicsview/
H A Danchorlayout.py87 l.addAnchor(a, QtCore.Qt.AnchorTop, l, QtCore.Qt.AnchorTop)
88 l.addAnchor(b, QtCore.Qt.AnchorTop, l, QtCore.Qt.AnchorTop)
90 l.addAnchor(c, QtCore.Qt.AnchorTop, a, QtCore.Qt.AnchorBottom)
91 l.addAnchor(c, QtCore.Qt.AnchorTop, b, QtCore.Qt.AnchorBottom)
92 l.addAnchor(c, QtCore.Qt.AnchorBottom, d, QtCore.Qt.AnchorTop)
93 l.addAnchor(c, QtCore.Qt.AnchorBottom, e, QtCore.Qt.AnchorTop)
98 l.addAnchor(c, QtCore.Qt.AnchorTop, f, QtCore.Qt.AnchorTop)
104 l.addAnchor(l, QtCore.Qt.AnchorLeft, a, QtCore.Qt.AnchorLeft)
105 l.addAnchor(l, QtCore.Qt.AnchorLeft, d, QtCore.Qt.AnchorLeft)
115 l.addAnchor(l, QtCore.Qt.AnchorLeft, f, QtCore.Qt.AnchorLeft)
[all …]
/dports/graphics/py-pivy/pivy-0.6.6/pivy/quarter/devices/
H A DKeyboardHandler.py17 from PySide2 import QtCore
35 if qevent.type() in (QtCore.QEvent.KeyPress, QtCore.QEvent.KeyRelease):
53 if qevent.type() == QtCore.QEvent.KeyPress:
61 if modifiers & QtCore.Qt.KeypadModifier:
118 keyboardmap.insert(QtCore.Qt.Key_A, coin.SoKeyboardEvent.A)
119 keyboardmap.insert(QtCore.Qt.Key_B, coin.SoKeyboardEvent.B)
120 keyboardmap.insert(QtCore.Qt.Key_C, coin.SoKeyboardEvent.C)
121 keyboardmap.insert(QtCore.Qt.Key_D, coin.SoKeyboardEvent.D)
122 keyboardmap.insert(QtCore.Qt.Key_E, coin.SoKeyboardEvent.E)
123 keyboardmap.insert(QtCore.Qt.Key_F, coin.SoKeyboardEvent.F)
[all …]
/dports/devel/pyside2/pyside-setup-opensource-src-5.15.2/examples/widgets/animation/states/
H A Dstates.py43 from PySide2 import QtCore, QtGui, QtWidgets
55 painter.drawPixmap(QtCore.QPointF(), self.p)
58 return QtCore.QRectF(QtCore.QPointF(0, 0), QtCore.QSizeF(self.p.size()))
119 machine = QtCore.QStateMachine()
120 state1 = QtCore.QState(machine)
121 state2 = QtCore.QState(machine)
122 state3 = QtCore.QState(machine)
129 state1.assignProperty(p1, 'pos', QtCore.QPointF(68, 185))
156 state2.assignProperty(p4, 'pos', QtCore.QPointF(64, 48))
175 state3.assignProperty(p1, 'pos', QtCore.QPointF(0, 5))
[all …]
/dports/devel/pyside2-tools/pyside-setup-opensource-src-5.15.2/examples/widgets/animation/states/
H A Dstates.py43 from PySide2 import QtCore, QtGui, QtWidgets
55 painter.drawPixmap(QtCore.QPointF(), self.p)
58 return QtCore.QRectF(QtCore.QPointF(0, 0), QtCore.QSizeF(self.p.size()))
119 machine = QtCore.QStateMachine()
120 state1 = QtCore.QState(machine)
121 state2 = QtCore.QState(machine)
122 state3 = QtCore.QState(machine)
129 state1.assignProperty(p1, 'pos', QtCore.QPointF(68, 185))
156 state2.assignProperty(p4, 'pos', QtCore.QPointF(64, 48))
175 state3.assignProperty(p1, 'pos', QtCore.QPointF(0, 5))
[all …]
/dports/devel/shiboken2/pyside-setup-opensource-src-5.15.2/examples/widgets/animation/states/
H A Dstates.py43 from PySide2 import QtCore, QtGui, QtWidgets
55 painter.drawPixmap(QtCore.QPointF(), self.p)
58 return QtCore.QRectF(QtCore.QPointF(0, 0), QtCore.QSizeF(self.p.size()))
119 machine = QtCore.QStateMachine()
120 state1 = QtCore.QState(machine)
121 state2 = QtCore.QState(machine)
122 state3 = QtCore.QState(machine)
129 state1.assignProperty(p1, 'pos', QtCore.QPointF(68, 185))
156 state2.assignProperty(p4, 'pos', QtCore.QPointF(64, 48))
175 state3.assignProperty(p1, 'pos', QtCore.QPointF(0, 5))
[all …]
/dports/deskutils/calibre/calibre-src-5.34.0/src/qt/
H A Dcore.pyi2 import PyQt5.QtCore
36 QDate = PyQt5.QtCore.QDate
39 QDir = PyQt5.QtCore.QDir
48 QFile = PyQt5.QtCore.QFile
155 QUrl = PyQt5.QtCore.QUrl
178 Qt = PyQt5.QtCore.Qt
186 bin_ = PyQt5.QtCore.bin_
187 bom = PyQt5.QtCore.bom
189 dec = PyQt5.QtCore.dec
190 endl = PyQt5.QtCore.endl
[all …]
/dports/audio/gnome-music/gnome-music-41.0/subprojects/shared-modules/qt4/
H A Dqt4-aarch64.patch1 …erywhere-opensource-src-4.8.7/include/QtCore/headers.pri.aarch64 qt-everywhere-opensource-src-4.8.…
2 --- qt-everywhere-opensource-src-4.8.7/include/QtCore/headers.pri.aarch64 2015-05-08 21:48:32.71405…
3 +++ qt-everywhere-opensource-src-4.8.7/include/QtCore/headers.pri 2015-05-08 21:53:21.088761971 -05…
7QtCore/QAbstractEventDispatcher ../../include/QtCore/QModelIndex ../../include/QtCore/QPersistentM…
9 …where-opensource-src-4.8.7/include/QtCore/qatomic_aarch64.h.aarch64 qt-everywhere-opensource-src-4…
85 +** This file is part of the QtCore module of the Qt Toolkit.
121 +#include <QtCore/qglobal.h>
173 +** This file is part of the QtCore module of the Qt Toolkit.
507 # include "QtCore/qatomic_sh4a.h"
509 # include "QtCore/qatomic_generic.h"
[all …]
/dports/devel/shiboken2/pyside-setup-opensource-src-5.15.2/examples/tutorial/
H A Dt14.py71 self.label.setAlignment(QtCore.Qt.AlignHCenter | QtCore.Qt.AlignTop)
90 @QtCore.Slot(int)
113 hit = QtCore.Signal()
137 @QtCore.Slot(int)
152 @QtCore.Slot(int)
161 @QtCore.Slot()
197 @QtCore.Slot()
418 @QtCore.Slot()
425 @QtCore.Slot()
433 @QtCore.Slot()
[all …]
H A Dt13.py71 self.label.setAlignment(QtCore.Qt.AlignHCenter | QtCore.Qt.AlignTop)
90 @QtCore.Slot(int)
113 hit = QtCore.Signal()
136 @QtCore.Slot(int)
151 @QtCore.Slot(int)
160 @QtCore.Slot()
196 @QtCore.Slot()
363 @QtCore.Slot()
370 @QtCore.Slot()
378 @QtCore.Slot()
[all …]
/dports/devel/pyside2/pyside-setup-opensource-src-5.15.2/examples/tutorial/
H A Dt14.py71 self.label.setAlignment(QtCore.Qt.AlignHCenter | QtCore.Qt.AlignTop)
90 @QtCore.Slot(int)
113 hit = QtCore.Signal()
137 @QtCore.Slot(int)
152 @QtCore.Slot(int)
161 @QtCore.Slot()
197 @QtCore.Slot()
418 @QtCore.Slot()
425 @QtCore.Slot()
433 @QtCore.Slot()
[all …]
H A Dt13.py71 self.label.setAlignment(QtCore.Qt.AlignHCenter | QtCore.Qt.AlignTop)
90 @QtCore.Slot(int)
113 hit = QtCore.Signal()
136 @QtCore.Slot(int)
151 @QtCore.Slot(int)
160 @QtCore.Slot()
196 @QtCore.Slot()
363 @QtCore.Slot()
370 @QtCore.Slot()
378 @QtCore.Slot()
[all …]
/dports/devel/pyside2-tools/pyside-setup-opensource-src-5.15.2/examples/tutorial/
H A Dt14.py71 self.label.setAlignment(QtCore.Qt.AlignHCenter | QtCore.Qt.AlignTop)
90 @QtCore.Slot(int)
113 hit = QtCore.Signal()
137 @QtCore.Slot(int)
152 @QtCore.Slot(int)
161 @QtCore.Slot()
197 @QtCore.Slot()
418 @QtCore.Slot()
425 @QtCore.Slot()
433 @QtCore.Slot()
[all …]
H A Dt13.py71 self.label.setAlignment(QtCore.Qt.AlignHCenter | QtCore.Qt.AlignTop)
90 @QtCore.Slot(int)
113 hit = QtCore.Signal()
136 @QtCore.Slot(int)
151 @QtCore.Slot(int)
160 @QtCore.Slot()
196 @QtCore.Slot()
363 @QtCore.Slot()
370 @QtCore.Slot()
378 @QtCore.Slot()
[all …]
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/tools/uic/
H A Dqclass_lib_map.h12 QT_CLASS_LIB(QFuture, QtCore, qfuture.h)
15 QT_CLASS_LIB(QFuture, QtCore, qfuture.h)
45 QT_CLASS_LIB(QFlag, QtCore, qglobal.h)
52 QT_CLASS_LIB(Qt, QtCore, qnamespace.h)
59 QT_CLASS_LIB(QDebug, QtCore, qdebug.h)
61 QT_CLASS_LIB(QDir, QtCore, qdir.h)
63 QT_CLASS_LIB(QFile, QtCore, qfile.h)
81 QT_CLASS_LIB(QUrl, QtCore, qurl.h)
135 QT_CLASS_LIB(QUuid, QtCore, quuid.h)
215 QT_CLASS_LIB(QMap, QtCore, qmap.h)
[all …]
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/tools/uic/
H A Dqclass_lib_map.h12 QT_CLASS_LIB(QFuture, QtCore, qfuture.h)
15 QT_CLASS_LIB(QFuture, QtCore, qfuture.h)
45 QT_CLASS_LIB(QFlag, QtCore, qglobal.h)
52 QT_CLASS_LIB(Qt, QtCore, qnamespace.h)
59 QT_CLASS_LIB(QDebug, QtCore, qdebug.h)
61 QT_CLASS_LIB(QDir, QtCore, qdir.h)
63 QT_CLASS_LIB(QFile, QtCore, qfile.h)
81 QT_CLASS_LIB(QUrl, QtCore, qurl.h)
135 QT_CLASS_LIB(QUuid, QtCore, quuid.h)
215 QT_CLASS_LIB(QMap, QtCore, qmap.h)
[all …]
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/tools/uic/
H A Dqclass_lib_map.h12 QT_CLASS_LIB(QFuture, QtCore, qfuture.h)
15 QT_CLASS_LIB(QFuture, QtCore, qfuture.h)
45 QT_CLASS_LIB(QFlag, QtCore, qglobal.h)
52 QT_CLASS_LIB(Qt, QtCore, qnamespace.h)
59 QT_CLASS_LIB(QDebug, QtCore, qdebug.h)
61 QT_CLASS_LIB(QDir, QtCore, qdir.h)
63 QT_CLASS_LIB(QFile, QtCore, qfile.h)
81 QT_CLASS_LIB(QUrl, QtCore, qurl.h)
135 QT_CLASS_LIB(QUuid, QtCore, quuid.h)
215 QT_CLASS_LIB(QMap, QtCore, qmap.h)
[all …]
/dports/textproc/qt5-xml/kde-qtbase-5.15.2p263/src/tools/uic/
H A Dqclass_lib_map.h12 QT_CLASS_LIB(QFuture, QtCore, qfuture.h)
15 QT_CLASS_LIB(QFuture, QtCore, qfuture.h)
45 QT_CLASS_LIB(QFlag, QtCore, qglobal.h)
52 QT_CLASS_LIB(Qt, QtCore, qnamespace.h)
59 QT_CLASS_LIB(QDebug, QtCore, qdebug.h)
61 QT_CLASS_LIB(QDir, QtCore, qdir.h)
63 QT_CLASS_LIB(QFile, QtCore, qfile.h)
81 QT_CLASS_LIB(QUrl, QtCore, qurl.h)
135 QT_CLASS_LIB(QUuid, QtCore, quuid.h)
215 QT_CLASS_LIB(QMap, QtCore, qmap.h)
[all …]
/dports/databases/qt5-sql/kde-qtbase-5.15.2p263/src/tools/uic/
H A Dqclass_lib_map.h12 QT_CLASS_LIB(QFuture, QtCore, qfuture.h)
15 QT_CLASS_LIB(QFuture, QtCore, qfuture.h)
45 QT_CLASS_LIB(QFlag, QtCore, qglobal.h)
52 QT_CLASS_LIB(Qt, QtCore, qnamespace.h)
59 QT_CLASS_LIB(QDebug, QtCore, qdebug.h)
61 QT_CLASS_LIB(QDir, QtCore, qdir.h)
63 QT_CLASS_LIB(QFile, QtCore, qfile.h)
81 QT_CLASS_LIB(QUrl, QtCore, qurl.h)
135 QT_CLASS_LIB(QUuid, QtCore, quuid.h)
215 QT_CLASS_LIB(QMap, QtCore, qmap.h)
[all …]
/dports/databases/qt5-sqldrivers-mysql/kde-qtbase-5.15.2p263/src/tools/uic/
H A Dqclass_lib_map.h12 QT_CLASS_LIB(QFuture, QtCore, qfuture.h)
15 QT_CLASS_LIB(QFuture, QtCore, qfuture.h)
45 QT_CLASS_LIB(QFlag, QtCore, qglobal.h)
52 QT_CLASS_LIB(Qt, QtCore, qnamespace.h)
59 QT_CLASS_LIB(QDebug, QtCore, qdebug.h)
61 QT_CLASS_LIB(QDir, QtCore, qdir.h)
63 QT_CLASS_LIB(QFile, QtCore, qfile.h)
81 QT_CLASS_LIB(QUrl, QtCore, qurl.h)
135 QT_CLASS_LIB(QUuid, QtCore, quuid.h)
215 QT_CLASS_LIB(QMap, QtCore, qmap.h)
[all …]
/dports/databases/qt5-sqldrivers-odbc/kde-qtbase-5.15.2p263/src/tools/uic/
H A Dqclass_lib_map.h12 QT_CLASS_LIB(QFuture, QtCore, qfuture.h)
15 QT_CLASS_LIB(QFuture, QtCore, qfuture.h)
45 QT_CLASS_LIB(QFlag, QtCore, qglobal.h)
52 QT_CLASS_LIB(Qt, QtCore, qnamespace.h)
59 QT_CLASS_LIB(QDebug, QtCore, qdebug.h)
61 QT_CLASS_LIB(QDir, QtCore, qdir.h)
63 QT_CLASS_LIB(QFile, QtCore, qfile.h)
81 QT_CLASS_LIB(QUrl, QtCore, qurl.h)
135 QT_CLASS_LIB(QUuid, QtCore, quuid.h)
215 QT_CLASS_LIB(QMap, QtCore, qmap.h)
[all …]
/dports/databases/qt5-sqldrivers-pgsql/kde-qtbase-5.15.2p263/src/tools/uic/
H A Dqclass_lib_map.h12 QT_CLASS_LIB(QFuture, QtCore, qfuture.h)
15 QT_CLASS_LIB(QFuture, QtCore, qfuture.h)
45 QT_CLASS_LIB(QFlag, QtCore, qglobal.h)
52 QT_CLASS_LIB(Qt, QtCore, qnamespace.h)
59 QT_CLASS_LIB(QDebug, QtCore, qdebug.h)
61 QT_CLASS_LIB(QDir, QtCore, qdir.h)
63 QT_CLASS_LIB(QFile, QtCore, qfile.h)
81 QT_CLASS_LIB(QUrl, QtCore, qurl.h)
135 QT_CLASS_LIB(QUuid, QtCore, quuid.h)
215 QT_CLASS_LIB(QMap, QtCore, qmap.h)
[all …]
/dports/databases/qt5-sqldrivers-ibase/kde-qtbase-5.15.2p263/src/tools/uic/
H A Dqclass_lib_map.h12 QT_CLASS_LIB(QFuture, QtCore, qfuture.h)
15 QT_CLASS_LIB(QFuture, QtCore, qfuture.h)
45 QT_CLASS_LIB(QFlag, QtCore, qglobal.h)
52 QT_CLASS_LIB(Qt, QtCore, qnamespace.h)
59 QT_CLASS_LIB(QDebug, QtCore, qdebug.h)
61 QT_CLASS_LIB(QDir, QtCore, qdir.h)
63 QT_CLASS_LIB(QFile, QtCore, qfile.h)
81 QT_CLASS_LIB(QUrl, QtCore, qurl.h)
135 QT_CLASS_LIB(QUuid, QtCore, quuid.h)
215 QT_CLASS_LIB(QMap, QtCore, qmap.h)
[all …]

12345678910>>...308