⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vlm_panel.hpp

📁 uclinux 下的vlc播放器源代码
💻 HPP
字号:
/***************************************************************************** * vlm_panel.hpp: Header for the VLM panel ***************************************************************************** * Copyright (C) 1999-2005 the VideoLAN team * $Id: vlm_panel.hpp 14187 2006-02-07 16:37:40Z courmisch $ * * Authors: Clément Stenac <zorglub@videolan.org> * * 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 _WXVLC_VLMPANEL_H_#define _WXVLC_VLMPANEL_H_#include "wxwidgets.hpp"#include "dialogs/open.hpp"#include "dialogs/streamout.hpp"#include <wx/notebook.h>#include <vector>using namespace std;class VLMWrapper;class VLMStream;class VLMBroadcastStream;class VLMVODStream;namespace wxvlc{    class VLMStreamPanel;    class VLMBroadcastStreamPanel;    class VLMVODStreamPanel;    /** This class is the panel to add or edit a VLM stream     * It can be embedded in the main VLM panel or on a separate frame     */    class VLMAddStreamPanel : public wxPanel    {    public:        VLMAddStreamPanel( intf_thread_t *, wxWindow *, VLMWrapper *,                           vlc_bool_t, vlc_bool_t );        virtual ~VLMAddStreamPanel();        void Load( VLMStream *);    private:        void OnCreate( wxCommandEvent& );        void OnClear( wxCommandEvent& );        void OnChooseInput( wxCommandEvent& );        void OnChooseOutput( wxCommandEvent& );        wxTextCtrl *name_text;        wxTextCtrl *input_text;        wxTextCtrl *output_text;        wxCheckBox *enabled_checkbox;        wxCheckBox *loop_checkbox;        intf_thread_t *p_intf;        VLMWrapper *p_vlm;        wxWindow *p_parent;        vlc_bool_t b_edit, b_broadcast;        OpenDialog *p_open_dialog;        SoutDialog *p_sout_dialog;        DECLARE_EVENT_TABLE();    };    /**     * This class is the main VLM Manager panel     */    class VLMPanel : public wxPanel    {    public:        VLMPanel( intf_thread_t *p_intf, wxWindow * );        virtual ~VLMPanel();        void Update();    protected:    private:        VLMWrapper *p_vlm;        intf_thread_t *p_intf;        wxWindow *p_parent;        wxFileDialog *p_file_dialog;        wxTimer timer;        void OnTimer( wxTimerEvent &);        void OnClose( wxCommandEvent& );        void OnLoad( wxCommandEvent& );        void OnSave( wxCommandEvent& );        /** Notebook */        wxNotebook *p_notebook;        DECLARE_EVENT_TABLE();        /* Broadcast stuff */        vector<VLMBroadcastStreamPanel *> broadcasts;        wxPanel *broadcasts_panel;        wxBoxSizer *broadcasts_sizer;        wxScrolledWindow *scrolled_broadcasts;        wxBoxSizer *scrolled_broadcasts_sizer;        wxPanel *BroadcastPanel( wxWindow *);        wxPanel *AddBroadcastPanel( wxPanel *);        void AppendBroadcast( VLMBroadcastStream *);        void RemoveBroadcast( VLMBroadcastStreamPanel *);        /* VOD stuff */        vector<VLMVODStreamPanel *> vods;        wxPanel *vods_panel;        wxBoxSizer *vods_sizer;        wxScrolledWindow *scrolled_vods;        wxBoxSizer *scrolled_vods_sizer;        wxPanel *VODPanel( wxWindow *);        wxPanel *AddVODPanel( wxPanel *);        void AppendVOD( VLMVODStream *);        void RemoveVOD( VLMVODStreamPanel *);    };    /** This class is the standard VLM frame     * It only consists of the VLM panel     */    class VLMFrame: public wxFrame    {    public:        VLMFrame( intf_thread_t *p_intf, wxWindow * );        virtual ~VLMFrame();        void Update();        void OnClose( wxCloseEvent& );    private:        VLMPanel *vlm_panel;        DECLARE_EVENT_TABLE();    };    /** This class is the edit dialog for a stream     * It only consists of the VLM edit panel     */    class VLMEditStreamFrame: public wxFrame    {    public:        VLMEditStreamFrame( intf_thread_t *p_intf, wxWindow *,                            VLMWrapper * , vlc_bool_t, VLMStream * );        virtual ~VLMEditStreamFrame();    private:        VLMAddStreamPanel *vlm_panel;    };};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -