statusbar.c
上传用户:xmgzy123
上传日期:2007-01-07
资源大小:373k
文件大小:2k
源码类别:

SCSI/ASPI

开发平台:

WINDOWS

  1. /*
  2.  * statusbar.c - Copyright (C) 1999,2000 Jay A. Key
  3.  *
  4.  * Routines to handle setting information on the application's status bar
  5.  *
  6.  **********************************************************************
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21.  *
  22.  */
  23. #include <windows.h>
  24. #include <commctrl.h>
  25. #include "globals.h"
  26. #include "trackwnd.h"
  27. void StatusSetMP3( void );
  28. extern HWND hStatus;
  29. extern HWND hTrackWnd;
  30. void StatusSetMP3( void )
  31. {
  32.   if ( bMP3 )
  33.     SendMessage( hStatus, SB_SETTEXT, 0, (LPARAM)"MP3" );
  34.   else
  35.     SendMessage( hStatus, SB_SETTEXT, 0, (LPARAM)"WAV" );
  36. }
  37. void StatusSetNumSelected( void )
  38. {
  39.   int iNumChecked;
  40.   int i, iNumTracks;
  41.   char buf[81];
  42.   ADDTRACK at;
  43.   DWORD dwTotalTime = 0;
  44.   DWORD h, m, s;
  45.   iNumChecked = (int)SendMessage( hTrackWnd, WM_NUMCHECKED, 0, 0L );
  46.   iNumTracks = (int)SendMessage( hTrackWnd, WM_NUMTRACKS, 0, 0L );
  47.   for( i = 0; i < iNumTracks; i++ )
  48.     {
  49.       SendMessage( hTrackWnd, WM_GETTRACK, (WPARAM)i, (LPARAM)&at );
  50.       if ( at.bChecked )
  51. dwTotalTime += at.len;
  52.     }
  53.   dwTotalTime /= 75;
  54.   s = dwTotalTime % 60;
  55.   dwTotalTime -= s;
  56.   m = (dwTotalTime % 3600) / 60;
  57.   dwTotalTime -= m * 60;
  58.   h = dwTotalTime / 3600;
  59.   if ( iNumChecked )
  60.     wsprintf( buf, "%d selected, %02d:%02d:%02d total playing time", iNumChecked, h, m, s );
  61.   else
  62.     wsprintf( buf, "No tracks selected" );
  63.   SendMessage( hStatus, SB_SETTEXT, 1, (LPARAM)buf );
  64. }
  65. void SetStatusMessage( char *szBuf )
  66. {
  67.   SendMessage( hStatus, SB_SETTEXT, 1, (LPARAM)szBuf );
  68. }
  69. /*
  70.  * Generic function for updating the status bar
  71.  */
  72. void UpdateStatusBar( void )
  73. {
  74.   if ( !hStatus )
  75.     return;
  76.   StatusSetMP3();
  77.   StatusSetNumSelected();
  78. }