skin_common.h

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

H
111
字号
/***************************************************************************** * skin_common.h: Private Skin interface description ***************************************************************************** * Copyright (C) 2003 VideoLAN * $Id: skin_common.h,v 1.24 2003/10/17 18:17:28 ipkiss Exp $ * * Authors: Olivier Teuli鑢e <ipkiss@via.ecp.fr> *          Emmanuel Puig    <karibu@via.ecp.fr> * * 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 SKIN_COMMON_H#define SKIN_COMMON_H#define SLIDER_RANGE        1048576  // 1024*1024#define DEFAULT_SKIN_FILE   "skins/default.vlt"class Theme;class Dialogs;class wxMenu;class wxIcon;#ifdef X11_SKINS#include <X11/Xlib.h>#endif// For mouse events FIXME: should be elsewhere?#define MOUSE_LEFT (1<<0)#define MOUSE_RIGHT (1<<1)#define KEY_CTRL (1<<2)#define KEY_SHIFT (1<<3)//---------------------------------------------------------------------------// intf_sys_t: description and status of skin interface//---------------------------------------------------------------------------struct intf_sys_t{    // Pointer to the theme main class    Theme *p_theme;    char *p_new_theme_file;    // The input thread    input_thread_t *p_input;    // The playlist thread    playlist_t *p_playlist;    // Check if thread is closing    int  i_close_status;    bool b_all_win_closed;    // Message bank subscription    msg_subscription_t *p_sub;    // Interface status    int i_index;        // Set which file is being played    int i_size;         // Size of playlist;    bool b_on_top;      // Indicates if the windows are on top    // Interface dialogs    Dialogs *p_dialogs;    // Popup menu    vlc_bool_t b_popup_change;#if !defined(MODULE_NAME_IS_basic_skins)    wxMenu     *p_popup_menu;    wxIcon      *p_icon;#endif#ifdef X11_SKINS    Display *display;    Window mainWin;    // Window which receives "broadcast" events    vlc_mutex_t xlock;    Pixmap iconPixmap; // vlc icon    Pixmap iconMask;#endif#ifdef WIN32    // Interface thread id used to post broadcast messages    DWORD dwThreadId;    // We dynamically load msimg32.dll to get a pointer to TransparentBlt()    HINSTANCE h_msimg32_dll;    BOOL (WINAPI *TransparentBlt)( HDC,int,int,int,int,HDC,int,                                   int,int,int,UINT );    // Idem for user32.dll and SetLayeredWindowAttributes()    HINSTANCE h_user32_dll;    BOOL (WINAPI *SetLayeredWindowAttributes)( HWND,COLORREF,BYTE,DWORD );#endif};#endif

⌨️ 快捷键说明

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