ciderpress/util/MyBitmapButton.cpp

83 lines
1.9 KiB
C++
Raw Normal View History

2007-03-27 17:47:10 +00:00
/*
* CiderPress
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
* See the file LICENSE for distribution terms.
*/
/*
* Code for my buttons with bitmaps.
*/
#include "stdafx.h"
#include "MyBitmapButton.h"
BEGIN_MESSAGE_MAP(MyBitmapButton, CButton)
ON_WM_SYSCOLORCHANGE()
2007-03-27 17:47:10 +00:00
END_MESSAGE_MAP()
BOOL MyBitmapButton::ReplaceDlgCtrl(CDialog* pDialog, int buttonID)
2007-03-27 17:47:10 +00:00
{
CWnd* pWnd = pDialog->GetDlgItem(buttonID);
2014-11-18 05:13:13 +00:00
if (pWnd == NULL)
return FALSE;
2007-03-27 17:47:10 +00:00
#if 0
DWORD styles = pWnd->GetStyle();
//DWORD stylesEx = pWnd->GetExStyle();
CString caption;
CRect rect;
pWnd->GetWindowText(caption);
pWnd->GetWindowRect(&rect);
pDialog->ScreenToClient(&rect);
2007-03-27 17:47:10 +00:00
// pWnd->DestroyWindow();
if (Create(caption, styles, rect, pDialog, buttonID) == FALSE) {
LOGI("ERROR: unable to replace dialog ctrl (buttonID=%d)",
buttonID);
return FALSE;
}
2007-03-27 17:47:10 +00:00
#endif
/* latch on to their window handle */
Attach(pWnd->m_hWnd);
2007-03-27 17:47:10 +00:00
return TRUE;
2007-03-27 17:47:10 +00:00
}
BOOL MyBitmapButton::SetBitmapID(int id)
2007-03-27 17:47:10 +00:00
{
fBitmapID = id;
UpdateBitmap();
return TRUE;
2007-03-27 17:47:10 +00:00
}
void MyBitmapButton::UpdateBitmap(void)
2007-03-27 17:47:10 +00:00
{
HBITMAP hNewBits;
2007-03-27 17:47:10 +00:00
if (fBitmapID == -1) {
LOGE("ERROR: UpdateBitmap called before bitmap set");
ASSERT(false);
return;
}
2007-03-27 17:47:10 +00:00
hNewBits = (HBITMAP) ::LoadImage(AfxGetInstanceHandle(),
MAKEINTRESOURCE(fBitmapID), IMAGE_BITMAP, 0, 0, LR_LOADMAP3DCOLORS);
2014-11-18 05:13:13 +00:00
if (hNewBits == NULL) {
LOGW("WARNING: LoadImage failed (bitID=%d)", fBitmapID);
ASSERT(false);
return;
}
2007-03-27 17:47:10 +00:00
ASSERT(GetBitmap() == fhBitmap);
2007-03-27 17:47:10 +00:00
::DeleteObject(SetBitmap(hNewBits));
fhBitmap = hNewBits;
2007-03-27 17:47:10 +00:00
}
void MyBitmapButton::OnSysColorChange(void)
2007-03-27 17:47:10 +00:00
{
LOGD("MyBitmapButton 0x%p tracking color change", this);
UpdateBitmap();
2007-03-27 17:47:10 +00:00
}