iteminfo.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:10k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * iteminfo.cpp : WinCE gui plugin for VLC
  3.  *****************************************************************************
  4.  * Copyright (C) 2000-2004 the VideoLAN team
  5.  * $Id: 946ed9ee7c0a2281d4a31c6fb464722e6e615b4b $
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #ifdef HAVE_CONFIG_H
  28. # include "config.h"
  29. #endif
  30. #include <vlc_common.h>
  31. #include <vlc_interface.h>
  32. #include <vlc_playlist.h>
  33. #include "wince.h"
  34. #include <winuser.h>
  35. #include <windows.h>
  36. #include <windowsx.h>
  37. #include <commctrl.h>
  38. #include <commdlg.h>
  39. /*****************************************************************************
  40.  * Event Table.
  41.  *****************************************************************************/
  42. /*****************************************************************************
  43.  * Constructor.
  44.  *****************************************************************************/
  45. ItemInfoDialog::ItemInfoDialog( intf_thread_t *p_intf, CBaseWindow *p_parent,
  46.                                 HINSTANCE h_inst,
  47.                                 playlist_item_t *_p_item )
  48.   :  CBaseWindow( p_intf, p_parent, h_inst )
  49. {
  50.     /* Initializations */
  51.     p_item = _p_item;
  52. }
  53. /***********************************************************************
  54. FUNCTION:
  55.   WndProc
  56. PURPOSE:
  57.   Processes messages sent to the main window.
  58.  
  59. ***********************************************************************/
  60. LRESULT ItemInfoDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp )
  61. {
  62.     SHINITDLGINFO shidi;
  63.     SHMENUBARINFO mbi;
  64.     INITCOMMONCONTROLSEX iccex;
  65.     RECT rcClient;
  66.     char *psz_uri;
  67.     switch( msg )
  68.     {
  69.     case WM_INITDIALOG:
  70.         shidi.dwMask = SHIDIM_FLAGS;
  71.         shidi.dwFlags = SHIDIF_DONEBUTTON | SHIDIF_SIPDOWN |
  72.             SHIDIF_FULLSCREENNOMENUBAR;//SHIDIF_SIZEDLGFULLSCREEN;
  73.         shidi.hDlg = hwnd;
  74.         SHInitDialog( &shidi );
  75.         //Create the menubar.
  76.         memset( &mbi, 0, sizeof (SHMENUBARINFO) );
  77.         mbi.cbSize     = sizeof (SHMENUBARINFO);
  78.         mbi.hwndParent = hwnd;
  79.         mbi.dwFlags    = SHCMBF_EMPTYBAR;
  80.         mbi.hInstRes   = hInst;
  81.         if( !SHCreateMenuBar(&mbi) )
  82.         {
  83.             MessageBox( hwnd, _T("SHCreateMenuBar Failed"), _T("Error"), MB_OK );
  84.             //return -1;
  85.         }
  86.         hwndCB = mbi.hwndMB;
  87.         // Get the client area rect to put the panels in
  88.         GetClientRect( hwnd, &rcClient );
  89.         /* URI Textbox */
  90.         uri_label = CreateWindow( _T("STATIC"), _T("URI:"),
  91.                         WS_CHILD | WS_VISIBLE | SS_RIGHT,
  92.                         0, 10, 60, 15, hwnd, NULL, hInst, NULL);
  93.         psz_uri = input_item_GetURI( p_item->p_input );
  94.         uri_text = CreateWindow( _T("EDIT"), _FROMMB(psz_uri),
  95.             WS_CHILD | WS_VISIBLE | WS_BORDER | SS_LEFT | ES_AUTOHSCROLL,
  96.             70, 10 - 3, rcClient.right - 70 - 10, 15 + 6, hwnd, 0, hInst, 0 );
  97.         free( psz_uri );
  98.         /* Name Textbox */
  99.         name_label = CreateWindow( _T("STATIC"), _T("Name:"),
  100.                                    WS_CHILD | WS_VISIBLE | SS_RIGHT ,
  101.                                    0, 10 + 15 + 10, 60, 15,
  102.                                    hwnd, NULL, hInst, NULL);
  103.         name_text = CreateWindow( _T("EDIT"),
  104.             _FROMMB(p_item->p_input->psz_name),
  105.             WS_CHILD | WS_VISIBLE | WS_BORDER | SS_LEFT | ES_AUTOHSCROLL,
  106.             70, 10 + 15 + 10 - 3, rcClient.right - 70 - 10, 15 + 6,
  107.             hwnd, NULL, hInst, NULL);
  108.         /* CheckBox */
  109.         checkbox_label = CreateWindow( _T("STATIC"), _T("Item Enabled:"),
  110.             WS_CHILD | WS_VISIBLE | SS_RIGHT ,
  111.             rcClient.right - 15 - 10 - 90 - 10, 10 + 4*( 15 + 10 ) + 5, 90, 15,
  112.             hwnd, NULL, hInst, NULL );
  113.         enabled_checkbox = CreateWindow( _T("BUTTON"), _T("Item Enabled"),
  114.             WS_CHILD | WS_VISIBLE | BS_AUTOCHECKBOX,
  115.             rcClient.right - 15 - 10, 10 + 4*( 15 + 10 ) + 5, 15, 15,
  116.             hwnd, NULL, hInst, NULL );
  117.         SendMessage( enabled_checkbox, BM_SETCHECK,
  118.                      (p_item->i_flags & PLAYLIST_DBL_FLAG) ?
  119.                      BST_UNCHECKED : BST_CHECKED, 0 );
  120.         /* Treeview */
  121.         iccex.dwSize = sizeof( INITCOMMONCONTROLSEX );
  122.         iccex.dwICC = ICC_TREEVIEW_CLASSES;
  123.         InitCommonControlsEx( &iccex );
  124.         // Create the tree-view control.
  125.         info_tree = CreateWindowEx( 0, WC_TREEVIEW, NULL,
  126.             WS_VISIBLE | WS_CHILD | WS_BORDER | TVS_HASLINES |
  127.             TVS_LINESATROOT | TVS_HASBUTTONS,
  128.             0, rcClient.bottom/2, rcClient.right,
  129.             rcClient.bottom - rcClient.bottom/2 - MENU_HEIGHT + 2, // +2 to fix
  130.             hwnd, NULL, hInst, NULL );
  131.         UpdateInfo();
  132.         break;
  133.     case WM_CLOSE:
  134.         EndDialog( hwnd, LOWORD( wp ) );
  135.         break;
  136.     case WM_SETFOCUS:
  137.         SHSipPreference( hwnd, SIP_DOWN );
  138.         SHFullScreen( hwnd, SHFS_HIDESIPBUTTON );
  139.         break;
  140.     case WM_COMMAND:
  141.         if( LOWORD(wp) == IDOK )
  142.         {
  143.             OnOk();
  144.             EndDialog( hwnd, LOWORD( wp ) );
  145.         }
  146.         break;
  147.     default:
  148.         break;
  149.     }
  150.     return FALSE;
  151. }
  152. /*****************************************************************************
  153.  * Private methods.
  154.  *****************************************************************************/
  155.  void ItemInfoDialog::UpdateInfo()
  156. {
  157.     TVITEM tvi = {0};
  158.     TVINSERTSTRUCT tvins = {0};
  159.     HTREEITEM hPrev = (HTREEITEM)TVI_FIRST;
  160.     HTREEITEM hPrevRootItem = NULL;
  161.     HTREEITEM hPrevLev2Item = NULL;
  162.     tvi.mask = TVIF_TEXT | TVIF_IMAGE | TVIF_SELECTEDIMAGE | TVIF_PARAM;
  163.     // Set the text of the item.
  164.     tvi.pszText = _FROMMB(p_item->p_input->psz_name);
  165.     tvi.cchTextMax = _tcslen(tvi.pszText);
  166.     // Save the heading level in the item's application-defined data area
  167.     tvi.lParam = (LPARAM)1; // root level
  168.     tvins.item = tvi;
  169.     tvins.hInsertAfter = hPrev;
  170.     tvins.hParent = TVI_ROOT;
  171.     // Add the item to the tree-view control.
  172.     hPrev = (HTREEITEM)TreeView_InsertItem( info_tree, &tvins );
  173.     hPrevRootItem = hPrev;
  174.     /* Rebuild the tree */
  175.     vlc_mutex_lock( &p_item->p_input->lock );
  176.     for( int i = 0; i < p_item->p_input->i_categories; i++ )
  177.     {
  178.         info_category_t *p_cat = p_item->p_input->pp_categories[i];
  179.         // Set the text of the item.
  180.         tvi.pszText = _FROMMB( p_item->p_input->psz_name );
  181.         tvi.cchTextMax = _tcslen( tvi.pszText );
  182.  
  183.         // Save the heading level in the item's application-defined data area
  184.         tvi.lParam = (LPARAM)2; // level 2
  185.         tvins.item = tvi;
  186.         tvins.hInsertAfter = hPrev;
  187.         tvins.hParent = hPrevRootItem;
  188.         // Add the item to the tree-view control.
  189.         hPrev = (HTREEITEM)TreeView_InsertItem( info_tree, &tvins );
  190.         hPrevLev2Item = hPrev;
  191.         for( int j = 0; j < p_cat->i_infos; j++ )
  192.         {
  193.             info_t *p_info = p_cat->pp_infos[j];
  194.             // Set the text of the item.
  195.             string szAnsi = (string)p_info->psz_name;
  196.             szAnsi += ": ";
  197.             szAnsi += p_info->psz_value;
  198.             tvi.pszText = (TCHAR *)_FROMMB( szAnsi.c_str() );
  199.             tvi.cchTextMax = _tcslen( tvi.pszText );
  200.             tvi.lParam = (LPARAM)3; // level 3
  201.             tvins.item = tvi;
  202.             tvins.hInsertAfter = hPrev;
  203.             tvins.hParent = hPrevLev2Item;
  204.  
  205.             // Add the item to the tree-view control.
  206.             hPrev = (HTREEITEM)TreeView_InsertItem( info_tree, &tvins );
  207.         }
  208.         TreeView_Expand( info_tree, hPrevLev2Item,
  209.                          TVE_EXPANDPARTIAL |TVE_EXPAND );
  210.     }
  211.     vlc_mutex_unlock( &p_item->p_input->lock );
  212.     TreeView_Expand( info_tree, hPrevRootItem, TVE_EXPANDPARTIAL |TVE_EXPAND );
  213. }
  214. /*****************************************************************************
  215.  * Events methods.
  216.  *****************************************************************************/
  217. void ItemInfoDialog::OnOk()
  218. {
  219.     int b_state = false;
  220.     TCHAR psz_name[MAX_PATH];
  221.     Edit_GetText( name_text, psz_name, MAX_PATH );
  222.     input_item_SetName( p_item->p_input, _TOMB( psz_name ) );
  223.     TCHAR psz_uri[MAX_PATH];
  224.     Edit_GetText( uri_text, psz_uri, MAX_PATH );
  225.     input_item_SetURI( p_item->p_input, _TOMB(psz_uri) );
  226.     vlc_mutex_lock( &p_item->p_input->lock );
  227.     bool b_old_enabled = !(p_item->i_flags & PLAYLIST_DBL_FLAG);
  228.     playlist_t * p_playlist = pl_Hold( p_intf );
  229.     if( p_playlist != NULL )
  230.     {
  231.         b_state = SendMessage( enabled_checkbox, BM_GETCHECK, 0, 0 );
  232.         pl_Release( p_intf );
  233.     }
  234.     p_item->i_flags |= (b_state & BST_CHECKED) ? false : PLAYLIST_DBL_FLAG ;
  235.     vlc_mutex_unlock( &p_item->p_input->lock );
  236. }