StatusLabel.cpp
上传用户: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. // StatusLabel.cpp : implementation file
  22. //
  23. #include "stdafx.h"
  24. #include "mplayerc.h"
  25. #include "StatusLabel.h"
  26. // CStatusLabel
  27. IMPLEMENT_DYNAMIC(CStatusLabel, CStatic)
  28. CStatusLabel::CStatusLabel(bool fRightAlign, bool fAddEllipses) 
  29. : m_fRightAlign(fRightAlign)
  30. , m_fAddEllipses(fAddEllipses)
  31. {
  32. HDC hdc = ::GetDC(NULL);
  33. double scale = 1.0*GetDeviceCaps(hdc, LOGPIXELSY) / 96.0;
  34. ::ReleaseDC(0, hdc);
  35. m_font.m_hObject = NULL;
  36. if(!(::GetVersion()&0x80000000))
  37. m_font.CreateFont(int(14.0 * scale), 0, 0, 0, FW_NORMAL, 0, 0, 0, DEFAULT_CHARSET,
  38. OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY, DEFAULT_PITCH|FF_DONTCARE, 
  39. _T("Microsoft Sans Serif"));
  40. if(!m_font.m_hObject)
  41. m_font.CreateFont(int(14.0 * scale), 0, 0, 0, FW_NORMAL, 0, 0, 0, DEFAULT_CHARSET, 
  42. OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY, DEFAULT_PITCH|FF_DONTCARE, 
  43. _T("MS Sans Serif"));
  44. }
  45. CStatusLabel::~CStatusLabel()
  46. {
  47. }
  48. BEGIN_MESSAGE_MAP(CStatusLabel, CStatic)
  49. ON_WM_ERASEBKGND()
  50. END_MESSAGE_MAP()
  51. // CStatusLabel message handlers
  52. void CStatusLabel::DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct)
  53. {
  54. CDC dc;
  55. dc.Attach(lpDrawItemStruct->hDC);
  56. CString str;
  57. GetWindowText(str);
  58. CRect r;
  59. GetClientRect(&r);
  60. CFont* old = dc.SelectObject(&m_font);
  61. dc.SetTextColor(0xffffff);
  62. dc.SetBkColor(0);
  63. CSize size = dc.GetTextExtent(str);
  64. CPoint p = CPoint(m_fRightAlign ? r.Width() - size.cx : 0, (r.Height()-size.cy)/2);
  65. if(m_fAddEllipses)
  66. while(size.cx > r.Width()-3 && str.GetLength() > 3)
  67. {
  68. str = str.Left(str.GetLength()-4) + _T("...");
  69. size = dc.GetTextExtent(str);
  70. }
  71. dc.TextOut(p.x, p.y, str);
  72. dc.ExcludeClipRect(CRect(p, size));
  73. dc.SelectObject(&old);
  74. dc.FillSolidRect(&r, 0);
  75. dc.Detach();
  76. }
  77. BOOL CStatusLabel::OnEraseBkgnd(CDC* pDC)
  78. {
  79. CRect r;
  80. GetClientRect(&r);
  81. pDC->FillSolidRect(&r, 0);
  82. return TRUE;
  83. }