]> git.sesse.net Git - vlc/blobdiff - modules/gui/wxwidgets/dialogs/open.hpp
Fixed printf format for size_t.
[vlc] / modules / gui / wxwidgets / dialogs / open.hpp
index 14b02e6f60e6d2fcfa4e814bde9f5beeab69bdc1..709269d6d11d7c6f73c4f8b75f173e6323754cc4 100644 (file)
@@ -2,7 +2,7 @@
  * open.hpp: Headers for the Open dialog
  *****************************************************************************
  * Copyright (C) 1999-2005 the VideoLAN team
- * $Id: wxwidgets.h 12670 2005-09-25 11:16:31Z zorglub $
+ * $Id$
  *
  * Authors: Gildas Bazin <gbazin@videolan.org>
  *
@@ -18,7 +18,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 #ifndef _WXVLC_OPEN_H_
@@ -27,6 +27,7 @@
 #include "wxwidgets.hpp"
 
 #include <wx/spinctrl.h>
+#include <wx/notebook.h>
 
 class AutoBuiltPanel;
 namespace wxvlc
@@ -74,6 +75,8 @@ private:
     /* Event handlers for the file page */
     void OnFilePanelChange( wxCommandEvent& event );
     void OnFileBrowse( wxCommandEvent& event );
+    void OnSubFileBrowse( wxCommandEvent& event );
+    void OnSubFileChange( wxCommandEvent& event );
 
     /* Event handlers for the disc page */
     void OnDiscPanelChangeSpin( wxSpinEvent& event );
@@ -117,6 +120,7 @@ private:
 
     /* Controls for the file panel */
     wxComboBox *file_combo;
+    wxComboBox *subfile_combo;
     wxFileDialog *file_dialog;
 
     /* Controls for the disc panel */
@@ -151,6 +155,7 @@ private:
 
     /* Controls for the subtitles file */
     wxButton *subsfile_button;
+    wxButton *subbrowse_button;
     wxCheckBox *subsfile_checkbox;
     SubsFileDialog *subsfile_dialog;
     wxArrayString subsfile_mrl;