PlayerSubresyncBar.h
上传用户:tangyu_668
上传日期:2014-02-27
资源大小:678k
文件大小:3k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /* 
  2.  * Copyright (C) 2003-2006 Gabest
  3.  * http://www.gabest.org
  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, or (at your option)
  8.  *  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 GNU Make; see the file COPYING.  If not, write to
  17.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  18.  *  http://www.gnu.org/copyleft/gpl.html
  19.  *
  20.  */
  21. #pragma once
  22. #include <afxcview.h>
  23. #include "PlayerListCtrl.h"
  24. #include "....subtitlesRTS.h"
  25. #include "....subtitlesVobSubFile.h"
  26. // CPlayerSubresyncBar
  27. class CPlayerSubresyncBar : public CSizingControlBarG
  28. {
  29. DECLARE_DYNAMIC(CPlayerSubresyncBar)
  30. private:
  31. CPlayerListCtrl m_list;
  32. CFont m_font;
  33.     CCritSec* m_pSubLock;
  34. CComPtr<ISubStream> m_pSubStream;
  35. int m_lastSegment;
  36. __int64 m_rt;
  37. enum 
  38. {
  39. // TEXTSUB
  40. COL_START=0, COL_END, COL_PREVSTART, COL_PREVEND, COL_TEXT, COL_STYLE, COL_FONT, COL_CHARSET, COL_UNICODE, COL_LAYER, COL_ACTOR, COL_EFFECT,
  41. // VOBSUB
  42. /* ........... same as TEXTSUB ............. */   COL_VOBID=COL_TEXT, COL_CELLID, COL_FORCED,
  43. };
  44. enum {NONE = 0, VOBSUB, TEXTSUB};
  45. int m_mode;
  46. bool m_fUnlink;
  47. typedef struct {int orgstart, newstart, orgend, newend;} SubTime;
  48. CAtlArray<SubTime> m_subtimes;
  49. // CRenderedTextSubtitle m_sts;
  50. CSimpleTextSubtitle m_sts;
  51. int GetStartTime(int iItem), GetEndTime(int iItem);
  52. void FormatTime(int iItem, TCHAR* buff, int time /* 0:start, 1:newstart, 2:preview */, bool fEnd);
  53. void UpdatePreview(), UpdateStrings();
  54. enum {TSMOD=1, TEMOD=2, TSADJ=4, TEADJ=8, TSEP=0x80000000};
  55. void GetCheck(int iItem, bool& fStartMod, bool& fEndMod, bool& fStartAdj, bool& fEndAdj);
  56. void SetCheck(int iItem, bool fStart, bool fEnd);
  57. bool ModStart(int iItem, int t, bool fReset = false);
  58. bool ModEnd(int iItem, int t, bool fReset = false);
  59. public:
  60. CPlayerSubresyncBar();
  61. virtual ~CPlayerSubresyncBar();
  62. BOOL Create(CWnd* pParentWnd, CCritSec* pSubLock);
  63. void SetTime(__int64 rt);
  64. void SetSubtitle(ISubStream* pSubStream, double fps);
  65. void ResetSubtitle();
  66. void SaveSubtitle();
  67. protected:
  68. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  69. virtual BOOL PreTranslateMessage(MSG* pMsg);
  70. bool IsShortCut(MSG* pMsg);
  71. DECLARE_MESSAGE_MAP()
  72. public:
  73. afx_msg void OnSize(UINT nType, int cx, int cy);
  74. afx_msg void OnBeginlabeleditList(NMHDR* pNMHDR, LRESULT* pResult);
  75. afx_msg void OnDolabeleditList(NMHDR* pNMHDR, LRESULT* pResult);
  76. afx_msg void OnEndlabeleditList(NMHDR* pNMHDR, LRESULT* pResult);
  77. afx_msg void OnRclickList(NMHDR* pNMHDR, LRESULT* pResult);
  78. afx_msg void OnNMDblclkList(NMHDR* pNMHDR, LRESULT* pResult);
  79. afx_msg void OnLvnKeydownList(NMHDR* pNMHDR, LRESULT* pResult);
  80. afx_msg void OnCustomdrawList(NMHDR* pNMHDR, LRESULT* pResult);
  81. };