]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/msw/frames.py
fixed clipping of items with icons text in report mode
[wxWidgets.git] / wxPython / src / msw / frames.py
index 41bd81763637b6aa7c52dae8d30be5f6febbd009..7a82522e7536cadd0c688a428a596838a72dbade 100644 (file)
@@ -99,6 +99,9 @@ class wxFramePtr(wxWindowPtr):
     def ShowFullScreen(self, *_args, **_kwargs):
         val = apply(framesc.wxFrame_ShowFullScreen,(self,) + _args, _kwargs)
         return val
+    def IsFullScreen(self, *_args, **_kwargs):
+        val = apply(framesc.wxFrame_IsFullScreen,(self,) + _args, _kwargs)
+        return val
     def __repr__(self):
         return "<C wxFrame instance at %s>" % (self.this,)
 class wxFrame(wxFramePtr):
@@ -125,6 +128,20 @@ class wxMiniFrame(wxMiniFramePtr):
 
 
 
+class wxTipWindowPtr(wxFramePtr):
+    def __init__(self,this):
+        self.this = this
+        self.thisown = 0
+    def __repr__(self):
+        return "<C wxTipWindow instance at %s>" % (self.this,)
+class wxTipWindow(wxTipWindowPtr):
+    def __init__(self,*_args,**_kwargs):
+        self.this = apply(framesc.new_wxTipWindow,_args,_kwargs)
+        self.thisown = 1
+
+
+
+
 
 
 #-------------- FUNCTION WRAPPERS ------------------