| | |
- kparts.MainWindow(kdeui.KMainWindow, kparts.PartBase)
-
- KbtvPart
class KbtvPart(kparts.MainWindow) |
| |
Main GUI class, inherits KParts.MainWindow. |
| |
- Method resolution order:
- KbtvPart
- kparts.MainWindow
- kdeui.KMainWindow
- qt.QMainWindow
- qt.QWidget
- qt.QObject
- qt.Qt
- qt.QPaintDevice
- kdeui.KXMLGUIBuilder
- kparts.PartBase
- kdeui.KXMLGUIClient
- sip.wrapper
- __builtin__.object
Methods defined here:
- __init__(self, *args)
- -> KbtvPart
The constructor takes the usual QObject/Mainwindow arguments, they
are just passed through to KParts.MainWindow which is inherited.
The first of these is always the parent. The KbtvPart is meant to
be the main widget of the application.
First it creates the editor, picture settings, and channel editor
dialogs. Reuses the chanlist from the editor. Initializes the
menus and toolbars and associated actions. Creates a videoarea
central widget (where the viewer ultimately embeds into) and
makes this a KPart. Finally reads XML GUI layout, creates the
GUI, finishes up the toolbar, and sets up the statusbar.
- brightness(self)
- -> int
DCOP. Returns the current brightness (0..100).
- changeSize(self, size)
- -> void
Change size of video area.
- color(self)
- -> int
DCOP. Returns the current color balance (0..100).
- contrast(self)
- -> int
DCOP. Returns the current contrast (0..100).
- currentChannel(self)
- -> int
DCOP. Returns the current channel index.
- currentStatus(self)
- -> QString
DCOP. Returns a QString that has the status information, same
as in the statusbar. Format is "NUMBER ID|FREQ NAME" where NAME
can have spaces and may be empty.
- driver(self)
- -> QString
DCOP. Returns the driver currently used ("bt848", "saa", "pwd").
- driverBktr(self)
- -> void
SLOT/DCOP. Stops viewer if not using bt848 driver already, and
starts bt848 viewer.
- driverPwc(self)
- -> void
SLOT/DCOP. Stops viewer if not using pwc driver already, and
starts pwc viewer. Switches to camera GUI.
- driverSaa(self)
- -> void
SLOT/DCOP. Stops viewer if not using saa driver already, and
starts saa viewer.
- editChans(self)
- -> void
SLOT/DCOP. Shows the channel editor (modal) dialog.
- extendToolbar(self)
- -> void
Extends the toolbar with a widget containing a channel input box
(restricted line edit) and a volume slider.
- fullScreen(self)
- -> void
SLOT/DCOP. Toggles full screen mode. In full screen mode the
toolbar remains shown as it hardly changes the aspect ratio
(and is the most straightforward way for the user to get back
to former state).
- hwInfo(self)
- -> void
SLOT/DCOP. Shows the hardware info (non-modal) dialog.
- initActions(self)
- -> void
Defines actions, creates menus and toolbar for GUI actions.
- initPartGUI(self)
- -> void
Creates the KPart and GUI using KBTV_XMLFILE.
- initStatusBar(self)
- -> void
Initializes the statusbar in 3 parts, relative weights 5:85:10
- initVideoArea(self)
- -> void
Creates a widget to display the video in.
- initViewer(self)
- -> bool
Initializes the SDL viewer. Returns True if no errors occured, False
if something went wrong. It will show a messagebox with error number.
- mixer1(self)
- -> void
SLOT/DCOP. Use the first available mixerchannel (if any). The ones
that are eligible (sp?) are (in order) line, line1 to 3, mic, video.
- mixer2(self)
- -> void
SLOT/DCOP. Use the second available mixerchannel (if any). The ones
that are eligible (sp?) are (in order) line, line1 to 3, mic, video.
- mixer3(self)
- -> void
SLOT/DCOP. Use the third available mixerchannel (if any). The ones
that are eligible (sp?) are (in order) line, line1 to 3, mic, video.
- mixer4(self)
- -> void
SLOT/DCOP. Use the fourth available mixerchannel (if any). The ones
that are eligible (sp?) are (in order) line, line1 to 3, mic, video.
- mixer5(self)
- -> void
SLOT/DCOP. Use the fifth available mixerchannel (if any). The ones
that are eligible (sp?) are (in order) line, line1 to 3, mic, video.
- mixer6(self)
- -> void
SLOT/DCOP. Use the sixth available mixerchannel (if any). The ones
that are eligible (sp?) are (in order) line, line1 to 3, mic, video.
- muteAudio(self)
- -> void
SLOT/DCOP. Mutes the audio (if using a TV card).
- panLeft(self)
- -> void
SLOT/DCOP. Pans the camera to the left by 5 percent points
(0-50 is left of center, 50-100 is right of). For cameras that
support motorized panning and tilting. From user's POV, not camera's.
- panRight(self)
- -> void
SLOT/DCOP. Pans the camera to the right by 5 percent points
(50-100 is right of center, 0-50 is left of). For cameras that
support motorized panning and tilting. From user's POV, not camera's.
- pause(self)
- -> void
SLOT/DCOP. Toggles pause/unpause.
- pauseViewer(self)
- -> void
Pauses the viewer.
- quit(self)
- -> void
SLOT/DCOP. Stop backend, close mainwindow/part.
- quitViewer(self)
- -> void
Quits the viewer.
- resizeViewer(self, w, h)
- -> void
Resizes the viewer to w x h.
- saturation(self)
- -> int
DCOP. Returns the current color saturation (0..100).
- setBrightness(self, b)
- -> void
DCOP. Sets the brightness to b (0..100).
- setColor(self, c)
- -> void
DCOP. Sets the color balance to c (0..100).
- setContrast(self, c)
- -> void
DCOP. Sets the contrast to c (0..100).
- setPicture(self)
- -> void
SLOT/DCOP. Shows the picture settings (non-modal) dialog.
- setSaturation(self, s)
- -> void
DCOP. Sets the color saturation to s (0..100).
- setVolume(self, v=-1)
- -> void
SLOT/DCOP. Calls the toolbar widget's setVolume() slot. If the
target volume v is not what the slider has, the slider is moved.
If v=-1 this simply wraps the volume slider's setVolume() slot.
- sizeLarge(self)
- -> void
SLOT/DCOP. Sets video size to KBTV_SCREENSIZE_LARGE.
- sizeMedium(self)
- -> void
SLOT/DCOP. Sets video size to KBTV_SCREENSIZE_MEDIUM.
- sizeSmall(self)
- -> void
SLOT/DCOP. Sets video size to KBTV_SCREENSIZE_SMALL.
- startViewer(self)
- -> void
Starts/unpauses the viewer.
- switchToCameraGUI(self)
- switchToTelevisionGUI(self)
- tiltDown(self)
- -> void
SLOT/DCOP. Tilts the camera downward by 5 percent points
(50-100 is up from center, 0-50 is down). For cameras that
support motorized panning and tilting.
- tiltUp(self)
- -> void
SLOT/DCOP. Tilts the camera upward by 5 percent points
(50-100 is up from center, 0-50 is down). For cameras that
support motorized panning and tilting.
- tuneDown(self)
- -> void
SLOT/DCOP. Tunes the channel down, updates status.
- tuneTo(self, c)
- -> void
SLOT/DCOP. Tunes to channel index c. If < 0 or too high it
tunes to the highest channel. Updates channel box if need be
and runs updateStatus(). This method is also called by the
channelbox widget's setChannel() slot (on ReturnPressed).
- tuneUp(self)
- -> void
SLOT/DCOP. Tunes the channel up, updates status.
- unmuteAudio(self)
- -> void
SLOT/DCOP. Unmutes the audio (if using a TV card).
- updateStatus(self)
- -> void
Updates statusbar and main window caption.
- volume(self)
- -> int
DCOP. Returns the current volume (0..100).
- volumeDown(self)
- -> void
SLOT/DCOP. Turns the volume down by (max) 5 percent points.
- volumeUp(self)
- -> void
SLOT/DCOP. Turns the volume up by (max) 5 percent points.
Data and other attributes inherited from kparts.MainWindow:
- __reduce__ = None
- __reduce_ex__ = None
- childEvent = <built-in function childEvent>
- clearWFlags = <built-in function clearWFlags>
- clearWState = <built-in function clearWState>
- closeEvent = <built-in function closeEvent>
- conserveMemory = <built-in function conserveMemory>
- contextMenuEvent = <built-in function contextMenuEvent>
- create = <built-in function create>
- createGUI = <built-in function createGUI>
- createShellGUI = <built-in function createShellGUI>
- customEvent = <built-in function customEvent>
- destroy = <built-in function destroy>
- dragEnterEvent = <built-in function dragEnterEvent>
- dragLeaveEvent = <built-in function dragLeaveEvent>
- dragMoveEvent = <built-in function dragMoveEvent>
- dropEvent = <built-in function dropEvent>
- enabledChange = <built-in function enabledChange>
- enterEvent = <built-in function enterEvent>
- event = <built-in function event>
- focusInEvent = <built-in function focusInEvent>
- focusNextPrevChild = <built-in function focusNextPrevChild>
- focusOutEvent = <built-in function focusOutEvent>
- fontChange = <built-in function fontChange>
- getWFlags = <built-in function getWFlags>
- getWState = <built-in function getWState>
- hideEvent = <built-in function hideEvent>
- imComposeEvent = <built-in function imComposeEvent>
- imEndEvent = <built-in function imEndEvent>
- imStartEvent = <built-in function imStartEvent>
- keyPressEvent = <built-in function keyPressEvent>
- keyReleaseEvent = <built-in function keyReleaseEvent>
- leaveEvent = <built-in function leaveEvent>
- loadPlugins = <built-in function loadPlugins>
- menuAboutToShow = <built-in function menuAboutToShow>
- metaObject = <built-in function metaObject>
- metric = <built-in function metric>
- mouseDoubleClickEvent = <built-in function mouseDoubleClickEvent>
- mouseMoveEvent = <built-in function mouseMoveEvent>
- mousePressEvent = <built-in function mousePressEvent>
- mouseReleaseEvent = <built-in function mouseReleaseEvent>
- moveEvent = <built-in function moveEvent>
- paintEvent = <built-in function paintEvent>
- paletteChange = <built-in function paletteChange>
- parseGeometry = <built-in function parseGeometry>
- queryClose = <built-in function queryClose>
- queryExit = <built-in function queryExit>
- readGlobalProperties = <built-in function readGlobalProperties>
- readProperties = <built-in function readProperties>
- readPropertiesInternal = <built-in function readPropertiesInternal>
- resetInputContext = <built-in function resetInputContext>
- resizeEvent = <built-in function resizeEvent>
- restoreWindowSize = <built-in function restoreWindowSize>
- saveAutoSaveSettings = <built-in function saveAutoSaveSettings>
- saveGlobalProperties = <built-in function saveGlobalProperties>
- saveNewToolbarConfig = <built-in function saveNewToolbarConfig>
- saveProperties = <built-in function saveProperties>
- savePropertiesInternal = <built-in function savePropertiesInternal>
- saveWindowSize = <built-in function saveWindowSize>
- setDOMDocument = <built-in function setDOMDocument>
- setInstance = <built-in function setInstance>
- setKeyCompression = <built-in function setKeyCompression>
- setLocalXMLFile = <built-in function setLocalXMLFile>
- setMicroFocusHint = <built-in function setMicroFocusHint>
- setUpLayout = <built-in function setUpLayout>
- setWFlags = <built-in function setWFlags>
- setWState = <built-in function setWState>
- setXML = <built-in function setXML>
- setXMLFile = <built-in function setXMLFile>
- settingsDirty = <built-in function settingsDirty>
- settingsGroup = <built-in function settingsGroup>
- showAboutApplication = <built-in function showAboutApplication>
- showDockMenu = <built-in function showDockMenu>
- showEvent = <built-in function showEvent>
- slotSetStatusBarText = <built-in function slotSetStatusBarText>
- stateChanged = <built-in function stateChanged>
- styleChange = <built-in function styleChange>
- tabletEvent = <built-in function tabletEvent>
- timerEvent = <built-in function timerEvent>
- updateMask = <built-in function updateMask>
- wheelEvent = <built-in function wheelEvent>
- windowActivationChange = <built-in function windowActivationChange>
Data and other attributes inherited from kdeui.KMainWindow:
- Create = 16
- CreationFlags = <class 'kdeui.CreationFlags'>
- Keys = 2
- NoDCOPObject = 1
- Save = 8
- StandardWindowOptions = <class 'kdeui.StandardWindowOptions'>
- StatusBar = 4
- ToolBar = 1
- accel = <built-in function accel>
- appHelpActivated = <built-in function appHelpActivated>
- applyMainWindowSettings = <built-in function applyMainWindowSettings>
- autoSaveGroup = <built-in function autoSaveGroup>
- autoSaveSettings = <built-in function autoSaveSettings>
- canBeRestored = <built-in function canBeRestored>
- classNameOfToplevel = <built-in function classNameOfToplevel>
- configureToolbars = <built-in function configureToolbars>
- createStandardStatusBarAction = <built-in function createStandardStatusBarAction>
- customHelpMenu = <built-in function customHelpMenu>
- finalizeGUI = <built-in function finalizeGUI>
- getMemberList = <built-in function getMemberList>
- guiFactory = <built-in function guiFactory>
- hasMenuBar = <built-in function hasMenuBar>
- helpMenu = <built-in function helpMenu>
- hide = <built-in function hide>
- ignoreInitialGeometry = <built-in function ignoreInitialGeometry>
- initialGeometrySet = <built-in function initialGeometrySet>
- isHelpMenuEnabled = <built-in function isHelpMenuEnabled>
- isStandardToolBarMenuEnabled = <built-in function isStandardToolBarMenuEnabled>
- menuBar = <built-in function menuBar>
- resetAutoSaveSettings = <built-in function resetAutoSaveSettings>
- restore = <built-in function restore>
- saveMainWindowSettings = <built-in function saveMainWindowSettings>
- setAutoSaveSettings = <built-in function setAutoSaveSettings>
- setCaption = <built-in function setCaption>
- setFrameBorderWidth = <built-in function setFrameBorderWidth>
- setHelpMenuEnabled = <built-in function setHelpMenuEnabled>
- setIcon = <built-in function setIcon>
- setPlainCaption = <built-in function setPlainCaption>
- setSettingsDirty = <built-in function setSettingsDirty>
- setStandardToolBarMenuEnabled = <built-in function setStandardToolBarMenuEnabled>
- setupGUI = <built-in function setupGUI>
- setupToolbarMenuActions = <built-in function setupToolbarMenuActions>
- show = <built-in function show>
- sizeForCentralWidgetSize = <built-in function sizeForCentralWidgetSize>
- slotStateChanged = <built-in function slotStateChanged>
- statusBar = <built-in function statusBar>
- toolBar = <built-in function toolBar>
- toolBarMenuAction = <built-in function toolBarMenuAction>
Data and other attributes inherited from qt.QMainWindow:
- AllDockWindows = 2
- DockWindows = <class 'qt.DockWindows'>
- NoToolBars = 1
- OnlyToolBars = 0
- addDockWindow = <built-in function addDockWindow>
- appropriate = <built-in function appropriate>
- bottomDock = <built-in function bottomDock>
- centralWidget = <built-in function centralWidget>
- createDockWindowMenu = <built-in function createDockWindowMenu>
- customize = <built-in function customize>
- dockWindows = <built-in function dockWindows>
- dockWindowsMovable = <built-in function dockWindowsMovable>
- eventFilter = <built-in function eventFilter>
- getLocation = <built-in function getLocation>
- hasDockWindow = <built-in function hasDockWindow>
- isCustomizable = <built-in function isCustomizable>
- isDockEnabled = <built-in function isDockEnabled>
- isDockMenuEnabled = <built-in function isDockMenuEnabled>
- leftDock = <built-in function leftDock>
- lineUpDockWindows = <built-in function lineUpDockWindows>
- lineUpToolBars = <built-in function lineUpToolBars>
- minimumSizeHint = <built-in function minimumSizeHint>
- moveDockWindow = <built-in function moveDockWindow>
- opaqueMoving = <built-in function opaqueMoving>
- removeDockWindow = <built-in function removeDockWindow>
- rightDock = <built-in function rightDock>
- rightJustification = <built-in function rightJustification>
- setAppropriate = <built-in function setAppropriate>
- setCentralWidget = <built-in function setCentralWidget>
- setDockEnabled = <built-in function setDockEnabled>
- setDockMenuEnabled = <built-in function setDockMenuEnabled>
- setDockWindowsMovable = <built-in function setDockWindowsMovable>
- setOpaqueMoving = <built-in function setOpaqueMoving>
- setRightJustification = <built-in function setRightJustification>
- setUsesBigPixmaps = <built-in function setUsesBigPixmaps>
- setUsesTextLabel = <built-in function setUsesTextLabel>
- sizeHint = <built-in function sizeHint>
- toolBars = <built-in function toolBars>
- toolTipGroup = <built-in function toolTipGroup>
- topDock = <built-in function topDock>
- usesBigPixmaps = <built-in function usesBigPixmaps>
- usesTextLabel = <built-in function usesTextLabel>
- whatsThis = <built-in function whatsThis>
Data and other attributes inherited from qt.QWidget:
- AncestorOrigin = 3
- BackgroundOrigin = <class 'qt.BackgroundOrigin'>
- ClickFocus = 2
- FocusPolicy = <class 'qt.FocusPolicy'>
- NoFocus = 0
- ParentOrigin = 1
- StrongFocus = 11
- TabFocus = 1
- WheelFocus = 15
- WidgetOrigin = 0
- WindowOrigin = 2
- acceptDrops = <built-in function acceptDrops>
- adjustSize = <built-in function adjustSize>
- autoMask = <built-in function autoMask>
- backgroundBrush = <built-in function backgroundBrush>
- backgroundMode = <built-in function backgroundMode>
- backgroundOffset = <built-in function backgroundOffset>
- backgroundOrigin = <built-in function backgroundOrigin>
- baseSize = <built-in function baseSize>
- caption = <built-in function caption>
- childAt = <built-in function childAt>
- childrenRect = <built-in function childrenRect>
- childrenRegion = <built-in function childrenRegion>
- clearFocus = <built-in function clearFocus>
- clearMask = <built-in function clearMask>
- clipRegion = <built-in function clipRegion>
- close = <built-in function close>
- colorGroup = <built-in function colorGroup>
- constPolish = <built-in function constPolish>
- cursor = <built-in function cursor>
- customWhatsThis = <built-in function customWhatsThis>
- drawText = <built-in function drawText>
- erase = <built-in function erase>
- eraseColor = <built-in function eraseColor>
- erasePixmap = <built-in function erasePixmap>
- find = <built-in function find>
- focusPolicy = <built-in function focusPolicy>
- focusProxy = <built-in function focusProxy>
- focusWidget = <built-in function focusWidget>
- font = <built-in function font>
- fontInfo = <built-in function fontInfo>
- fontMetrics = <built-in function fontMetrics>
- foregroundColor = <built-in function foregroundColor>
- frameGeometry = <built-in function frameGeometry>
- frameSize = <built-in function frameSize>
- geometry = <built-in function geometry>
- grabKeyboard = <built-in function grabKeyboard>
- grabMouse = <built-in function grabMouse>
- hasFocus = <built-in function hasFocus>
- hasMouse = <built-in function hasMouse>
- hasMouseTracking = <built-in function hasMouseTracking>
- height = <built-in function height>
- heightForWidth = <built-in function heightForWidth>
- icon = <built-in function icon>
- iconText = <built-in function iconText>
- isActiveWindow = <built-in function isActiveWindow>
- isDesktop = <built-in function isDesktop>
- isDialog = <built-in function isDialog>
- isEnabled = <built-in function isEnabled>
- isEnabledTo = <built-in function isEnabledTo>
- isEnabledToTLW = <built-in function isEnabledToTLW>
- isFocusEnabled = <built-in function isFocusEnabled>
- isFullScreen = <built-in function isFullScreen>
- isHidden = <built-in function isHidden>
- isInputMethodEnabled = <built-in function isInputMethodEnabled>
- isMaximized = <built-in function isMaximized>
- isMinimized = <built-in function isMinimized>
- isModal = <built-in function isModal>
- isPopup = <built-in function isPopup>
- isShown = <built-in function isShown>
- isTopLevel = <built-in function isTopLevel>
- isUpdatesEnabled = <built-in function isUpdatesEnabled>
- isVisible = <built-in function isVisible>
- isVisibleTo = <built-in function isVisibleTo>
- isVisibleToTLW = <built-in function isVisibleToTLW>
- keyboardGrabber = <built-in function keyboardGrabber>
- layout = <built-in function layout>
- lowerW = <built-in function lowerW>
- mapFrom = <built-in function mapFrom>
- mapFromGlobal = <built-in function mapFromGlobal>
- mapFromParent = <built-in function mapFromParent>
- mapTo = <built-in function mapTo>
- mapToGlobal = <built-in function mapToGlobal>
- mapToParent = <built-in function mapToParent>
- maximumHeight = <built-in function maximumHeight>
- maximumSize = <built-in function maximumSize>
- maximumWidth = <built-in function maximumWidth>
- microFocusHint = <built-in function microFocusHint>
- minimumHeight = <built-in function minimumHeight>
- minimumSize = <built-in function minimumSize>
- minimumWidth = <built-in function minimumWidth>
- mouseGrabber = <built-in function mouseGrabber>
- move = <built-in function move>
- ownCursor = <built-in function ownCursor>
- ownFont = <built-in function ownFont>
- ownPalette = <built-in function ownPalette>
- palette = <built-in function palette>
- paletteBackgroundColor = <built-in function paletteBackgroundColor>
- paletteBackgroundPixmap = <built-in function paletteBackgroundPixmap>
- paletteForegroundColor = <built-in function paletteForegroundColor>
- parentWidget = <built-in function parentWidget>
- polish = <built-in function polish>
- pos = <built-in function pos>
- raiseW = <built-in function raiseW>
- rect = <built-in function rect>
- releaseKeyboard = <built-in function releaseKeyboard>
- releaseMouse = <built-in function releaseMouse>
- repaint = <built-in function repaint>
- reparent = <built-in function reparent>
- resize = <built-in function resize>
- scroll = <built-in function scroll>
- setAcceptDrops = <built-in function setAcceptDrops>
- setActiveWindow = <built-in function setActiveWindow>
- setAutoMask = <built-in function setAutoMask>
- setBackgroundMode = <built-in function setBackgroundMode>
- setBackgroundOrigin = <built-in function setBackgroundOrigin>
- setBaseSize = <built-in function setBaseSize>
- setCursor = <built-in function setCursor>
- setDisabled = <built-in function setDisabled>
- setEnabled = <built-in function setEnabled>
- setEraseColor = <built-in function setEraseColor>
- setErasePixmap = <built-in function setErasePixmap>
- setFixedHeight = <built-in function setFixedHeight>
- setFixedSize = <built-in function setFixedSize>
- setFixedWidth = <built-in function setFixedWidth>
- setFocus = <built-in function setFocus>
- setFocusPolicy = <built-in function setFocusPolicy>
- setFocusProxy = <built-in function setFocusProxy>
- setFont = <built-in function setFont>
- setGeometry = <built-in function setGeometry>
- setHidden = <built-in function setHidden>
- setIconText = <built-in function setIconText>
- setInputMethodEnabled = <built-in function setInputMethodEnabled>
- setMask = <built-in function setMask>
- setMaximumHeight = <built-in function setMaximumHeight>
- setMaximumSize = <built-in function setMaximumSize>
- setMaximumWidth = <built-in function setMaximumWidth>
- setMinimumHeight = <built-in function setMinimumHeight>
- setMinimumSize = <built-in function setMinimumSize>
- setMinimumWidth = <built-in function setMinimumWidth>
- setMouseTracking = <built-in function setMouseTracking>
- setName = <built-in function setName>
- setPalette = <built-in function setPalette>
- setPaletteBackgroundColor = <built-in function setPaletteBackgroundColor>
- setPaletteBackgroundPixmap = <built-in function setPaletteBackgroundPixmap>
- setPaletteForegroundColor = <built-in function setPaletteForegroundColor>
- setShown = <built-in function setShown>
- setSizeIncrement = <built-in function setSizeIncrement>
- setSizePolicy = <built-in function setSizePolicy>
- setStyle = <built-in function setStyle>
- setTabOrder = <built-in function setTabOrder>
- setUpdatesEnabled = <built-in function setUpdatesEnabled>
- setWindowOpacity = <built-in function setWindowOpacity>
- setWindowState = <built-in function setWindowState>
- showFullScreen = <built-in function showFullScreen>
- showMaximized = <built-in function showMaximized>
- showMinimized = <built-in function showMinimized>
- showNormal = <built-in function showNormal>
- size = <built-in function size>
- sizeIncrement = <built-in function sizeIncrement>
- sizePolicy = <built-in function sizePolicy>
- style = <built-in function style>
- testWFlags = <built-in function testWFlags>
- testWState = <built-in function testWState>
- topLevelWidget = <built-in function topLevelWidget>
- unsetCursor = <built-in function unsetCursor>
- unsetFont = <built-in function unsetFont>
- unsetPalette = <built-in function unsetPalette>
- update = <built-in function update>
- updateGeometry = <built-in function updateGeometry>
- visibleRect = <built-in function visibleRect>
- width = <built-in function width>
- winId = <built-in function winId>
- windowOpacity = <built-in function windowOpacity>
- windowState = <built-in function windowState>
- x = <built-in function x>
- y = <built-in function y>
Data and other attributes inherited from qt.QObject:
- blockSignals = <built-in function blockSignals>
- child = <built-in function child>
- children = <built-in function children>
- className = <built-in function className>
- connect = <built-in function connect>
- deleteLater = <built-in function deleteLater>
- disconnect = <built-in function disconnect>
- dumpObjectInfo = <built-in function dumpObjectInfo>
- dumpObjectTree = <built-in function dumpObjectTree>
- emit = <built-in function emit>
- highPriority = <built-in function highPriority>
- inherits = <built-in function inherits>
- insertChild = <built-in function insertChild>
- installEventFilter = <built-in function installEventFilter>
- isA = <built-in function isA>
- isWidgetType = <built-in function isWidgetType>
- killTimer = <built-in function killTimer>
- killTimers = <built-in function killTimers>
- name = <built-in function name>
- objectTrees = <built-in function objectTrees>
- parent = <built-in function parent>
- property = <built-in function property>
- queryList = <built-in function queryList>
- removeChild = <built-in function removeChild>
- removeEventFilter = <built-in function removeEventFilter>
- sender = <built-in function sender>
- setProperty = <built-in function setProperty>
- signalsBlocked = <built-in function signalsBlocked>
- startTimer = <built-in function startTimer>
- tr = <built-in function tr>
- trUtf8 = <built-in function trUtf8>
Data and other attributes inherited from qt.Qt:
- ALT = 8388608
- ASCII_ACCEL = 268435456
- AlignAuto = 0
- AlignBottom = 32
- AlignCenter = 68
- AlignHCenter = 4
- AlignHorizontal_Mask = 15
- AlignJustify = 8
- AlignLeft = 1
- AlignRight = 2
- AlignTop = 16
- AlignVCenter = 64
- AlignVertical_Mask = 112
- AlignmentFlags = <class 'qt.AlignmentFlags'>
- AlphaDither_Mask = 12
- AltButton = 1024
- AnchorAttribute = <class 'qt.AnchorAttribute'>
- AnchorHref = 1
- AnchorName = 0
- AndNotROP = 12
- AndROP = 7
- ArrowCursor = 0
- ArrowType = <class 'qt.ArrowType'>
- Ascending = 0
- AutoColor = 0
- AutoDither = 0
- AutoText = 2
- AvoidDither = 128
- BDiagPattern = 12
- BGMode = <class 'qt.BGMode'>
- BackgroundMode = <class 'qt.BackgroundMode'>
- BeginsWith = 2
- BevelJoin = 64
- BitmapCursor = 24
- BlankCursor = 10
- BottomLeft = 2
- BottomRight = 3
- BreakAnywhere = 4096
- BrushStyle = <class 'qt.BrushStyle'>
- BusyCursor = 16
- ButtonState = <class 'qt.ButtonState'>
- CTRL = 4194304
- CaseSensitive = 1
- ClearROP = 9
- ColorMode_Mask = 3
- ColorOnly = 3
- Contains = 8
- ControlButton = 512
- CopyROP = 0
- Corner = <class 'qt.Corner'>
- CrossCursor = 2
- CrossPattern = 11
- CursorShape = <class 'qt.CursorShape'>
- CustomPattern = 24
- DashDotDotLine = 5
- DashDotLine = 4
- DashLine = 2
- DateFormat = <class 'qt.DateFormat'>
- Dense1Pattern = 2
- Dense2Pattern = 3
- Dense3Pattern = 4
- Dense4Pattern = 5
- Dense5Pattern = 6
- Dense6Pattern = 7
- Dense7Pattern = 8
- Descending = 1
- DiagCrossPattern = 14
- DiffuseAlphaDither = 8
- DiffuseDither = 0
- DitherMode_Mask = 192
- Dither_Mask = 48
- Dock = <class 'qt.Dock'>
- DockBottom = 3
- DockLeft = 5
- DockMinimized = 6
- DockRight = 4
- DockTop = 2
- DockTornOff = 1
- DockUnmanaged = 0
- DontClip = 256
- DontPrint = 8192
- DotLine = 3
- DownArrow = 1
- EndsWith = 4
- EraseROP = 3
- ExactMatch = 16
- ExpandTabs = 512
- FDiagPattern = 13
- FixedColor = 0
- FixedPixmap = 1
- FlatCap = 0
- ForbiddenCursor = 14
- GUIStyle = <class 'qt.GUIStyle'>
- HorPattern = 9
- Horizontal = 0
- ISODate = 1
- IbeamCursor = 4
- Identical = 2
- ImageConversionFlags = <class 'qt.ImageConversionFlags'>
- Key = <class 'qt.Key'>
- KeyButtonMask = 3840
- Key_0 = 48
- Key_1 = 49
- Key_2 = 50
- Key_3 = 51
- Key_4 = 52
- Key_5 = 53
- Key_6 = 54
- Key_7 = 55
- Key_8 = 56
- Key_9 = 57
- Key_A = 65
- Key_AE = 198
- Key_Aacute = 193
- Key_Acircumflex = 194
- Key_Adiaeresis = 196
- Key_Agrave = 192
- Key_Alt = 4131
- Key_Ampersand = 38
- Key_Any = 32
- Key_Apostrophe = 39
- Key_Aring = 197
- Key_AsciiCircum = 94
- Key_AsciiTilde = 126
- Key_Asterisk = 42
- Key_At = 64
- Key_Atilde = 195
- Key_B = 66
- Key_Back = 4193
- Key_BackSpace = 4099
- Key_BackTab = 4098
- Key_Backslash = 92
- Key_Backspace = 4099
- Key_Backtab = 4098
- Key_Bar = 124
- Key_BassBoost = 4211
- Key_BassDown = 4213
- Key_BassUp = 4212
- Key_BraceLeft = 123
- Key_BraceRight = 125
- Key_BracketLeft = 91
- Key_BracketRight = 93
- Key_C = 67
- Key_CapsLock = 4132
- Key_Ccedilla = 199
- Key_Clear = 4107
- Key_Colon = 58
- Key_Comma = 44
- Key_Control = 4129
- Key_D = 68
- Key_Delete = 4103
- Key_Direction_L = 4185
- Key_Direction_R = 4192
- Key_Dollar = 36
- Key_Down = 4117
- Key_E = 69
- Key_ETH = 208
- Key_Eacute = 201
- Key_Ecircumflex = 202
- Key_Ediaeresis = 203
- Key_Egrave = 200
- Key_End = 4113
- Key_Enter = 4101
- Key_Equal = 61
- Key_Escape = 4096
- Key_Exclam = 33
- Key_F = 70
- Key_F1 = 4144
- Key_F10 = 4153
- Key_F11 = 4154
- Key_F12 = 4155
- Key_F13 = 4156
- Key_F14 = 4157
- Key_F15 = 4158
- Key_F16 = 4159
- Key_F17 = 4160
- Key_F18 = 4161
- Key_F19 = 4162
- Key_F2 = 4145
- Key_F20 = 4163
- Key_F21 = 4164
- Key_F22 = 4165
- Key_F23 = 4166
- Key_F24 = 4167
- Key_F25 = 4168
- Key_F26 = 4169
- Key_F27 = 4170
- Key_F28 = 4171
- Key_F29 = 4172
- Key_F3 = 4146
- Key_F30 = 4173
- Key_F31 = 4174
- Key_F32 = 4175
- Key_F33 = 4176
- Key_F34 = 4177
- Key_F35 = 4178
- Key_F4 = 4147
- Key_F5 = 4148
- Key_F6 = 4149
- Key_F7 = 4150
- Key_F8 = 4151
- Key_F9 = 4152
- Key_Favorites = 4241
- Key_Forward = 4194
- Key_G = 71
- Key_Greater = 62
- Key_H = 72
- Key_Help = 4184
- Key_Home = 4112
- Key_HomePage = 4240
- Key_Hyper_L = 4182
- Key_Hyper_R = 4183
- Key_I = 73
- Key_Iacute = 205
- Key_Icircumflex = 206
- Key_Idiaeresis = 207
- Key_Igrave = 204
- Key_Insert = 4102
- Key_J = 74
- Key_K = 75
- Key_L = 76
- Key_Launch0 = 4258
- Key_Launch1 = 4259
- Key_Launch2 = 4260
- Key_Launch3 = 4261
- Key_Launch4 = 4262
- Key_Launch5 = 4263
- Key_Launch6 = 4264
- Key_Launch7 = 4265
- Key_Launch8 = 4266
- Key_Launch9 = 4267
- Key_LaunchA = 4268
- Key_LaunchB = 4269
- Key_LaunchC = 4270
- Key_LaunchD = 4271
- Key_LaunchE = 4272
- Key_LaunchF = 4273
- Key_LaunchMail = 4256
- Key_LaunchMedia = 4257
- Key_Left = 4114
- Key_Less = 60
- Key_M = 77
- Key_MediaLast = 8191
- Key_MediaNext = 4227
- Key_MediaPlay = 4224
- Key_MediaPrev = 4226
- Key_MediaRecord = 4228
- Key_MediaStop = 4225
- Key_Menu = 4181
- Key_Meta = 4130
- Key_Minus = 45
- Key_N = 78
- Key_Next = 4119
- Key_Ntilde = 209
- Key_NumLock = 4133
- Key_NumberSign = 35
- Key_O = 79
- Key_Oacute = 211
- Key_Ocircumflex = 212
- Key_Odiaeresis = 214
- Key_Ograve = 210
- Key_Ooblique = 216
- Key_OpenUrl = 4244
- Key_Otilde = 213
- Key_P = 80
- Key_PageDown = 4119
- Key_PageUp = 4118
- Key_ParenLeft = 40
- Key_ParenRight = 41
- Key_Pause = 4104
- Key_Percent = 37
- Key_Period = 46
- Key_Plus = 43
- Key_Print = 4105
- Key_Prior = 4118
- Key_Q = 81
- Key_Question = 63
- Key_QuoteDbl = 34
- Key_QuoteLeft = 96
- Key_R = 82
- Key_Refresh = 4196
- Key_Return = 4100
- Key_Right = 4116
- Key_S = 83
- Key_ScrollLock = 4134
- Key_Search = 4242
- Key_Semicolon = 59
- Key_Shift = 4128
- Key_Slash = 47
- Key_Space = 32
- Key_Standby = 4243
- Key_Stop = 4195
- Key_Super_L = 4179
- Key_Super_R = 4180
- Key_SysReq = 4106
- Key_T = 84
- Key_THORN = 222
- Key_Tab = 4097
- Key_TrebleDown = 4215
- Key_TrebleUp = 4214
- Key_U = 85
- Key_Uacute = 218
- Key_Ucircumflex = 219
- Key_Udiaeresis = 220
- Key_Ugrave = 217
- Key_Underscore = 95
- Key_Up = 4115
- Key_V = 86
- Key_VolumeDown = 4208
- Key_VolumeMute = 4209
- Key_VolumeUp = 4210
- Key_W = 87
- Key_X = 88
- Key_Y = 89
- Key_Yacute = 221
- Key_Z = 90
- Key_aacute = 225
- Key_acircumflex = 226
- Key_acute = 180
- Key_adiaeresis = 228
- Key_ae = 230
- Key_agrave = 224
- Key_aring = 229
- Key_atilde = 227
- Key_brokenbar = 166
- Key_ccedilla = 231
- Key_cedilla = 184
- Key_cent = 162
- Key_copyright = 169
- Key_currency = 164
- Key_degree = 176
- Key_diaeresis = 168
- Key_division = 247
- Key_eacute = 233
- Key_ecircumflex = 234
- Key_ediaeresis = 235
- Key_egrave = 232
- Key_eth = 240
- Key_exclamdown = 161
- Key_guillemotleft = 171
- Key_guillemotright = 187
- Key_hyphen = 173
- Key_iacute = 237
- Key_icircumflex = 238
- Key_idiaeresis = 239
- Key_igrave = 236
- Key_macron = 175
- Key_masculine = 186
- Key_mu = 181
- Key_multiply = 215
- Key_nobreakspace = 160
- Key_notsign = 172
- Key_ntilde = 241
- Key_oacute = 243
- Key_ocircumflex = 244
- Key_odiaeresis = 246
- Key_ograve = 242
- Key_onehalf = 189
- Key_onequarter = 188
- Key_onesuperior = 185
- Key_ordfeminine = 170
- Key_oslash = 248
- Key_otilde = 245
- Key_paragraph = 182
- Key_periodcentered = 183
- Key_plusminus = 177
- Key_questiondown = 191
- Key_registered = 174
- Key_section = 167
- Key_ssharp = 223
- Key_sterling = 163
- Key_thorn = 254
- Key_threequarters = 190
- Key_threesuperior = 179
- Key_twosuperior = 178
- Key_uacute = 250
- Key_ucircumflex = 251
- Key_udiaeresis = 252
- Key_ugrave = 249
- Key_unknown = 65535
- Key_yacute = 253
- Key_ydiaeresis = 255
- Key_yen = 165
- Keypad = 16384
- LastCursor = 16
- LastROP = 15
- LeftArrow = 2
- LeftButton = 1
- LocalDate = 2
- LocalTime = 0
- LogText = 3
- META = 1048576
- MODIFIER_MASK = 15728640
- MPenCapStyle = 48
- MPenJoinStyle = 192
- MPenStyle = 15
- MV_10_DOT_0 = 2
- MV_10_DOT_1 = 3
- MV_10_DOT_2 = 4
- MV_10_DOT_3 = 5
- MV_10_DOT_4 = 6
- MV_9 = 1
- MV_CHEETAH = 2
- MV_JAGUAR = 4
- MV_PANTHER = 5
- MV_PUMA = 3
- MV_TIGER = 6
- MV_Unknown = 0
- MacintoshVersion = <class 'qt.MacintoshVersion'>
- MetaButton = 2048
- MidButton = 4
- MiterJoin = 0
- Modifier = <class 'qt.Modifier'>
- MonoOnly = 2
- MotifStyle = 4
- MouseButtonMask = 7
- NandROP = 14
- NoAccel = 16384
- NoBackground = 2
- NoBrush = 0
- NoButton = 0
- NoMatch = 0
- NoPen = 0
- NopROP = 11
- NorROP = 15
- NotAndROP = 3
- NotCopyROP = 4
- NotEraseROP = 7
- NotOrROP = 5
- NotROP = 8
- NotXorROP = 6
- OpaqueMode = 1
- OrNotROP = 13
- OrROP = 1
- OrderedAlphaDither = 4
- OrderedDither = 16
- Orientation = <class 'qt.Orientation'>
- PaletteBackground = 12
- PaletteBase = 11
- PaletteBrightText = 10
- PaletteButton = 4
- PaletteButtonText = 16
- PaletteDark = 7
- PaletteForeground = 3
- PaletteHighlight = 14
- PaletteHighlightedText = 15
- PaletteLight = 5
- PaletteLink = 17
- PaletteLinkVisited = 18
- PaletteMid = 8
- PaletteMidlight = 6
- PaletteShadow = 13
- PaletteText = 9
- PartialMatch = 1
- PenCapStyle = <class 'qt.PenCapStyle'>
- PenJoinStyle = <class 'qt.PenJoinStyle'>
- PenStyle = <class 'qt.PenStyle'>
- PlainText = 0
- PointingHandCursor = 13
- PreferDither = 64
- RasterOp = <class 'qt.RasterOp'>
- RichText = 1
- RightArrow = 3
- RightButton = 2
- RoundCap = 32
- RoundJoin = 128
- SHIFT = 2097152
- SequenceMatch = <class 'qt.SequenceMatch'>
- SetROP = 10
- ShiftButton = 256
- ShowPrefix = 1024
- SingleLine = 128
- SizeAllCursor = 9
- SizeBDiagCursor = 7
- SizeFDiagCursor = 8
- SizeHorCursor = 6
- SizeVerCursor = 5
- SolidLine = 1
- SolidPattern = 1
- SortOrder = <class 'qt.SortOrder'>
- SplitHCursor = 12
- SplitVCursor = 11
- SquareCap = 16
- StringComparisonMode = <class 'qt.StringComparisonMode'>
- TextDate = 0
- TextFlags = <class 'qt.TextFlags'>
- TextFormat = <class 'qt.TextFormat'>
- ThresholdAlphaDither = 0
- ThresholdDither = 32
- TimeSpec = <class 'qt.TimeSpec'>
- TopLeft = 0
- TopRight = 1
- TransparentMode = 0
- UIEffect = <class 'qt.UIEffect'>
- UI_AnimateCombo = 3
- UI_AnimateMenu = 1
- UI_AnimateToolBox = 6
- UI_AnimateTooltip = 4
- UI_FadeMenu = 2
- UI_FadeTooltip = 5
- UI_General = 0
- UNICODE_ACCEL = 268435456
- UTC = 1
- UpArrow = 0
- UpArrowCursor = 1
- VerPattern = 10
- Vertical = 1
- WDestructiveClose = 65536
- WGroupLeader = 33554432
- WMouseNoMask = 2097152
- WNoAutoErase = 9437184
- WNoMousePropagation = 134217728
- WPaintClever = 524288
- WPaintDesktop = 131072
- WPaintUnclipped = 262144
- WRepaintNoErase = 8388608
- WResizeNoErase = 1048576
- WShowModal = 67108864
- WState_Polished = 8192
- WStaticContents = 4194304
- WStyle_ContextHelp = 16384
- WStyle_Customize = 16
- WStyle_DialogBorder = 64
- WStyle_Mask = 65520
- WStyle_Maximize = 1024
- WStyle_MinMax = 1536
- WStyle_Minimize = 512
- WStyle_NoBorder = 8192
- WStyle_NormalBorder = 32
- WStyle_Reserved = 32768
- WStyle_Splash = 536870912
- WStyle_StaysOnTop = 4096
- WStyle_SysMenu = 256
- WStyle_Title = 128
- WStyle_Tool = 2048
- WSubWindow = 268435456
- WType_Desktop = 8
- WType_Dialog = 2
- WType_Mask = 15
- WType_Popup = 4
- WType_TopLevel = 1
- WV_2000 = 32
- WV_2003 = 64
- WV_32s = 1
- WV_95 = 2
- WV_98 = 3
- WV_CE = 256
- WV_CENET = 512
- WV_CE_based = 3840
- WV_DOS_based = 15
- WV_Me = 4
- WV_NT = 16
- WV_NT_based = 240
- WV_VISTA = 128
- WV_XP = 48
- WWinOwnDC = 0
- WX11BypassWM = 16777216
- WaitCursor = 3
- WhatsThisCursor = 15
- WidgetFlags = <class 'qt.WidgetFlags'>
- WidgetState = <class 'qt.WidgetState'>
- WindowActive = 8
- WindowFullScreen = 4
- WindowMaximized = 2
- WindowMinimized = 1
- WindowNoState = 0
- WindowState = <class 'qt.WindowState'>
- WindowsStyle = 1
- WindowsVersion = <class 'qt.WindowsVersion'>
- WordBreak = 2048
- X11ParentRelative = 19
- XorROP = 2
- __weakref__ = <attribute '__weakref__' of 'Qt' objects>
- list of weak references to the object (if defined)
- arrowCursor = <qt.QCursor object>
- black = <qt.QColor object>
- blankCursor = <qt.QCursor object>
- blue = <qt.QColor object>
- busyCursor = <qt.QCursor object>
- color0 = <qt.QColor object>
- color1 = <qt.QColor object>
- crossCursor = <qt.QCursor object>
- cyan = <qt.QColor object>
- darkBlue = <qt.QColor object>
- darkCyan = <qt.QColor object>
- darkGray = <qt.QColor object>
- darkGreen = <qt.QColor object>
- darkMagenta = <qt.QColor object>
- darkRed = <qt.QColor object>
- darkYellow = <qt.QColor object>
- forbiddenCursor = <qt.QCursor object>
- gray = <qt.QColor object>
- green = <qt.QColor object>
- ibeamCursor = <qt.QCursor object>
- lightGray = <qt.QColor object>
- magenta = <qt.QColor object>
- pointingHandCursor = <qt.QCursor object>
- red = <qt.QColor object>
- sizeAllCursor = <qt.QCursor object>
- sizeBDiagCursor = <qt.QCursor object>
- sizeFDiagCursor = <qt.QCursor object>
- sizeHorCursor = <qt.QCursor object>
- sizeVerCursor = <qt.QCursor object>
- splitHCursor = <qt.QCursor object>
- splitVCursor = <qt.QCursor object>
- upArrowCursor = <qt.QCursor object>
- waitCursor = <qt.QCursor object>
- whatsThisCursor = <qt.QCursor object>
- white = <qt.QColor object>
- yellow = <qt.QColor object>
Data and other attributes inherited from qt.QPaintDevice:
- PDevCmd = <class 'qt.PDevCmd'>
- PdcBegin = 30
- PdcDrawArc = 8
- PdcDrawChord = 10
- PdcDrawCubicBezier = 14
- PdcDrawEllipse = 7
- PdcDrawFirst = 1
- PdcDrawImage = 18
- PdcDrawLast = 21
- PdcDrawLine = 4
- PdcDrawLineSegments = 11
- PdcDrawPie = 9
- PdcDrawPixmap = 17
- PdcDrawPoint = 1
- PdcDrawPolygon = 13
- PdcDrawPolyline = 12
- PdcDrawRect = 5
- PdcDrawRoundRect = 6
- PdcDrawText = 15
- PdcDrawText2 = 19
- PdcDrawText2Formatted = 20
- PdcDrawTextFormatted = 16
- PdcDrawTextItem = 21
- PdcEnd = 31
- PdcLineTo = 3
- PdcMoveTo = 2
- PdcNOP = 0
- PdcReservedStart = 0
- PdcReservedStop = 199
- PdcRestore = 33
- PdcRestoreWMatrix = 57
- PdcSave = 32
- PdcSaveWMatrix = 56
- PdcSetBkColor = 40
- PdcSetBkMode = 41
- PdcSetBrush = 47
- PdcSetBrushOrigin = 43
- PdcSetClip = 60
- PdcSetClipRegion = 61
- PdcSetFont = 45
- PdcSetPen = 46
- PdcSetROP = 42
- PdcSetTabArray = 49
- PdcSetTabStops = 48
- PdcSetUnit = 50
- PdcSetVXform = 51
- PdcSetViewport = 53
- PdcSetWMatrix = 55
- PdcSetWXform = 54
- PdcSetWindow = 52
- PdcSetdev = 34
- devType = <built-in function devType>
- handle = <built-in function handle>
- isExtDev = <built-in function isExtDev>
- paintingActive = <built-in function paintingActive>
- resolution = <built-in function resolution>
- setResolution = <built-in function setResolution>
- x11AppCells = <built-in function x11AppCells>
- x11AppColormap = <built-in function x11AppColormap>
- x11AppDefaultColormap = <built-in function x11AppDefaultColormap>
- x11AppDefaultVisual = <built-in function x11AppDefaultVisual>
- x11AppDepth = <built-in function x11AppDepth>
- x11AppDisplay = <built-in function x11AppDisplay>
- x11AppDpiX = <built-in function x11AppDpiX>
- x11AppDpiY = <built-in function x11AppDpiY>
- x11AppRootWindow = <built-in function x11AppRootWindow>
- x11AppScreen = <built-in function x11AppScreen>
- x11AppVisual = <built-in function x11AppVisual>
- x11Cells = <built-in function x11Cells>
- x11Colormap = <built-in function x11Colormap>
- x11DefaultColormap = <built-in function x11DefaultColormap>
- x11DefaultVisual = <built-in function x11DefaultVisual>
- x11Depth = <built-in function x11Depth>
- x11Display = <built-in function x11Display>
- x11RenderHandle = <built-in function x11RenderHandle>
- x11Screen = <built-in function x11Screen>
- x11SetAppDpiX = <built-in function x11SetAppDpiX>
- x11SetAppDpiY = <built-in function x11SetAppDpiY>
- x11Visual = <built-in function x11Visual>
Data and other attributes inherited from kdeui.KXMLGUIBuilder:
- builderClient = <built-in function builderClient>
- builderInstance = <built-in function builderInstance>
- containerTags = <built-in function containerTags>
- createCustomElement = <built-in function createCustomElement>
- customTags = <built-in function customTags>
- removeContainer = <built-in function removeContainer>
- removeCustomElement = <built-in function removeCustomElement>
- setBuilderClient = <built-in function setBuilderClient>
- setBuilderInstance = <built-in function setBuilderInstance>
- widget = <built-in function widget>
Data and other attributes inherited from kparts.PartBase:
- partObject = <built-in function partObject>
- setPartObject = <built-in function setPartObject>
Data and other attributes inherited from kdeui.KXMLGUIClient:
- ReverseStateChange = <class 'kdeui.ReverseStateChange'>
- StateChange = <class 'kdeui.StateChange'>
- StateNoReverse = 0
- StateReverse = 1
- action = <built-in function action>
- actionCollection = <built-in function actionCollection>
- addStateActionDisabled = <built-in function addStateActionDisabled>
- addStateActionEnabled = <built-in function addStateActionEnabled>
- beginXMLPlug = <built-in function beginXMLPlug>
- childClients = <built-in function childClients>
- clientBuilder = <built-in function clientBuilder>
- domDocument = <built-in function domDocument>
- endXMLPlug = <built-in function endXMLPlug>
- factory = <built-in function factory>
- findMostRecentXMLFile = <built-in function findMostRecentXMLFile>
- getActionsToChangeForState = <built-in function getActionsToChangeForState>
- insertChildClient = <built-in function insertChildClient>
- instance = <built-in function instance>
- localXMLFile = <built-in function localXMLFile>
- parentClient = <built-in function parentClient>
- plugActionList = <built-in function plugActionList>
- prepareXMLUnplug = <built-in function prepareXMLUnplug>
- reloadXML = <built-in function reloadXML>
- removeChildClient = <built-in function removeChildClient>
- setClientBuilder = <built-in function setClientBuilder>
- setFactory = <built-in function setFactory>
- setXMLGUIBuildDocument = <built-in function setXMLGUIBuildDocument>
- unplugActionList = <built-in function unplugActionList>
- xmlFile = <built-in function xmlFile>
- xmlguiBuildDocument = <built-in function xmlguiBuildDocument>
Methods inherited from sip.wrapper:
- __delattr__(...)
- x.__delattr__('name') <==> del x.name
- __getattribute__(...)
- x.__getattribute__('name') <==> x.name
- __setattr__(...)
- x.__setattr__('name', value) <==> x.name = value
Data and other attributes inherited from sip.wrapper:
- __new__ = <built-in method __new__ of sip.wrappertype object>
- T.__new__(S, ...) -> a new object with type S, a subtype of T
| |