mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-22 18:30:27 +01:00
85 lines
2.5 KiB
C++
85 lines
2.5 KiB
C++
/* Copyright (c) 2002-2012 Croteam Ltd.
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of version 2 of the GNU General Public License as published by
|
|
the Free Software Foundation
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
|
|
|
|
// ChoosedColorButton.cpp : implementation file
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
|
|
#ifdef _DEBUG
|
|
#undef new
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CChoosedColorButton
|
|
|
|
CChoosedColorButton::CChoosedColorButton()
|
|
{
|
|
}
|
|
|
|
CChoosedColorButton::~CChoosedColorButton()
|
|
{
|
|
}
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(CChoosedColorButton, CButton)
|
|
//{{AFX_MSG_MAP(CChoosedColorButton)
|
|
ON_WM_LBUTTONDOWN()
|
|
//}}AFX_MSG_MAP
|
|
END_MESSAGE_MAP()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CChoosedColorButton message handlers
|
|
|
|
void CChoosedColorButton::DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct)
|
|
{
|
|
CDC *pDC = GetDC();
|
|
|
|
CModelerView *pModelerView = CModelerView::GetActiveView();
|
|
if( pModelerView == NULL)
|
|
{
|
|
CBrush *MyBrush = &CBrush();
|
|
ASSERT( MyBrush->CreateHatchBrush(HS_DIAGCROSS, 0x00777777) != FALSE);
|
|
|
|
pDC->FillSolidRect( &lpDrawItemStruct->rcItem, 0x00bbbbbb);
|
|
pDC->FillRect( &lpDrawItemStruct->rcItem, MyBrush);
|
|
pDC->DrawText( CString("none"), &lpDrawItemStruct->rcItem,
|
|
DT_SINGLELINE | DT_CENTER | DT_VCENTER);
|
|
}
|
|
else
|
|
{
|
|
COLORREF clrfColor = CLRF_CLR( PaletteColorValues[ pModelerView->m_iChoosedColor]);
|
|
pDC->FillSolidRect( &lpDrawItemStruct->rcItem, clrfColor);
|
|
}
|
|
pDC->DrawEdge( &lpDrawItemStruct->rcItem, EDGE_RAISED, BF_RECT);
|
|
ReleaseDC( pDC);
|
|
}
|
|
|
|
void CChoosedColorButton::OnLButtonDown(UINT nFlags, CPoint point)
|
|
{
|
|
CModelerView *pModelerView = CModelerView::GetActiveView();
|
|
if( pModelerView != NULL)
|
|
{
|
|
pModelerView->m_bOnColorMode = !pModelerView->m_bOnColorMode;
|
|
CMainFrame* pMainFrame = STATIC_DOWNCAST(CMainFrame, AfxGetMainWnd());
|
|
pMainFrame->m_dlgPaletteDialog->UpdateData(FALSE);
|
|
}
|
|
|
|
CButton::OnLButtonDown(nFlags, point);
|
|
}
|