]> git.sesse.net Git - vlc/blob - modules/gui/wince/iteminfo.cpp
Remove playlist info accessors (as they now belong to input_item) and use vlc_input_i...
[vlc] / modules / gui / wince / iteminfo.cpp
1 /*****************************************************************************
2  * iteminfo.cpp : WinCE gui plugin for VLC
3  *****************************************************************************
4  * Copyright (C) 2000-2004 VideoLAN
5  * $Id$
6  *
7  * Authors: Marodon Cedric <cedric_marodon@yahoo.fr>
8  *          Gildas Bazin <gbazin@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include <vlc/vlc.h>
29 #include <vlc/intf.h>
30 #include <string.h>
31
32 #include <stdlib.h>                                      /* malloc(), free() */
33 #include <string>
34 #include <stdio.h>
35 using namespace std; 
36
37 #include <winuser.h>
38 #include <windows.h>
39 #include <windowsx.h>
40 #include <commctrl.h>
41 #include <aygshell.h>
42
43 #include <commdlg.h>
44
45 #include "wince.h"
46
47 /*****************************************************************************
48  * Event Table.
49  *****************************************************************************/
50
51 /*****************************************************************************
52  * Constructor.
53  *****************************************************************************/
54 ItemInfoDialog::ItemInfoDialog( intf_thread_t *_p_intf,
55                                 HINSTANCE _hInst,
56                                 playlist_item_t *_p_item )
57 {
58     /* Initializations */
59     p_intf = _p_intf;
60     hInst = _hInst;
61     p_item = _p_item;
62 }
63
64 /***********************************************************************
65
66 FUNCTION: 
67   WndProc
68
69 PURPOSE: 
70   Processes messages sent to the main window.
71   
72 ***********************************************************************/
73 LRESULT ItemInfoDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
74                                  PBOOL pbProcessed  )
75 {
76     SHINITDLGINFO shidi;
77     SHMENUBARINFO mbi;
78     INITCOMMONCONTROLSEX iccex;
79     RECT rcClient;
80
81     LRESULT lResult = CBaseWindow::WndProc( hwnd, msg, wp, lp, pbProcessed );
82     BOOL bWasProcessed = *pbProcessed;
83     *pbProcessed = TRUE;
84
85     switch( msg )
86     {
87     case WM_INITDIALOG: 
88         shidi.dwMask = SHIDIM_FLAGS;
89         shidi.dwFlags = SHIDIF_DONEBUTTON | SHIDIF_SIPDOWN |
90             SHIDIF_FULLSCREENNOMENUBAR;//SHIDIF_SIZEDLGFULLSCREEN;
91         shidi.hDlg = hwnd;
92         SHInitDialog( &shidi );
93
94         //Create the menubar.
95         memset( &mbi, 0, sizeof (SHMENUBARINFO) );
96         mbi.cbSize     = sizeof (SHMENUBARINFO);
97         mbi.hwndParent = hwnd;
98         mbi.nToolBarId = IDR_DUMMYMENU;
99         mbi.hInstRes   = hInst;
100         mbi.nBmpId     = 0;
101         mbi.cBmpImages = 0;  
102
103         if( !SHCreateMenuBar(&mbi) )
104         {
105             MessageBox( hwnd, L"SHCreateMenuBar Failed", L"Error", MB_OK );
106             //return -1;
107         }
108
109         hwndCB = mbi.hwndMB;
110
111         // Get the client area rect to put the panels in
112         GetClientRect( hwnd, &rcClient );
113
114         /* URI Textbox */
115         uri_label = CreateWindow( _T("STATIC"), _T("URI:"),
116                         WS_CHILD | WS_VISIBLE | SS_RIGHT,
117                         0, 10, 60, 15, hwnd, NULL, hInst, NULL);
118
119         uri_text = CreateWindow( _T("EDIT"), _FROMMB(p_item->input.psz_uri),
120             WS_CHILD | WS_VISIBLE | WS_BORDER | SS_LEFT | ES_AUTOHSCROLL,
121             70, 10 - 3, rcClient.right - 70 - 10, 15 + 6, hwnd, 0, hInst, 0 );
122
123         /* Name Textbox */
124         name_label = CreateWindow( _T("STATIC"), _T("Name:"),
125                                    WS_CHILD | WS_VISIBLE | SS_RIGHT ,
126                                    0, 10 + 15 + 10, 60, 15,
127                                    hwnd, NULL, hInst, NULL);
128
129         name_text = CreateWindow( _T("EDIT"),
130             _FROMMB(p_item->input.psz_name),
131             WS_CHILD | WS_VISIBLE | WS_BORDER | SS_LEFT | ES_AUTOHSCROLL,
132             70, 10 + 15 + 10 - 3, rcClient.right - 70 - 10, 15 + 6,
133             hwnd, NULL, hInst, NULL);
134
135         /* CheckBox */
136         checkbox_label = CreateWindow( _T("STATIC"), _T("Item Enabled:"),
137             WS_CHILD | WS_VISIBLE | SS_RIGHT ,
138             rcClient.right - 15 - 10 - 90 - 10, 10 + 4*( 15 + 10 ) + 5, 90, 15,
139             hwnd, NULL, hInst, NULL );
140
141         enabled_checkbox = CreateWindow( _T("BUTTON"), _T("Item Enabled"),
142             WS_CHILD | WS_VISIBLE | BS_AUTOCHECKBOX,
143             rcClient.right - 15 - 10, 10 + 4*( 15 + 10 ) + 5, 15, 15,
144             hwnd, NULL, hInst, NULL );
145
146         SendMessage( enabled_checkbox, BM_SETCHECK, 
147                      p_item->b_enabled ? BST_CHECKED : BST_UNCHECKED, 0 );
148
149         /* Treeview */
150         iccex.dwSize = sizeof( INITCOMMONCONTROLSEX );
151         iccex.dwICC = ICC_TREEVIEW_CLASSES;
152         InitCommonControlsEx( &iccex );
153
154         // Create the tree-view control.
155         info_tree = CreateWindowEx( 0, WC_TREEVIEW, NULL,
156             WS_VISIBLE | WS_CHILD | WS_BORDER | TVS_HASLINES |
157             TVS_LINESATROOT | TVS_HASBUTTONS,
158             0, rcClient.bottom/2, rcClient.right,
159             rcClient.bottom - rcClient.bottom/2 - MENU_HEIGHT + 2, // +2 to fix
160             hwnd, NULL, hInst, NULL );
161
162         UpdateInfo();
163         return lResult;
164
165     case WM_COMMAND:
166         if( LOWORD(wp) == IDOK )
167         {
168             OnOk();
169             EndDialog( hwnd, LOWORD( wp ) );
170             return TRUE;
171         }
172         *pbProcessed = bWasProcessed;
173         lResult = FALSE;
174         return lResult;
175
176     default:
177         // the message was not processed
178         // indicate if the base class handled it
179         *pbProcessed = bWasProcessed;
180         lResult = FALSE;
181         return lResult;
182     }
183
184     return lResult;
185 }
186
187 /*****************************************************************************
188  * Private methods.
189  *****************************************************************************/
190  void ItemInfoDialog::UpdateInfo()
191 {
192     TVITEM tvi = {0}; 
193     TVINSERTSTRUCT tvins = {0}; 
194     HTREEITEM hPrev = (HTREEITEM)TVI_FIRST; 
195     HTREEITEM hPrevRootItem = NULL; 
196     HTREEITEM hPrevLev2Item = NULL; 
197
198     tvi.mask = TVIF_TEXT | TVIF_IMAGE | TVIF_SELECTEDIMAGE | TVIF_PARAM; 
199
200     // Set the text of the item. 
201     tvi.pszText = _FROMMB(p_item->input.psz_name);
202     tvi.cchTextMax = _tcslen(tvi.pszText);
203
204     // Save the heading level in the item's application-defined data area 
205     tvi.lParam = (LPARAM)1; // root level
206     tvins.item = tvi; 
207     tvins.hInsertAfter = hPrev; 
208     tvins.hParent = TVI_ROOT; 
209
210     // Add the item to the tree-view control. 
211     hPrev = (HTREEITEM)TreeView_InsertItem( info_tree, &tvins );
212     hPrevRootItem = hPrev; 
213
214     /* Rebuild the tree */
215     vlc_mutex_lock( &p_item->input.lock );
216     for( int i = 0; i < p_item->input.i_categories; i++ )
217     {
218         info_category_t *p_cat = p_item->input.pp_categories[i];
219
220         // Set the text of the item. 
221         tvi.pszText = _FROMMB( p_item->input.psz_name );
222         tvi.cchTextMax = _tcslen( tvi.pszText );
223         
224         // Save the heading level in the item's application-defined data area
225         tvi.lParam = (LPARAM)2; // level 2
226         tvins.item = tvi; 
227         tvins.hInsertAfter = hPrev; 
228         tvins.hParent = hPrevRootItem;
229
230         // Add the item to the tree-view control. 
231         hPrev = (HTREEITEM)TreeView_InsertItem( info_tree, &tvins );
232
233         hPrevLev2Item = hPrev;
234
235         for( int j = 0; j < p_cat->i_infos; j++ )
236         {
237             info_t *p_info = p_cat->pp_infos[j];
238
239             // Set the text of the item. 
240             string szAnsi = (string)p_info->psz_name;
241             szAnsi += ": ";
242             szAnsi += p_info->psz_value;
243             tvi.pszText = _FROMMB( szAnsi.c_str() );
244             tvi.cchTextMax = _tcslen( tvi.pszText );
245             tvi.lParam = (LPARAM)3; // level 3
246             tvins.item = tvi; 
247             tvins.hInsertAfter = hPrev; 
248             tvins.hParent = hPrevLev2Item;
249     
250             // Add the item to the tree-view control. 
251             hPrev = (HTREEITEM)TreeView_InsertItem( info_tree, &tvins );
252         }
253
254         TreeView_Expand( info_tree, hPrevLev2Item,
255                          TVE_EXPANDPARTIAL |TVE_EXPAND );
256     }
257     vlc_mutex_unlock( &p_item->input.lock );
258
259     TreeView_Expand( info_tree, hPrevRootItem, TVE_EXPANDPARTIAL |TVE_EXPAND );
260 }
261
262 /*****************************************************************************
263  * Events methods.
264  *****************************************************************************/
265 void ItemInfoDialog::OnOk()
266 {
267     int b_state, i_item;
268
269     vlc_mutex_lock( &p_item->input.lock );
270
271     TCHAR psz_name[MAX_PATH];
272     Edit_GetText( name_text, psz_name, MAX_PATH );
273     if( p_item->input.psz_name ) free( p_item->input.psz_name );
274     p_item->input.psz_name = strdup( _TOMB(psz_name) );
275
276     TCHAR psz_uri[MAX_PATH];
277     Edit_GetText( uri_text, psz_uri, MAX_PATH );
278     if( p_item->input.psz_uri ) free( p_item->input.psz_uri );
279     p_item->input.psz_uri = strdup( _TOMB(psz_uri) );
280
281     vlc_bool_t b_old_enabled = p_item->b_enabled;
282
283     playlist_t * p_playlist = (playlist_t *)
284         vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
285     if( p_playlist != NULL )
286     {
287         b_state = SendMessage( enabled_checkbox, BM_GETCHECK, 0, 0 );
288         if( b_old_enabled == VLC_FALSE && (b_state & BST_CHECKED) )
289             p_playlist->i_enabled ++;
290         else if( b_old_enabled == VLC_TRUE && (b_state & BST_UNCHECKED) )
291             p_playlist->i_enabled --;
292
293         vlc_object_release( p_playlist );
294     }
295
296     p_item->b_enabled = (b_state & BST_CHECKED) ? VLC_TRUE : VLC_FALSE ;
297
298     vlc_mutex_unlock( &p_item->input.lock );
299 }