StatusLabel.cpp
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:3k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /* 
  2.  * Copyright (C) 2003-2005 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.CreateFont(int(14.0 * scale), 0, 0, 0, FW_NORMAL, 0, 0, 0, DEFAULT_CHARSET,
  36. OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY, DEFAULT_PITCH|FF_DONTCARE, 
  37. _T("Microsoft Sans Serif"));
  38. if(!m_font.m_hObject)
  39. m_font.CreateFont(int(14.0 * scale), 0, 0, 0, FW_NORMAL, 0, 0, 0, DEFAULT_CHARSET, 
  40. OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY, DEFAULT_PITCH|FF_DONTCARE, 
  41. _T("MS Sans Serif"));
  42. }
  43. CStatusLabel::~CStatusLabel()
  44. {
  45. }
  46. BEGIN_MESSAGE_MAP(CStatusLabel, CStatic)
  47. ON_WM_ERASEBKGND()
  48. END_MESSAGE_MAP()
  49. // CStatusLabel message handlers
  50. void CStatusLabel::DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct)
  51. {
  52. CDC dc;
  53. dc.Attach(lpDrawItemStruct->hDC);
  54. CString str;
  55. GetWindowText(str);
  56. CRect r;
  57. GetClientRect(&r);
  58. CFont* old = dc.SelectObject(&m_font);
  59. dc.SetTextColor(0xffffff);
  60. dc.SetBkColor(0);
  61. CSize size = dc.GetTextExtent(str);
  62. CPoint p = CPoint(m_fRightAlign ? r.Width() - size.cx : 0, (r.Height()-size.cy)/2);
  63. if(m_fAddEllipses)
  64. while(size.cx > r.Width()-3 && str.GetLength() > 3)
  65. {
  66. str = str.Left(str.GetLength()-4) + _T("...");
  67. size = dc.GetTextExtent(str);
  68. }
  69. dc.TextOut(p.x, p.y, str);
  70. dc.ExcludeClipRect(CRect(p, size));
  71. dc.SelectObject(&old);
  72. dc.FillSolidRect(&r, 0);
  73. dc.Detach();
  74. }
  75. BOOL CStatusLabel::OnEraseBkgnd(CDC* pDC)
  76. {
  77. CRect r;
  78. GetClientRect(&r);
  79. pDC->FillSolidRect(&r, 0);
  80. return TRUE;
  81. }