mirror of
https://github.com/3minbe/DBC_Converter.git
synced 2026-05-17 01:23:58 +09:00
139 lines
7.3 KiB
Python
139 lines
7.3 KiB
Python
# This Python file uses the following encoding: utf-8
|
|
#############################################################################
|
|
##
|
|
## Copyright (C) 2020 The Qt Company Ltd.
|
|
## Contact: https://www.qt.io/licensing/
|
|
##
|
|
## This file is part of Qt for Python.
|
|
##
|
|
## $QT_BEGIN_LICENSE:LGPL$
|
|
## Commercial License Usage
|
|
## Licensees holding valid commercial Qt licenses may use this file in
|
|
## accordance with the commercial license agreement provided with the
|
|
## Software or, alternatively, in accordance with the terms contained in
|
|
## a written agreement between you and The Qt Company. For licensing terms
|
|
## and conditions see https://www.qt.io/terms-conditions. For further
|
|
## information use the contact form at https://www.qt.io/contact-us.
|
|
##
|
|
## GNU Lesser General Public License Usage
|
|
## Alternatively, this file may be used under the terms of the GNU Lesser
|
|
## General Public License version 3 as published by the Free Software
|
|
## Foundation and appearing in the file LICENSE.LGPL3 included in the
|
|
## packaging of this file. Please review the following information to
|
|
## ensure the GNU Lesser General Public License version 3 requirements
|
|
## will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
|
|
##
|
|
## GNU General Public License Usage
|
|
## Alternatively, this file may be used under the terms of the GNU
|
|
## General Public License version 2.0 or (at your option) the GNU General
|
|
## Public license version 3 or any later version approved by the KDE Free
|
|
## Qt Foundation. The licenses are as published by the Free Software
|
|
## Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
|
|
## included in the packaging of this file. Please review the following
|
|
## information to ensure the GNU General Public License requirements will
|
|
## be met: https://www.gnu.org/licenses/gpl-2.0.html and
|
|
## https://www.gnu.org/licenses/gpl-3.0.html.
|
|
##
|
|
## $QT_END_LICENSE$
|
|
##
|
|
#############################################################################
|
|
|
|
"""
|
|
This file contains the exact signatures for all functions in module
|
|
PySide2.QtScriptTools, except for defaults which are replaced by "...".
|
|
"""
|
|
|
|
# Module PySide2.QtScriptTools
|
|
import PySide2
|
|
try:
|
|
import typing
|
|
except ImportError:
|
|
from PySide2.support.signature import typing
|
|
from PySide2.support.signature.mapping import (
|
|
Virtual, Missing, Invalid, Default, Instance)
|
|
|
|
class Object(object): pass
|
|
|
|
import shiboken2 as Shiboken
|
|
Shiboken.Object = Object
|
|
|
|
import PySide2.QtCore
|
|
import PySide2.QtWidgets
|
|
import PySide2.QtScript
|
|
import PySide2.QtScriptTools
|
|
|
|
|
|
class QScriptEngineDebugger(PySide2.QtCore.QObject):
|
|
ConsoleWidget : QScriptEngineDebugger = ... # 0x0
|
|
InterruptAction : QScriptEngineDebugger = ... # 0x0
|
|
RunningState : QScriptEngineDebugger = ... # 0x0
|
|
ContinueAction : QScriptEngineDebugger = ... # 0x1
|
|
StackWidget : QScriptEngineDebugger = ... # 0x1
|
|
SuspendedState : QScriptEngineDebugger = ... # 0x1
|
|
ScriptsWidget : QScriptEngineDebugger = ... # 0x2
|
|
StepIntoAction : QScriptEngineDebugger = ... # 0x2
|
|
LocalsWidget : QScriptEngineDebugger = ... # 0x3
|
|
StepOverAction : QScriptEngineDebugger = ... # 0x3
|
|
CodeWidget : QScriptEngineDebugger = ... # 0x4
|
|
StepOutAction : QScriptEngineDebugger = ... # 0x4
|
|
CodeFinderWidget : QScriptEngineDebugger = ... # 0x5
|
|
RunToCursorAction : QScriptEngineDebugger = ... # 0x5
|
|
BreakpointsWidget : QScriptEngineDebugger = ... # 0x6
|
|
RunToNewScriptAction : QScriptEngineDebugger = ... # 0x6
|
|
DebugOutputWidget : QScriptEngineDebugger = ... # 0x7
|
|
ToggleBreakpointAction : QScriptEngineDebugger = ... # 0x7
|
|
ClearDebugOutputAction : QScriptEngineDebugger = ... # 0x8
|
|
ErrorLogWidget : QScriptEngineDebugger = ... # 0x8
|
|
ClearErrorLogAction : QScriptEngineDebugger = ... # 0x9
|
|
ClearConsoleAction : QScriptEngineDebugger = ... # 0xa
|
|
FindInScriptAction : QScriptEngineDebugger = ... # 0xb
|
|
FindNextInScriptAction : QScriptEngineDebugger = ... # 0xc
|
|
FindPreviousInScriptAction: QScriptEngineDebugger = ... # 0xd
|
|
GoToLineAction : QScriptEngineDebugger = ... # 0xe
|
|
|
|
class DebuggerAction(object):
|
|
InterruptAction : QScriptEngineDebugger.DebuggerAction = ... # 0x0
|
|
ContinueAction : QScriptEngineDebugger.DebuggerAction = ... # 0x1
|
|
StepIntoAction : QScriptEngineDebugger.DebuggerAction = ... # 0x2
|
|
StepOverAction : QScriptEngineDebugger.DebuggerAction = ... # 0x3
|
|
StepOutAction : QScriptEngineDebugger.DebuggerAction = ... # 0x4
|
|
RunToCursorAction : QScriptEngineDebugger.DebuggerAction = ... # 0x5
|
|
RunToNewScriptAction : QScriptEngineDebugger.DebuggerAction = ... # 0x6
|
|
ToggleBreakpointAction : QScriptEngineDebugger.DebuggerAction = ... # 0x7
|
|
ClearDebugOutputAction : QScriptEngineDebugger.DebuggerAction = ... # 0x8
|
|
ClearErrorLogAction : QScriptEngineDebugger.DebuggerAction = ... # 0x9
|
|
ClearConsoleAction : QScriptEngineDebugger.DebuggerAction = ... # 0xa
|
|
FindInScriptAction : QScriptEngineDebugger.DebuggerAction = ... # 0xb
|
|
FindNextInScriptAction : QScriptEngineDebugger.DebuggerAction = ... # 0xc
|
|
FindPreviousInScriptAction: QScriptEngineDebugger.DebuggerAction = ... # 0xd
|
|
GoToLineAction : QScriptEngineDebugger.DebuggerAction = ... # 0xe
|
|
|
|
class DebuggerState(object):
|
|
RunningState : QScriptEngineDebugger.DebuggerState = ... # 0x0
|
|
SuspendedState : QScriptEngineDebugger.DebuggerState = ... # 0x1
|
|
|
|
class DebuggerWidget(object):
|
|
ConsoleWidget : QScriptEngineDebugger.DebuggerWidget = ... # 0x0
|
|
StackWidget : QScriptEngineDebugger.DebuggerWidget = ... # 0x1
|
|
ScriptsWidget : QScriptEngineDebugger.DebuggerWidget = ... # 0x2
|
|
LocalsWidget : QScriptEngineDebugger.DebuggerWidget = ... # 0x3
|
|
CodeWidget : QScriptEngineDebugger.DebuggerWidget = ... # 0x4
|
|
CodeFinderWidget : QScriptEngineDebugger.DebuggerWidget = ... # 0x5
|
|
BreakpointsWidget : QScriptEngineDebugger.DebuggerWidget = ... # 0x6
|
|
DebugOutputWidget : QScriptEngineDebugger.DebuggerWidget = ... # 0x7
|
|
ErrorLogWidget : QScriptEngineDebugger.DebuggerWidget = ... # 0x8
|
|
|
|
def __init__(self, parent:typing.Optional[PySide2.QtCore.QObject]=...) -> None: ...
|
|
|
|
def action(self, action:PySide2.QtScriptTools.QScriptEngineDebugger.DebuggerAction) -> PySide2.QtWidgets.QAction: ...
|
|
def attachTo(self, engine:PySide2.QtScript.QScriptEngine) -> None: ...
|
|
def autoShowStandardWindow(self) -> bool: ...
|
|
def createStandardMenu(self, parent:typing.Optional[PySide2.QtWidgets.QWidget]=...) -> PySide2.QtWidgets.QMenu: ...
|
|
def createStandardToolBar(self, parent:typing.Optional[PySide2.QtWidgets.QWidget]=...) -> PySide2.QtWidgets.QToolBar: ...
|
|
def setAutoShowStandardWindow(self, autoShow:bool) -> None: ...
|
|
def standardWindow(self) -> PySide2.QtWidgets.QMainWindow: ...
|
|
def state(self) -> PySide2.QtScriptTools.QScriptEngineDebugger.DebuggerState: ...
|
|
def widget(self, widget:PySide2.QtScriptTools.QScriptEngineDebugger.DebuggerWidget) -> PySide2.QtWidgets.QWidget: ...
|
|
|
|
# eof
|