]> git.sesse.net Git - vlc/blob - modules/gui/wxwidgets/wxwidgets.hpp
p( vlc.getInterfaces().getInterface( "wxwidgets" ).isBroken() ) = 1/2
[vlc] / modules / gui / wxwidgets / wxwidgets.hpp
1 /*****************************************************************************
2  * wxwidgets.hpp: Common headers for the wxwidges interface
3  *****************************************************************************
4  * Copyright (C) 1999-2005 the VideoLAN team
5  * $Id: wxwidgets.h 12502 2005-09-09 19:38:01Z gbazin $
6  *
7  * Authors: Gildas Bazin <gbazin@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #ifndef _WXVLC_WIDGETS_H_
25 #define _WXVLC_WIDGETS_H_
26
27 #ifdef WIN32                                                 /* mingw32 hack */
28 #undef Yield
29 #undef CreateDialog
30 #endif
31
32 #ifdef _MSC_VER
33 // turn off 'identifier was truncated to '255' characters in the debug info'
34 #   pragma warning( disable:4786 )
35 #endif
36
37 /* Let vlc take care of the i18n stuff */
38 #define WXINTL_NO_GETTEXT_MACRO
39
40 #include <vlc/vlc.h>
41 #include <vlc/intf.h>
42
43 #include <wx/wx.h>
44 #define SLIDER_MAX_POS 10000
45
46 /*
47 #include <wx/listctrl.h>
48 #include <wx/textctrl.h>
49 #include <wx/notebook.h>
50 #include <wx/spinctrl.h>
51 #include <wx/dnd.h>
52 #include <wx/treectrl.h>
53 #include <wx/gauge.h>
54 #include <wx/accel.h>
55 #include <wx/checkbox.h>
56 #include <wx/wizard.h>
57 #include <wx/taskbar.h>
58 #include "vlc_keys.h"
59 */
60 #if (!wxCHECK_VERSION(2,5,0))
61 typedef long wxTreeItemIdValue;
62 #endif
63
64 DECLARE_LOCAL_EVENT_TYPE( wxEVT_DIALOG, 0 );
65 DECLARE_LOCAL_EVENT_TYPE( wxEVT_INTF, 1 );
66
67 /***************************************************************************
68  * I18N macros
69  ***************************************************************************/
70
71 /* wxU is used to convert ansi/utf8 strings to unicode strings (wchar_t) */
72 #if defined( ENABLE_NLS )
73 #if wxUSE_UNICODE
74 #   define wxU(utf8) wxString(utf8, wxConvUTF8)
75 #else
76 #   define wxU(utf8) wxString(wxConvUTF8.cMB2WC(utf8), *wxConvCurrent)
77 #endif
78 #else // ENABLE_NLS
79 #if wxUSE_UNICODE
80 #   define wxU(ansi) wxString(ansi, wxConvLocal)
81 #else
82 #   define wxU(ansi) (ansi)
83 #endif
84 #endif
85
86 /* wxL2U (locale to unicode) is used to convert ansi strings to unicode
87  * strings (wchar_t) */
88 #define wxL2U(ansi) wxU(ansi)
89
90 #if wxUSE_UNICODE
91 #   define wxFromLocale(wxstring) FromUTF32(wxstring.wc_str())
92 #   define wxLocaleFree(string) free(string)
93 #else
94 #   define wxFromLocale(wxstring) FromLocale(wxstring.mb_str())
95 #   define wxLocaleFree(string) LocaleFree(string)
96 #endif
97
98
99 #define WRAPCOUNT 80
100
101 #define OPEN_NORMAL 0
102 #define OPEN_STREAM 1
103
104 enum
105 {
106   ID_CONTROLS_TIMER,
107   ID_SLIDER_TIMER,
108 };
109
110 namespace wxvlc {
111     class WindowSettings;
112     class VideoWindow;
113 };
114
115 using namespace wxvlc;
116
117 class DialogsProvider;
118 class PrefsTreeCtrl;
119 class AutoBuiltPanel;
120
121 /*****************************************************************************
122  * intf_sys_t: description and status of wxwindows interface
123  *****************************************************************************/
124 struct intf_sys_t
125 {
126     /* the wx parent window */
127     wxWindow            *p_wxwindow;
128     wxIcon              *p_icon;
129
130     /* window settings */
131     WindowSettings      *p_window_settings;
132
133     /* special actions */
134     vlc_bool_t          b_playing;
135     vlc_bool_t          b_intf_show;                /* interface to be shown */
136
137     /* The input thread */
138     input_thread_t *    p_input;
139
140     /* The slider */
141     int                 i_slider_pos;                     /* slider position */
142     int                 i_slider_oldpos;                /* previous position */
143     vlc_bool_t          b_slider_free;                      /* slider status */
144
145     /* The messages window */
146     msg_subscription_t* p_sub;                  /* message bank subscription */
147
148     /* Playlist management */
149     int                 i_playing;                 /* playlist selected item */
150     unsigned            i_playlist_usage;
151
152     /* Send an event to show a dialog */
153     void (*pf_show_dialog) ( intf_thread_t *p_intf, int i_dialog, int i_arg,
154                              intf_dialog_args_t *p_arg );
155
156     /* Popup menu */
157     wxMenu              *p_popup_menu;
158
159     /* Hotkeys */
160     int                 i_first_hotkey_event;
161     int                 i_hotkeys;
162
163     /* Embedded vout */
164     VideoWindow         *p_video_window;
165     wxBoxSizer          *p_video_sizer;
166     vlc_bool_t          b_video_autosize;
167
168     /* Aout */
169     aout_instance_t     *p_aout;
170 };
171
172
173
174 wxArrayString SeparateEntries( wxString );
175 wxWindow *CreateDialogsProvider( intf_thread_t *p_intf, wxWindow *p_parent );
176
177 /*
178  * wxWindows keeps dead locking because the timer tries to lock the playlist
179  * when it's already locked somewhere else in the very wxWindows interface
180  * module. Unless someone implements a "vlc_mutex_trylock", we need that.
181  */
182 inline void LockPlaylist( intf_sys_t *p_sys, playlist_t *p_pl )
183 {
184     if( p_sys->i_playlist_usage++ == 0)
185         vlc_mutex_lock( &p_pl->object_lock );
186 }
187
188 inline void UnlockPlaylist( intf_sys_t *p_sys, playlist_t *p_pl )
189 {
190     if( --p_sys->i_playlist_usage == 0)
191         vlc_mutex_unlock( &p_pl->object_lock );
192 }
193
194 #endif