]> git.sesse.net Git - vlc/blobdiff - modules/gui/wxwidgets/interface.hpp
Add missing shortnames.
[vlc] / modules / gui / wxwidgets / interface.hpp
index 89615511c08cbbce23c361d25c880ae159960a40..9416792b24398059f758f9ddb0999fb7bd3dfb03 100644 (file)
@@ -43,13 +43,13 @@ namespace wxvlc
     class DragAndDrop: public wxFileDropTarget
     {
     public:
-        DragAndDrop( intf_thread_t *_p_intf, vlc_bool_t b_enqueue = VLC_FALSE );
+        DragAndDrop( intf_thread_t *_p_intf, bool b_enqueue = false );
         virtual bool OnDropFiles( wxCoord x, wxCoord y,
                                   const wxArrayString& filenames );
 
     private:
         intf_thread_t *p_intf;
-        vlc_bool_t b_enqueue;
+        bool b_enqueue;
     };
 #endif
 
@@ -128,6 +128,8 @@ namespace wxvlc
         /* Event handlers (these functions should _not_ be virtual) */
         void OnExit( wxCommandEvent& event );
         void OnAbout( wxCommandEvent& event );
+        void OnWebLink( wxCommandEvent& event );
+        void OnWebHelp( wxCommandEvent& event );
 
         void OnOpenFileSimple( wxCommandEvent& event );
         void OnOpenDir( wxCommandEvent& event );
@@ -147,6 +149,9 @@ namespace wxvlc
         void OnNextStream( wxCommandEvent& event );
         void OnSlowStream( wxCommandEvent& event );
         void OnFastStream( wxCommandEvent& event );
+       void OnToggleMute( wxCommandEvent& event );
+       void OnSlideVolume( wxScrollEvent& event );
+        void SyncVolume( );
 
         void OnInteraction( wxCommandEvent& event );
 
@@ -164,6 +169,7 @@ namespace wxvlc
         Timer *timer;
         intf_thread_t *p_intf;
 
+        unsigned int i_update_counter;
         int i_old_playing_status;
 
         /* For auto-generated menus */
@@ -173,7 +179,7 @@ namespace wxvlc
         wxMenu *p_navig_menu;
 
         /* Extended panel */
-        vlc_bool_t  b_extra;
+        bool  b_extra;
         wxPanel     *extra_frame;
 
         /* Playlist panel */