]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/media.i
Mention the SWIG_VERSION change
[wxWidgets.git] / wxPython / src / media.i
index d811acb598203aaff7316c7a0b8271dac4c97892..d0f300f2763eea2c1118e0b74a191a66ab128a49 100644 (file)
@@ -122,6 +122,7 @@ public:
 
 const wxEventType wxEVT_MEDIA_FINISHED = 0;
 const wxEventType wxEVT_MEDIA_STOP = 0;
+const wxEventType wxEVT_MEDIA_LOADED = 0;
 
 #endif
 %}
@@ -218,10 +219,12 @@ public:
 
 %constant wxEventType wxEVT_MEDIA_FINISHED;
 %constant wxEventType wxEVT_MEDIA_STOP;
+%constant wxEventType wxEVT_MEDIA_LOADED;
 
 %pythoncode {
 EVT_MEDIA_FINISHED = wx.PyEventBinder( wxEVT_MEDIA_FINISHED, 1)
 EVT_MEDIA_STOP     = wx.PyEventBinder( wxEVT_MEDIA_STOP, 1)
+EVT_MEDIA_LOADED   = wx.PyEventBinder( wxEVT_MEDIA_LOADED, 1)    
 }    
 
 //---------------------------------------------------------------------------