1 /*****************************************************************************
2 * iteminfo.cpp : WinCE gui plugin for VLC
3 *****************************************************************************
4 * Copyright (C) 2000-2004 the VideoLAN team
7 * Authors: Marodon Cedric <cedric_marodon@yahoo.fr>
8 * Gildas Bazin <gbazin@videolan.org>
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
25 /*****************************************************************************
27 *****************************************************************************/
28 #include <stdlib.h> /* malloc(), free() */
29 #include <string.h> /* strerror() */
42 /*****************************************************************************
44 *****************************************************************************/
46 /*****************************************************************************
48 *****************************************************************************/
49 ItemInfoDialog::ItemInfoDialog( intf_thread_t *p_intf, CBaseWindow *p_parent,
51 playlist_item_t *_p_item )
52 : CBaseWindow( p_intf, p_parent, h_inst )
58 /***********************************************************************
64 Processes messages sent to the main window.
66 ***********************************************************************/
67 LRESULT ItemInfoDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp )
71 INITCOMMONCONTROLSEX iccex;
77 shidi.dwMask = SHIDIM_FLAGS;
78 shidi.dwFlags = SHIDIF_DONEBUTTON | SHIDIF_SIPDOWN |
79 SHIDIF_FULLSCREENNOMENUBAR;//SHIDIF_SIZEDLGFULLSCREEN;
81 SHInitDialog( &shidi );
84 memset( &mbi, 0, sizeof (SHMENUBARINFO) );
85 mbi.cbSize = sizeof (SHMENUBARINFO);
86 mbi.hwndParent = hwnd;
87 mbi.dwFlags = SHCMBF_EMPTYBAR;
90 if( !SHCreateMenuBar(&mbi) )
92 MessageBox( hwnd, _T("SHCreateMenuBar Failed"), _T("Error"), MB_OK );
98 // Get the client area rect to put the panels in
99 GetClientRect( hwnd, &rcClient );
102 uri_label = CreateWindow( _T("STATIC"), _T("URI:"),
103 WS_CHILD | WS_VISIBLE | SS_RIGHT,
104 0, 10, 60, 15, hwnd, NULL, hInst, NULL);
106 uri_text = CreateWindow( _T("EDIT"), _FROMMB(p_item->input.psz_uri),
107 WS_CHILD | WS_VISIBLE | WS_BORDER | SS_LEFT | ES_AUTOHSCROLL,
108 70, 10 - 3, rcClient.right - 70 - 10, 15 + 6, hwnd, 0, hInst, 0 );
111 name_label = CreateWindow( _T("STATIC"), _T("Name:"),
112 WS_CHILD | WS_VISIBLE | SS_RIGHT ,
113 0, 10 + 15 + 10, 60, 15,
114 hwnd, NULL, hInst, NULL);
116 name_text = CreateWindow( _T("EDIT"),
117 _FROMMB(p_item->input.psz_name),
118 WS_CHILD | WS_VISIBLE | WS_BORDER | SS_LEFT | ES_AUTOHSCROLL,
119 70, 10 + 15 + 10 - 3, rcClient.right - 70 - 10, 15 + 6,
120 hwnd, NULL, hInst, NULL);
123 checkbox_label = CreateWindow( _T("STATIC"), _T("Item Enabled:"),
124 WS_CHILD | WS_VISIBLE | SS_RIGHT ,
125 rcClient.right - 15 - 10 - 90 - 10, 10 + 4*( 15 + 10 ) + 5, 90, 15,
126 hwnd, NULL, hInst, NULL );
128 enabled_checkbox = CreateWindow( _T("BUTTON"), _T("Item Enabled"),
129 WS_CHILD | WS_VISIBLE | BS_AUTOCHECKBOX,
130 rcClient.right - 15 - 10, 10 + 4*( 15 + 10 ) + 5, 15, 15,
131 hwnd, NULL, hInst, NULL );
133 SendMessage( enabled_checkbox, BM_SETCHECK,
134 p_item->b_enabled ? BST_CHECKED : BST_UNCHECKED, 0 );
137 iccex.dwSize = sizeof( INITCOMMONCONTROLSEX );
138 iccex.dwICC = ICC_TREEVIEW_CLASSES;
139 InitCommonControlsEx( &iccex );
141 // Create the tree-view control.
142 info_tree = CreateWindowEx( 0, WC_TREEVIEW, NULL,
143 WS_VISIBLE | WS_CHILD | WS_BORDER | TVS_HASLINES |
144 TVS_LINESATROOT | TVS_HASBUTTONS,
145 0, rcClient.bottom/2, rcClient.right,
146 rcClient.bottom - rcClient.bottom/2 - MENU_HEIGHT + 2, // +2 to fix
147 hwnd, NULL, hInst, NULL );
153 EndDialog( hwnd, LOWORD( wp ) );
157 SHSipPreference( hwnd, SIP_DOWN );
158 SHFullScreen( hwnd, SHFS_HIDESIPBUTTON );
162 if( LOWORD(wp) == IDOK )
165 EndDialog( hwnd, LOWORD( wp ) );
176 /*****************************************************************************
178 *****************************************************************************/
179 void ItemInfoDialog::UpdateInfo()
182 TVINSERTSTRUCT tvins = {0};
183 HTREEITEM hPrev = (HTREEITEM)TVI_FIRST;
184 HTREEITEM hPrevRootItem = NULL;
185 HTREEITEM hPrevLev2Item = NULL;
187 tvi.mask = TVIF_TEXT | TVIF_IMAGE | TVIF_SELECTEDIMAGE | TVIF_PARAM;
189 // Set the text of the item.
190 tvi.pszText = _FROMMB(p_item->input.psz_name);
191 tvi.cchTextMax = _tcslen(tvi.pszText);
193 // Save the heading level in the item's application-defined data area
194 tvi.lParam = (LPARAM)1; // root level
196 tvins.hInsertAfter = hPrev;
197 tvins.hParent = TVI_ROOT;
199 // Add the item to the tree-view control.
200 hPrev = (HTREEITEM)TreeView_InsertItem( info_tree, &tvins );
201 hPrevRootItem = hPrev;
203 /* Rebuild the tree */
204 vlc_mutex_lock( &p_item->input.lock );
205 for( int i = 0; i < p_item->input.i_categories; i++ )
207 info_category_t *p_cat = p_item->input.pp_categories[i];
209 // Set the text of the item.
210 tvi.pszText = _FROMMB( p_item->input.psz_name );
211 tvi.cchTextMax = _tcslen( tvi.pszText );
213 // Save the heading level in the item's application-defined data area
214 tvi.lParam = (LPARAM)2; // level 2
216 tvins.hInsertAfter = hPrev;
217 tvins.hParent = hPrevRootItem;
219 // Add the item to the tree-view control.
220 hPrev = (HTREEITEM)TreeView_InsertItem( info_tree, &tvins );
222 hPrevLev2Item = hPrev;
224 for( int j = 0; j < p_cat->i_infos; j++ )
226 info_t *p_info = p_cat->pp_infos[j];
228 // Set the text of the item.
229 string szAnsi = (string)p_info->psz_name;
231 szAnsi += p_info->psz_value;
232 tvi.pszText = (TCHAR *)_FROMMB( szAnsi.c_str() );
233 tvi.cchTextMax = _tcslen( tvi.pszText );
234 tvi.lParam = (LPARAM)3; // level 3
236 tvins.hInsertAfter = hPrev;
237 tvins.hParent = hPrevLev2Item;
239 // Add the item to the tree-view control.
240 hPrev = (HTREEITEM)TreeView_InsertItem( info_tree, &tvins );
243 TreeView_Expand( info_tree, hPrevLev2Item,
244 TVE_EXPANDPARTIAL |TVE_EXPAND );
246 vlc_mutex_unlock( &p_item->input.lock );
248 TreeView_Expand( info_tree, hPrevRootItem, TVE_EXPANDPARTIAL |TVE_EXPAND );
251 /*****************************************************************************
253 *****************************************************************************/
254 void ItemInfoDialog::OnOk()
256 int b_state = VLC_FALSE;
258 vlc_mutex_lock( &p_item->input.lock );
260 TCHAR psz_name[MAX_PATH];
261 Edit_GetText( name_text, psz_name, MAX_PATH );
262 if( p_item->input.psz_name ) free( p_item->input.psz_name );
263 p_item->input.psz_name = strdup( _TOMB(psz_name) );
265 TCHAR psz_uri[MAX_PATH];
266 Edit_GetText( uri_text, psz_uri, MAX_PATH );
267 if( p_item->input.psz_uri ) free( p_item->input.psz_uri );
268 p_item->input.psz_uri = strdup( _TOMB(psz_uri) );
270 vlc_bool_t b_old_enabled = p_item->b_enabled;
272 playlist_t * p_playlist = (playlist_t *)
273 vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
274 if( p_playlist != NULL )
276 b_state = SendMessage( enabled_checkbox, BM_GETCHECK, 0, 0 );
277 if( b_old_enabled == VLC_FALSE && (b_state & BST_CHECKED) )
278 p_playlist->i_enabled ++;
279 else if( b_old_enabled == VLC_TRUE && (b_state & BST_UNCHECKED) )
280 p_playlist->i_enabled --;
282 vlc_object_release( p_playlist );
285 p_item->b_enabled = (b_state & BST_CHECKED) ? VLC_TRUE : VLC_FALSE ;
287 vlc_mutex_unlock( &p_item->input.lock );