]> git.sesse.net Git - vlc/blob - modules/gui/skins/src/dialogs.cpp
* modules/gui/wxwindows/*: enable popup menu support in the "dialogs provider".
[vlc] / modules / gui / skins / src / dialogs.cpp
1 /*****************************************************************************
2  * dialogs.cpp: Handles all the different dialog boxes we provide.
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id: dialogs.cpp,v 1.11 2003/07/17 18:58:23 gbazin Exp $
6  *
7  * Authors: Gildas Bazin <gbazin@netcourrier.com>
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,
22  * USA.
23  *****************************************************************************/
24
25 //--- VLC -------------------------------------------------------------------
26 #include <vlc/vlc.h>
27 #include <vlc/intf.h>
28
29 //--- SKIN ------------------------------------------------------------------
30 #include "../os_api.h"
31 #include "event.h"
32 #include "banks.h"
33 #include "theme.h"
34 #include "../os_theme.h"
35 #include "themeloader.h"
36 #include "window.h"
37 #include "vlcproc.h"
38 #include "skin_common.h"
39 #include "dialogs.h"
40
41 /* Callback prototype */
42 static int PopupMenuCB( vlc_object_t *p_this, const char *psz_variable,
43                        vlc_value_t old_val, vlc_value_t new_val, void *param );
44
45 //---------------------------------------------------------------------------
46 // Implementation of Dialogs class
47 //---------------------------------------------------------------------------
48 Dialogs::Dialogs( intf_thread_t *_p_intf )
49 {
50     /* Errors while loading the dialogs provider are not fatal.
51      * Dialogs just won't be available. */
52
53     p_intf = _p_intf;
54     p_intf->p_sys->p_dialogs = this;
55     b_popup_change = VLC_FALSE;
56
57     /* Allocate descriptor */
58     p_provider = (intf_thread_t *)vlc_object_create( p_intf, VLC_OBJECT_INTF );
59     if( p_provider == NULL )
60     {
61         msg_Err( p_intf, "out of memory" );
62         return;
63     }
64
65     p_module = module_Need( p_provider, "dialogs provider", NULL );
66     if( p_module == NULL )
67     {
68         msg_Err( p_intf, "no suitable dialogs provider found" );
69         vlc_object_destroy( p_provider );
70         p_provider = NULL;
71         return;
72     }
73
74     /* Initialize dialogs provider
75      * (returns as soon as initialization is done) */
76     if( p_provider->pf_run ) p_provider->pf_run( p_provider );
77
78     /* Register callback for the intf-popupmenu variable */
79     playlist_t *p_playlist =
80         (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
81                                        FIND_ANYWHERE );
82     if( p_playlist != NULL )
83     {
84         var_AddCallback( p_playlist, "intf-popupmenu", PopupMenuCB,
85                          p_intf->p_sys->p_dialogs );
86         vlc_object_release( p_playlist );
87     }
88 }
89
90 Dialogs::~Dialogs()
91 {
92     if( p_provider && p_module )
93     {
94         module_Unneed( p_provider, p_module );
95         vlc_object_destroy( p_provider );
96     }
97 }
98
99 void Dialogs::ShowDialog( intf_thread_t *p_intf, int i_dialog_event,
100                           int i_arg )
101 {
102 }
103
104 void Dialogs::ShowOpen( bool b_play )
105 {
106     if( p_provider && p_provider->pf_show_dialog )
107         p_provider->pf_show_dialog( p_provider, INTF_DIALOG_FILE, b_play );
108 }
109
110 void Dialogs::ShowOpenSkin()
111 {
112     if( p_provider && p_provider->pf_show_dialog )
113         p_provider->pf_show_dialog( p_provider, INTF_DIALOG_FILE, 0 );
114 }
115
116 void Dialogs::ShowMessages()
117 {
118     if( p_provider && p_provider->pf_show_dialog )
119         p_provider->pf_show_dialog( p_provider, INTF_DIALOG_MESSAGES, 0 );
120 }
121
122 void Dialogs::ShowPrefs()
123 {
124     if( p_provider && p_provider->pf_show_dialog )
125         p_provider->pf_show_dialog( p_provider, INTF_DIALOG_PREFS, 0 );
126 }
127
128 void Dialogs::ShowFileInfo()
129 {
130     if( p_provider && p_provider->pf_show_dialog )
131         p_provider->pf_show_dialog( p_provider, INTF_DIALOG_FILEINFO, 0 );
132 }
133
134 void Dialogs::ShowPopup()
135 {
136     if( p_provider && p_provider->pf_show_dialog )
137         p_provider->pf_show_dialog( p_provider, INTF_DIALOG_POPUPMENU, 0 );
138 }
139
140 /*****************************************************************************
141  * PopupMenuCB: callback triggered by the intf-popupmenu playlist variable.
142  *  We don't show the menu directly here because we don't want the
143  *  caller to block for a too long time.
144  *****************************************************************************/
145 static int PopupMenuCB( vlc_object_t *p_this, const char *psz_variable,
146                         vlc_value_t old_val, vlc_value_t new_val, void *param )
147 {
148     Dialogs *p_dialogs = (Dialogs *)param;
149     p_dialogs->ShowPopup();
150
151     return VLC_SUCCESS;
152 }