window.py :  » Windows » pyExcelerator » pywin32-214 » pythonwin » pywin » mfc » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Windows » pyExcelerator 
pyExcelerator » pywin32 214 » pythonwin » pywin » mfc » window.py
# The MFCish window classes.
import object
import win32ui
import win32con

class Wnd(object.CmdTarget):
  def __init__(self, initobj=None):
    object.CmdTarget.__init__(self, initobj)
    if self._obj_: self._obj_.HookMessage(self.OnDestroy, win32con.WM_DESTROY)
  def OnDestroy(self, msg):
    pass

# NOTE NOTE - This facility is currently disabled in Pythonwin!!!!!
# Note - to process all messages for your window, add the following method
# to a derived class.  This code provides default message handling (ie, is
# identical, except presumably in speed, as if the method did not exist at
# all, so presumably will be modified to test for specific messages to be 
# useful!
#  def WindowProc(self, msg, wParam, lParam):
#    rc, lResult = self._obj_.OnWndMsg(msg, wParam, lParam)
#    if not rc: lResult = self._obj_.DefWindowProc(msg, wParam, lParam)
#    return lResult

class FrameWnd(Wnd):
  def __init__(self, wnd):
    Wnd.__init__(self, wnd)

class MDIChildWnd(FrameWnd):
  def __init__(self, wnd = None):
    if wnd is None:
      wnd=win32ui.CreateMDIChild()
    FrameWnd.__init__(self, wnd)
  def OnCreateClient(self, cp, context):
    if context is not None and context.template is not None:
      context.template.CreateView(self, context)

class MDIFrameWnd(FrameWnd):
  def __init__(self, wnd = None):
    if wnd is None:
      wnd=win32ui.CreateMDIFrame()
    FrameWnd.__init__(self, wnd)
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.