called more than once. So this might be a better SetScrollingText.
AliR.
Here is one version:
#pragma once
// CMarqeeText
class CMarqeeText : public CStatic
{
DECLARE_DYNAMIC(CMarqeeText)
public:
CMarqeeText();
virtual ~CMarqeeText();
void SetScrollingText(CString Text,CString FontName,int FontSize);
protected:
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
virtual void PreSubclassWindow();
virtual void DrawItem(LPDRAWITEMSTRUCT /*lpDrawItemStruct*/);
afx_msg void OnTimer(UINT nIDEvent);
afx_msg BOOL OnEraseBkgnd(CDC* pDC);
DECLARE_MESSAGE_MAP()
private:
CString m_Text;
long m_Offset;
int m_TextExtent;
CBitmap m_Bmp;
CFont m_Font;
};
// MarqeeText.cpp : implementation file
//
#include "stdafx.h"
#include "MarqeeText.h"
// CMarqeeText
IMPLEMENT_DYNAMIC(CMarqeeText, CStatic)
CMarqeeText::CMarqeeText()
: m_Offset(0)
{
}
CMarqeeText::~CMarqeeText()
{
}
BEGIN_MESSAGE_MAP(CMarqeeText, CStatic)
ON_WM_TIMER()
ON_WM_ERASEBKGND()
END_MESSAGE_MAP()
// CMarqeeText message handlers
void CMarqeeText::SetScrollingText(CString Text,CString FontName,int
FontSize)
{
m_Text = Text;
CRect Rect;
GetClientRect(&Rect);
m_Offset = -Rect.Width();
m_Font.CreatePointFont(FontSize*10,FontName);
CDC *pDC = GetDC();
pDC->SaveDC();
pDC->SelectObject(&m_Font);
CSize Size = pDC->GetTextExtent(m_Text);
m_TextExtent = Size.cx;
SetWindowPos(NULL,0,0,Rect.Width(),Size.cy,SWP_NOMOVE|SWP_NOZORDER);
pDC->RestoreDC(-1);
ReleaseDC(pDC);
SetTimer(100,0,NULL);
}
void CMarqeeText::OnTimer(UINT nIDEvent)
{
m_Offset+=1;
if (m_Offset > m_TextExtent)
{
CRect Rect;
GetClientRect(&Rect);
m_Offset = -Rect.Width();
}
Invalidate();
CStatic::OnTimer(nIDEvent);
}
BOOL CMarqeeText::PreCreateWindow(CREATESTRUCT& cs)
{
cs.style = SS_OWNERDRAW;
return CStatic::PreCreateWindow(cs);
}
void CMarqeeText::PreSubclassWindow()
{
ModifyStyle(0,SS_OWNERDRAW);
CStatic::PreSubclassWindow();
}
void CMarqeeText::DrawItem(LPDRAWITEMSTRUCT lpDIS)
{
CDC dc;
dc.Attach(lpDIS->hDC);
CRect Rect;
GetClientRect(Rect);
CRgn Rgn;
Rgn.CreateRectRgn(Rect.left,Rect.top,Rect.right,Rect.bottom);
dc.SelectClipRgn(&Rgn,RGN_COPY);
CDC MemDC;
MemDC.CreateCompatibleDC(&dc);
MemDC.SaveDC();
CBitmap Bmp;
Bmp.CreateCompatibleBitmap(&dc,Rect.Width(),Rect.Height());
MemDC.SelectObject(&Bmp);
CDC MemDC2;
MemDC2.CreateCompatibleDC(&dc);
CBitmap *pOldBmp = MemDC2.SelectObject(&m_Bmp);
MemDC.BitBlt(0,0,Rect.Width(),Rect.Height(),&MemDC2,0,0,SRCCOPY);
MemDC2.SelectObject(pOldBmp);
CRect TextRect = Rect;
TextRect.InflateRect(m_Offset,0,0,0);
MemDC.SelectObject(&m_Font);
MemDC.SetBkMode(TRANSPARENT);
MemDC.DrawText(m_Text,&TextRect,DT_SINGLELINE|DT_LEFT);
dc.BitBlt(0,0,Rect.Width(),Rect.Height(),&MemDC,0,0,SRCCOPY);
MemDC.RestoreDC(-1);
dc.Detach();
}
BOOL CMarqeeText::OnEraseBkgnd(CDC* pDC)
{
if (m_Bmp.GetSafeHandle() == NULL)
{
CRect Rect;
GetWindowRect(&Rect);
CWnd *pParent = GetParent();
ASSERT(pParent);
pParent->ScreenToClient(&Rect); //convert our corrdinates to our
parents
//copy what's on the parents at this point
CDC *pDC = pParent->GetDC();
CDC MemDC;
MemDC.CreateCompatibleDC(pDC);
m_Bmp.CreateCompatibleBitmap(pDC,Rect.Width(),Rect.Height());
CBitmap *pOldBmp = MemDC.SelectObject(&m_Bmp);
MemDC.BitBlt(0,0,Rect.Width(),Rect.Height(),pDC,Rect.left,Rect.top,SRCCOPY);
MemDC.SelectObject(pOldBmp);
pParent->ReleaseDC(pDC);
}
return TRUE;
}
"AliR (VC++ MVP)" <AliR@online.nospam> wrote in message
news:8oLMj.3950$iK6.3550@nlpi069.nbdc.sbc.com...
I'm not really sure what it is that you are trying to do in the PaintBk
method. Specially the line
CClientDC clDC(GetParent());
But there are a couple of approaches:
One is to take a snapshot of the background before you paint the static
control for the first time. And you use that in your paint method later
on.
The other is to invalidate the parent window just under the control
before each time you paint.
CRect Rect;
GetWindowRect(&Rect);
GetParent()->ScreenToClient(&Rect);
GetParent()->InvalidateRect(&Rect);
GetParent()->UpdateWindow();
Both method involve setting the background mode to transparent and
setting the brush to hollow brush in =WM_CTRLCOLOR.
If you want to post more meaningful code then, maybe we can help a little
better.
AliR.
"fiversen" <fiversen@wedding.in-berlin.de> wrote in message
news:ee8535ea-3a83-4c23-aabe-4928d22b7349@p25g2000pri.googlegroups.com...
Hello,
I want to draw a marquee text above a bitmap.
If the background of the text has a solid color:
-----------------------------------------------------------------
void COTextMarq::DrawItem( lpDraw..)
{
HDC hdc = lpDraw->hDC;
BITMAP hBit = ::CreateCompatibleBitmap(
hdc, // handle to DC
w, // width of bitmap, in pixels
h); // height of bitmap, in pixels
HDC hdcM = ::CreateCompatibleDC(hdc);
::SelectObject(hdcM, hBit);
//fill background in hdcM
//draw text in hdcM
::BitBlt(hdc, x, y, w, h, hdcM, 0, 0, SRCCOPY);
}
-----------------------------------------------------------------
To draw transparent,
I take clear bitmap and clear dc and draw the clear background
(I take it from an example):
-----------------------------------------------------------------
void COTextMarq::PaintBk(CDC* pDC)
{
CClientDC clDC(GetParent());
CRect rect;
CRect rect1;
GetClientRect(rect);
GetWindowRect(rect1);
GetParent()->ScreenToClient(rect1);
if (IsWindowVisible())
{
if (m_dcBk.m_hDC == NULL)
{
m_dcBk.CreateCompatibleDC(&clDC);
m_bmpBk.CreateCompatibleBitmap(&clDC, rect.Width(),
rect.Height());
m_pbmpOldBk = m_dcBk.SelectObject(&m_bmpBk);
m_dcBk.BitBlt(0, 0, rect.Width(), rect.Height(), &clDC,
rect1.left, rect1.top, SRCCOPY);
} // if
pDC->BitBlt(0, 0, rect.Width(), rect.Height(), &m_dcBk, 0, 0,
SRCCOPY);
}
}
-----------------------------------------------------------------
I call PaintBk in the first part of the DrawItem() function.
But,
this is a little bit slowly and flicker a little bit.
So - I want to opitmize it:
- to draw into m_dcBk in DrawItem(),
then the background is not clear before the new Painting.
Is there a propper way ?
--
Thanks Frank Iversen