File indexing completed on 2024-05-12 16:09:11

0001 class pyqtSignal():
0002  def connect(self, targetSignal): pass
0003  def emit(self, *args): pass
0004 from QtCore import *
0005 
0006 from QtWidgets import *
0007 
0008 import datetime
0009 
0010 class QX11Info():
0011     """"""
0012     def __init__(self):
0013         '''QX11Info QX11Info.__init__()'''
0014         return QX11Info()
0015     def connection(self):
0016         '''static xcb_connection_t QX11Info.connection()'''
0017         return xcb_connection_t()
0018     def display(self):
0019         '''static Display QX11Info.display()'''
0020         return Display()
0021     def setNextStartupId(self, id):
0022         '''static void QX11Info.setNextStartupId(QByteArray id)'''
0023     def nextStartupId(self):
0024         '''static QByteArray QX11Info.nextStartupId()'''
0025         return QByteArray()
0026     def getTimestamp(self):
0027         '''static int QX11Info.getTimestamp()'''
0028         return int()
0029     def setAppUserTime(self, time):
0030         '''static void QX11Info.setAppUserTime(int time)'''
0031     def setAppTime(self, time):
0032         '''static void QX11Info.setAppTime(int time)'''
0033     def appUserTime(self):
0034         '''static int QX11Info.appUserTime()'''
0035         return int()
0036     def appTime(self):
0037         '''static int QX11Info.appTime()'''
0038         return int()
0039     def appScreen(self):
0040         '''static int QX11Info.appScreen()'''
0041         return int()
0042     def appRootWindow(self, screen = None):
0043         '''static int QX11Info.appRootWindow(int screen = -1)'''
0044         return int()
0045     def appDpiY(self, screen = None):
0046         '''static int QX11Info.appDpiY(int screen = -1)'''
0047         return int()
0048     def appDpiX(self, screen = None):
0049         '''static int QX11Info.appDpiX(int screen = -1)'''
0050         return int()
0051     def isPlatformX11(self):
0052         '''static bool QX11Info.isPlatformX11()'''
0053         return bool()
0054 
0055