本文介绍了C ++ CScrollView,如何滚动图像?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在CScrollView中绘制了一个图像(从CView继承).如果视图窗体是放大或缩小,则会重新计算图像比例:
I draw an image in CScrollView (inherited from CView). Image scale is recalculated if view form is zoom in or zoom out:
//*.h
CPictureHolder pic;
//*.cpp
void CMyAppView::OnPaint()
{
CPaintDC dc(this);
CBitmap bmp;
BITMAP b;
HBITMAP hbitmap;
CRect rect;
auto bmp_iter = theApp.FullBmpMap.find(m_iCurrentImage);
if (bmp_iter == theApp.FullBmpMap.end()) return;
hbitmap = bmp_iter->second;
bmp.Attach((*bmp_iter).second);
bmp.GetObject(sizeof(BITMAP), &b);
GetClientRect(&rect);
scaleRect = rect;
OriginalWidth = b.bmWidth;
OriginalHeight = b.bmHeight;
if (rect.Height() <= b.bmHeight)
scaleRect.right = rect.left + ((b.bmWidth*rect.Height()) / b.bmHeight);
else if (rect.Height() > b.bmHeight)
{
scaleRect.right = b.bmWidth;
scaleRect.bottom = b.bmHeight;
}
scaleRect.right = scaleRect.right + scale_koef_g;
scaleRect.bottom = scaleRect.bottom + scale_koef_v;
pic.CreateFromBitmap(hbitmap);
pic.Render(&dc, scaleRect, rect);
(*bmp_iter).second.Detach();
(*bmp_iter).second.Attach(bmp);
bmp.Detach();
int isclWidth = scaleRect.Width();
int isclHeight = scaleRect.Height();
int irHeight = rect.Height();
int irWidth = rect.Width();
if ((isclWidth> irWidth)||(isclHeight > irHeight))
{
SetScrollSizes(MM_TEXT, CSize(isclWidth, isclHeight));
}
}
通过mouseweel缩放选项:
Zoom option through mouseweel:
BOOL CCardioAppView::OnMouseWheel(UINT nFlags, short zDelta, CPoint pt)
{
CPaintDC dc(this);
CRect rect, scaleRect;
GetClientRect(rect);
if (zDelta > 0)//up
scale_counter++;
else //down
scale_counter--;
if (scale_counter < 0) scale_counter = 0;
scale_koef_g = OriginalWidth*0.2*scale_counter;
scale_koef_v = OriginalHeight*0.2*scale_counter;
Invalidate(TRUE);
return CScrollView::OnMouseWheel(nFlags, zDelta, pt);
}
Zoom和scrools可以正常工作,但是当我滚动时,我得到了:
Zoom and scrools are working, but when I'm scrolling I got this:
我需要在代码中添加什么?
What do I need to add in my code?
推荐答案
尝试不执行
CScrollView::OnMouseWheel(nFlags, zDelta, pt);
然后改为
return FALSE;
这篇关于C ++ CScrollView,如何滚动图像?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!