CPI_Playlist_Callbacks.c
上传用户:hxb_1234
上传日期:2010-03-30
资源大小:8328k
文件大小:4k
源码类别:

VC书籍

开发平台:

Visual C++

  1. /*
  2.  * CoolPlayer - Blazing fast audio player.
  3.  * Copyright (C) 2000-2001 Niek Albers
  4.  *
  5.  * This program is free software; you can redistribute it and/or modify
  6.  * it under the terms of the GNU General Public License as published by
  7.  * the Free Software Foundation; either version 2 of the License, or
  8.  * (at your option) any later version.
  9.  *
  10.  * This program is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  * GNU General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU General Public License
  16.  * along with this program; if not, write to the Free Software
  17.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  18.  */
  19. ////////////////////////////////////////////////////////////////////////////////
  20. #include "stdafx.h"
  21. #include "globals.h"
  22. #include "CPI_PlaylistItem.h"
  23. #include "CPI_Playlist.h"
  24. ////////////////////////////////////////////////////////////////////////////////
  25. //
  26. //
  27. //
  28. void CPL_cb_OnItemUpdated(const CP_HPLAYLISTITEM hItem)
  29. {
  30.     if(globals.m_hPlaylistViewControl)
  31.     {
  32.         const int iItemIDX = CPLI_GetCookie(hItem);
  33.         if(iItemIDX != CPC_INVALIDITEM)
  34.             CLV_SetItemData(globals.m_hPlaylistViewControl, iItemIDX, hItem);
  35.     }
  36. }
  37. //
  38. //
  39. //
  40. void CPL_cb_OnPlaylistAppend(const CP_HPLAYLISTITEM hItem)
  41. {
  42.     int iNewItemIDX;
  43.     iNewItemIDX = CLV_AddItem(globals.m_hPlaylistViewControl, hItem);
  44.     CPLI_SetCookie(hItem, iNewItemIDX);
  45. }
  46. //
  47. //
  48. //
  49. void CPL_cb_OnPlaylistItemDelete(const CP_HPLAYLISTITEM hItem)
  50. {
  51.     CP_HPLAYLISTITEM hCursor;
  52.     int iItemIDX = CPLI_GetCookie(hItem);
  53.     // Remove the item from the list
  54.     CLV_DeleteItem(globals.m_hPlaylistViewControl, iItemIDX);
  55.     // We are storing the item number on the item cookie - we must now renumber all
  56.     // list items after this item
  57.     for(hCursor = CPLI_Next(hItem); hCursor; hCursor = CPLI_Next(hCursor), iItemIDX++)
  58.         CPLI_SetCookie(hCursor, iItemIDX);
  59. }
  60. //
  61. //
  62. //
  63. void CPL_cb_OnPlaylistEmpty()
  64. {
  65.     if(globals.m_hPlaylistViewControl)
  66.         CLV_RemoveAllItems(globals.m_hPlaylistViewControl);
  67. }
  68. //
  69. //
  70. //
  71. void CPL_cb_OnPlaylistActivationChange(const CP_HPLAYLISTITEM hItem, const BOOL bNewActiveState)
  72. {
  73.     if(bNewActiveState == TRUE)
  74.     {
  75.         main_update_title_text();
  76.         main_draw_title(windows.wnd_main);
  77.         main_draw_tracknr(windows.wnd_main);
  78.     }
  79. }
  80. //
  81. //
  82. //
  83. void CPL_cb_OnPlaylistActivationEmpty()
  84. {
  85.     main_update_title_text();
  86.     main_draw_title(windows.wnd_main);
  87.     main_draw_tracknr(windows.wnd_main);
  88. }
  89. //
  90. //
  91. //
  92. void CPL_cb_SetWindowToReflectList()
  93. {
  94.     CP_HPLAYLISTITEM hCursor;
  95.     CP_HPLAYLISTITEM hSelected;
  96.     if(globals.m_hPlaylistViewControl)
  97.         CLV_BeginBatch(globals.m_hPlaylistViewControl);
  98.     // Unselect active item
  99.     hSelected = CPL_GetActiveItem(globals.m_hPlaylist);
  100.     // Add items to list
  101.     CLV_RemoveAllItems(globals.m_hPlaylistViewControl);
  102.     for(hCursor = CPL_GetFirstItem(globals.m_hPlaylist); hCursor; hCursor = CPLI_Next(hCursor))
  103.         CPL_cb_OnPlaylistAppend(hCursor);
  104.     // Set active item
  105.     if(hSelected)
  106.         CPL_cb_OnPlaylistActivationChange(hSelected, TRUE);
  107.     if(globals.m_hPlaylistViewControl)
  108.         CLV_EndBatch(globals.m_hPlaylistViewControl);
  109. }
  110. //
  111. //
  112. //
  113. void CPL_cb_LockWindowUpdates(const BOOL bLock)
  114. {
  115.     if(globals.m_hPlaylistViewControl)
  116.     {
  117.         if(bLock)
  118.             CLV_BeginBatch(globals.m_hPlaylistViewControl);
  119.         else
  120.             CLV_EndBatch(globals.m_hPlaylistViewControl);
  121.     }
  122. }
  123. //
  124. //
  125. //
  126. void CPL_cb_TrackStackChanged()
  127. {
  128.     if(globals.m_hPlaylistViewControl)
  129.         CLV_Invalidate(globals.m_hPlaylistViewControl);
  130. }
  131. //
  132. //
  133. //