mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-11 07:46:07 -07:00
* Bump cherrypy from 18.8.0 to 18.9.0 Bumps [cherrypy](https://github.com/cherrypy/cherrypy) from 18.8.0 to 18.9.0. - [Changelog](https://github.com/cherrypy/cherrypy/blob/main/CHANGES.rst) - [Commits](https://github.com/cherrypy/cherrypy/compare/v18.8.0...v18.9.0) --- updated-dependencies: - dependency-name: cherrypy dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update cherrypy==18.9.0 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
72 lines
1.5 KiB
Python
72 lines
1.5 KiB
Python
# dojobapp - do a job, show the result in a dialog, and exit.
|
|
#
|
|
# Very simple - faily minimal dialog based app.
|
|
#
|
|
# This should be run using the command line:
|
|
# pythonwin /app demos\dojobapp.py
|
|
|
|
|
|
import win32api
|
|
import win32con
|
|
import win32ui
|
|
from pywin.framework import app, dlgappcore
|
|
|
|
|
|
class DoJobAppDialog(dlgappcore.AppDialog):
|
|
softspace = 1
|
|
|
|
def __init__(self, appName=""):
|
|
self.appName = appName
|
|
dlgappcore.AppDialog.__init__(self, win32ui.IDD_GENERAL_STATUS)
|
|
|
|
def PreDoModal(self):
|
|
pass
|
|
|
|
def ProcessArgs(self, args):
|
|
pass
|
|
|
|
def OnInitDialog(self):
|
|
self.SetWindowText(self.appName)
|
|
butCancel = self.GetDlgItem(win32con.IDCANCEL)
|
|
butCancel.ShowWindow(win32con.SW_HIDE)
|
|
p1 = self.GetDlgItem(win32ui.IDC_PROMPT1)
|
|
p2 = self.GetDlgItem(win32ui.IDC_PROMPT2)
|
|
|
|
# Do something here!
|
|
|
|
p1.SetWindowText("Hello there")
|
|
p2.SetWindowText("from the demo")
|
|
|
|
def OnDestroy(self, msg):
|
|
pass
|
|
|
|
|
|
# def OnOK(self):
|
|
# pass
|
|
# def OnCancel(self): default behaviour - cancel == close.
|
|
# return
|
|
|
|
|
|
class DoJobDialogApp(dlgappcore.DialogApp):
|
|
def CreateDialog(self):
|
|
return DoJobAppDialog("Do Something")
|
|
|
|
|
|
class CopyToDialogApp(DoJobDialogApp):
|
|
def __init__(self):
|
|
DoJobDialogApp.__init__(self)
|
|
|
|
|
|
app.AppBuilder = DoJobDialogApp
|
|
|
|
|
|
def t():
|
|
t = DoJobAppDialog("Copy To")
|
|
t.DoModal()
|
|
return t
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import demoutils
|
|
|
|
demoutils.NeedApp()
|