dialogs.h

来自「VLC媒体播放程序」· C头文件 代码 · 共 67 行

H
67
字号
/***************************************************************************** * dialogs.h: Dialogs class ***************************************************************************** * Copyright (C) 2003 VideoLAN * $Id: dialogs.h,v 1.10 2003/09/05 15:55:30 asmax Exp $ * * Authors: Gildas Bazin <gbazin@netcourrier.com> * * 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., 59 Temple Place - Suite 330, Boston, MA  02111, * USA. *****************************************************************************/#ifndef VLC_SKIN_DIALOGS#define VLC_SKIN_DIALOGS//--- GENERAL ---------------------------------------------------------------#include <string>using namespace std;//---------------------------------------------------------------------------struct intf_thread_t;//---------------------------------------------------------------------------class Dialogs{    protected:        intf_thread_t *p_intf;    public:        // Constructor        Dialogs( intf_thread_t *_p_intf );        // Destructor        virtual ~Dialogs();        void ShowOpen( bool b_play );        void ShowNet();        void ShowOpenSkin( bool b_block );        void ShowMessages();        void ShowPrefs();        void ShowFileInfo();        void ShowPopup( bool b_show );        vlc_bool_t b_popup_change;    private:        /* Dialogs provider module */        intf_thread_t *p_provider;        module_t *p_module;};//---------------------------------------------------------------------------#endif

⌨️ 快捷键说明

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