mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-08 14:10:52 -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]
75 lines
2 KiB
Python
75 lines
2 KiB
Python
# dlgappcore.
|
|
#
|
|
# base classes for dialog based apps.
|
|
|
|
|
|
import win32api
|
|
import win32con
|
|
import win32ui
|
|
from pywin.mfc import dialog
|
|
|
|
from . import app
|
|
|
|
error = "Dialog Application Error"
|
|
|
|
|
|
class AppDialog(dialog.Dialog):
|
|
"The dialog box for the application"
|
|
|
|
def __init__(self, id, dll=None):
|
|
self.iconId = win32ui.IDR_MAINFRAME
|
|
dialog.Dialog.__init__(self, id, dll)
|
|
|
|
def OnInitDialog(self):
|
|
return dialog.Dialog.OnInitDialog(self)
|
|
|
|
# Provide support for a dlg app using an icon
|
|
def OnPaint(self):
|
|
if not self.IsIconic():
|
|
return self._obj_.OnPaint()
|
|
self.DefWindowProc(win32con.WM_ICONERASEBKGND, dc.GetHandleOutput(), 0)
|
|
left, top, right, bottom = self.GetClientRect()
|
|
left = (right - win32api.GetSystemMetrics(win32con.SM_CXICON)) >> 1
|
|
top = (bottom - win32api.GetSystemMetrics(win32con.SM_CYICON)) >> 1
|
|
hIcon = win32ui.GetApp().LoadIcon(self.iconId)
|
|
self.GetDC().DrawIcon((left, top), hIcon)
|
|
|
|
# Only needed to provide a minimized icon (and this seems
|
|
# less important under win95/NT4
|
|
def OnEraseBkgnd(self, dc):
|
|
if self.IsIconic():
|
|
return 1
|
|
else:
|
|
return self._obj_.OnEraseBkgnd(dc)
|
|
|
|
def OnQueryDragIcon(self):
|
|
return win32ui.GetApp().LoadIcon(self.iconId)
|
|
|
|
def PreDoModal(self):
|
|
pass
|
|
|
|
|
|
class DialogApp(app.CApp):
|
|
"An application class, for an app with main dialog box"
|
|
|
|
def InitInstance(self):
|
|
# win32ui.SetProfileFileName('dlgapp.ini')
|
|
win32ui.LoadStdProfileSettings()
|
|
win32ui.EnableControlContainer()
|
|
win32ui.Enable3dControls()
|
|
self.dlg = self.frame = self.CreateDialog()
|
|
|
|
if self.frame is None:
|
|
raise error("No dialog was created by CreateDialog()")
|
|
return
|
|
|
|
self._obj_.InitDlgInstance(self.dlg)
|
|
self.PreDoModal()
|
|
self.dlg.PreDoModal()
|
|
self.dlg.DoModal()
|
|
|
|
def CreateDialog(self):
|
|
pass
|
|
|
|
def PreDoModal(self):
|
|
pass
|