]> git.saurik.com Git - wxWidgets.git/commitdiff
added overview text for wx.MediaCtrl demo, udpated CHANGES
authorRobin Dunn <robin@alldunn.com>
Wed, 24 Nov 2004 19:49:08 +0000 (19:49 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 24 Nov 2004 19:49:08 +0000 (19:49 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30765 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/demo/MediaCtrl.py
wxPython/docs/CHANGES.txt

index 503648af9bbfd8922cf4f76a8c6c72a26ebbe8d5..91455942998145ecae11dd969887a1796bcdb95e 100644 (file)
@@ -103,6 +103,16 @@ def runTest(frame, nb, log):
 overview = """<html><body>
 <h2><center>wx.MediaCtrl</center></h2>
 
+wx.MediaCtrl is a class that allows a way to convieniently display types of 
+media, such as videos, audio files, natively through native codecs.
+
+<p>
+wx.MediaCtrl uses native backends to render media, for example on Windows
+there is a ActiveMovie/DirectShow backend, and on Macintosh there is a 
+QuickTime backend.
+<p>
+wx.MediaCtrl is not currently available on unix systems. 
+
 </body></html>
 """
 
index 06ccb174387e1f3b2de374f85c0e38b512055f0f..cc1577748e220e592a955ce5a85178c2e81ec566 100644 (file)
@@ -21,6 +21,7 @@ XRC:
     - Added 'icon' property to wxFrame and wxDialog
     - No longer ignores menu bitmaps on non-MSW platforms
     - Notebook page bitmaps are now supported
+    - added system colours and fonts support (based on patch #1038207)
 
 wxMSW: fix for [ 1052989 ] TextCtrl.SetBackgroundColour(wx.NullColour)
 bug.
@@ -58,6 +59,22 @@ internal scrollbar visible.
 Added wx.StandardPaths which provides methods for determining standard
 system paths for each platform.
 
+wxMSW: The window background is now only erased by default if the
+background colour or background mode has been changed.  This better
+allows the default system themed behaviour to show through for
+uncustomized windows.  Explicit support added for using the correct
+theme texture for wx.Notebook pages and their children.
+
+wx.Image: Added support for alpha channels in interpolated and
+non-interpolated image rotation.  Added ConvertAlphaToMask helper
+method for turning shades of grey into shades of alpha and a colour.
+
+wxGTK2: Reimplemented DoDrawRotatedText() by way of a rotation of an
+alpha blended text bitmap.  It would be better if Pango could draw
+directly into an wxImage (as FreeType can,) but that is for later...
+
+Added wrappers for wx.MediaCtrl.
+