]> git.sesse.net Git - vlc/blobdiff - modules/gui/skins2/src/dialogs.hpp
* wxwidgets/menus.cpp: Added "Open Directory" in the wx popup menu
[vlc] / modules / gui / skins2 / src / dialogs.hpp
index cf6fda5033f37fe0362d7054fd04dbdefb403c22..239f7339986446c20c3c459fa5167ded808ed180 100644 (file)
@@ -33,8 +33,7 @@
 class Dialogs: public SkinObject
 {
     public:
-        /// Get the instance of Dialogs
-        /// Returns NULL if initialization failed
+        /// Get the instance of Dialogs (or NULL if initialization failed)
         static Dialogs *instance( intf_thread_t *pIntf );
 
         /// Delete the instance of Dialogs
@@ -49,20 +48,29 @@ class Dialogs: public SkinObject
         /// Show the Save Playlist dialog
         void showPlaylistSave();
 
-        /// Show the Quick Open File dialog.
-        /// If play is false, just add the item in the playlist
+        /** Show the Quick Open File dialog.
+         *  If play is false, just add the item in the playlist
+         */
         void showFileSimple( bool play );
 
-        /// Show the Open File dialog
-        /// If play is false, just add the item in the playlist
+        /** Show the Open File dialog
+         *  If play is false, just add the item in the playlist
+         */
         void showFile( bool play );
 
-        /// Show the Open Disc dialog
-        /// If play is false, just add the item in the playlist
+        /** Show the Open Directory dialog
+         *  If play is false, just add the item in the playlist
+         */
+        void showDirectory( bool play );
+
+        /** Show the Open Disc dialog
+         *  If play is false, just add the item in the playlist
+         */
         void showDisc( bool play );
 
-        /// Show the Open Network Stream dialog
-        /// If play is false, just add the item in the playlist
+        /** Show the Open Network Stream dialog
+         *  If play is false, just add the item in the playlist
+         */
         void showNet( bool play );
 
         /// Show the Messages dialog
@@ -74,6 +82,9 @@ class Dialogs: public SkinObject
         /// Show the FileInfo dialog
         void showFileInfo();
 
+        /// Show the Streaming Wizard dialog
+        void showStreamingWizard();
+
         /// Show the popup menu
         void showPopupMenu( bool bShow );
 
@@ -96,9 +107,10 @@ class Dialogs: public SkinObject
         /// Initialization method
         bool init();
 
-        /// Show a generic open/save dialog, initialized with the given
-        /// parameters
-        /// The 'flags' parameter is a logical or of the flags_t values
+        /** Show a generic open/save dialog, initialized with the given
+         *  parameters
+         *  The 'flags' parameter is a logical or of the flags_t values
+         */
         void showFileGeneric( const string &rTitle, const string &rExtensions,
                               DlgCallback callback, int flags );