/***************************************************************************** * open.hpp : advanced open dialog **************************************************************************** * Copyright (C) 2006-2007 the VideoLAN team * $Id$ * * Authors: Jean-Baptiste Kempf * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * 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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. ******************************************************************************/ #ifndef QVLC_OPEN_DIALOG_H_ #define QVLC_OPEN_DIALOG_H_ 1 #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include "util/qvlcframe.hpp" #include "ui/open.h" #include "components/open_panels.hpp" enum { OPEN_FILE_TAB, OPEN_DISC_TAB, OPEN_NETWORK_TAB, OPEN_CAPTURE_TAB, OPEN_TAB_MAX }; enum { OPEN_AND_PLAY, OPEN_AND_ENQUEUE, OPEN_AND_STREAM, OPEN_AND_SAVE, SELECT /* Special mode to select a MRL (for VLM or similar */ }; class QString; class OpenDialog : public QVLCDialog { Q_OBJECT public: static OpenDialog * getInstance( QWidget *parent, intf_thread_t *p_intf, bool b_rawInstance = false, int _action_flag = 0, bool b_selectMode = false, bool b_pl = true ); static void killInstance() { delete instance; instance = NULL; } void showTab( int = OPEN_FILE_TAB ); QString getMRL( bool b = true ); QStringList getMRLs( bool b = true ); QString getOptions(); public slots: void selectSlots(); void play(); void stream( bool b_transode_only = false ); void enqueue( bool b_enqueue = true ); void transcode(); private: OpenDialog( QWidget *parent, intf_thread_t *, bool b_selectMode, int _action_flag = 0, bool b_pl = true ); virtual ~OpenDialog(); static OpenDialog *instance; input_thread_t *p_input; QString optionsMRL; QString storedMethod; QStringList itemsMRL; Ui::Open ui; FileOpenPanel *fileOpenPanel; NetOpenPanel *netOpenPanel; DiscOpenPanel *discOpenPanel; CaptureOpenPanel *captureOpenPanel; int i_action_flag; bool b_pl; QStringList SeparateEntries( const QString& ); QPushButton *cancelButton, *selectButton; QToolButton *playButton; private slots: void setMenuAction(); void cancel(); void close(); void toggleAdvancedPanel(); void updateMRL( const QStringList&, const QString& ); void updateMRL(); void newCachingMethod( const QString& ); void signalCurrent( int ); void browseInputSlave(); }; #endif