]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/wxMimeTypesManager.py
fix text scrolling in GTK2 (patch 703988)
[wxWidgets.git] / wxPython / demo / wxMimeTypesManager.py
index 7c9a03a2c1668118f030a1232881bbc6f855425a..d6356389d4b6acd4687fcd786523bc5c35522675 100644 (file)
@@ -2,6 +2,7 @@
 import pprint, string, os
 from wxPython.wx import *
 from mimetypes_wdr import *
+from Main import opj
 
 #----------------------------------------------------------------------------
 
@@ -13,7 +14,7 @@ class MimeTypesTestPanel(wxPanel):
         style = wxTAB_TRAVERSAL ):
         wxPanel.__init__(self, parent, id, pos, size, style)
 
-        MakeMimeTypesTestPanel( self, true )
+        MakeMimeTypesTestPanel( self, True )
 
         # WDR: handler declarations for MimeTypesTestPanel
         EVT_LISTBOX(self, ID_LISTBOX, self.OnListbox)
@@ -33,8 +34,8 @@ class MimeTypesTestPanel(wxPanel):
     def OnListbox(self, event):
         mimetype = event.GetString()
         self.GetInputText().SetValue(mimetype)
-        self.GetMimeBtn().SetValue(TRUE)
-        self.GetExtensionBtn().SetValue(FALSE)
+        self.GetMimeBtn().SetValue(True)
+        self.GetExtensionBtn().SetValue(False)
         self.OnLookup()
 
 
@@ -164,10 +165,19 @@ overview = """\
 
 
 import mimetypes_wdr
+import images
 
 def MyBitmapsFunc( index ):
-    return wxImage( "bitmaps/noicon.png", wxBITMAP_TYPE_PNG ).ConvertToBitmap()
+    return images.getNoIconBitmap()
 
 mimetypes_wdr.MyBitmapsFunc = MyBitmapsFunc
 
 
+
+
+
+
+if __name__ == '__main__':
+    import sys,os
+    import run
+    run.main(['', os.path.basename(sys.argv[0])])