You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
132 lines
4.4 KiB
C++
132 lines
4.4 KiB
C++
// XTPMarkupColumnDefinition.cpp: implementation of the CXTPMarkupColumnDefinition class.
|
|
//
|
|
// This file is a part of the XTREME TOOLKIT PRO MFC class library.
|
|
// (c)1998-2012 Codejock Software, All Rights Reserved.
|
|
//
|
|
// THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
|
|
// RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
|
|
// CONSENT OF CODEJOCK SOFTWARE.
|
|
//
|
|
// THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
|
|
// IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
|
|
// YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
|
|
// SINGLE COMPUTER.
|
|
//
|
|
// CONTACT INFORMATION:
|
|
// support@codejock.com
|
|
// http://www.codejock.com
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "../XTPMarkupObject.h"
|
|
#include "../XTPMarkupInputElement.h"
|
|
#include "../XTPMarkupUIElement.h"
|
|
#include "../XTPMarkupFrameworkElement.h"
|
|
#include "../XTPMarkupPanel.h"
|
|
#include "../XTPMarkupGrid.h"
|
|
#include "../XTPMarkupBuilder.h"
|
|
|
|
#ifdef _DEBUG
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[]=__FILE__;
|
|
#define new DEBUG_NEW
|
|
#endif
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// CXTPMarkupColumnDefinition
|
|
|
|
CXTPMarkupDependencyProperty* CXTPMarkupColumnDefinition::m_pWidthProperty = NULL;
|
|
CXTPMarkupDependencyProperty* CXTPMarkupColumnDefinition::m_pMinWidthProperty = NULL;
|
|
CXTPMarkupDependencyProperty* CXTPMarkupColumnDefinition::m_pMaxWidthProperty = NULL;
|
|
|
|
IMPLEMENT_MARKUPCLASS(L"ColumnDefinition", CXTPMarkupColumnDefinition, CXTPMarkupDefinitionBase);
|
|
|
|
void CXTPMarkupColumnDefinition::RegisterMarkupClass()
|
|
{
|
|
m_pWidthProperty = CXTPMarkupDependencyProperty::Register(L"Width", MARKUP_TYPE(CXTPMarkupGridLength), MARKUP_TYPE(CXTPMarkupColumnDefinition),
|
|
new CXTPMarkupPropertyMetadata(new CXTPMarkupGridLength(1, CXTPMarkupGridLength::unitTypeStar), &CXTPMarkupDefinitionBase::OnDefinitionPropertyChanged));
|
|
|
|
m_pMinWidthProperty = CXTPMarkupDependencyProperty::Register(L"MinWidth", MARKUP_TYPE(CXTPMarkupInt), MARKUP_TYPE(CXTPMarkupColumnDefinition),
|
|
new CXTPMarkupPropertyMetadata(NULL, &CXTPMarkupDefinitionBase::OnDefinitionPropertyChanged));
|
|
|
|
m_pMaxWidthProperty = CXTPMarkupDependencyProperty::Register(L"MaxWidth", MARKUP_TYPE(CXTPMarkupInt), MARKUP_TYPE(CXTPMarkupColumnDefinition),
|
|
new CXTPMarkupPropertyMetadata(NULL, &CXTPMarkupDefinitionBase::OnDefinitionPropertyChanged));
|
|
}
|
|
|
|
CXTPMarkupColumnDefinition::CXTPMarkupColumnDefinition()
|
|
: CXTPMarkupDefinitionBase(TRUE)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
#ifdef _XTP_ACTIVEX
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// CXTPMarkupColumnDefinition
|
|
|
|
BEGIN_DISPATCH_MAP(CXTPMarkupColumnDefinition, CXTPMarkupDefinitionBase)
|
|
DISP_PROPERTY_EX_ID(CXTPMarkupColumnDefinition, "Width", 200, OleGetWidth, OleSetWidth, VT_I4)
|
|
DISP_PROPERTY_EX_ID(CXTPMarkupColumnDefinition, "MinWidth", 201, OleGetMinWidth, OleSetMinWidth, VT_I4)
|
|
DISP_PROPERTY_EX_ID(CXTPMarkupColumnDefinition, "MaxWidth", 202, OleGetMaxWidth, OleSetMaxWidth, VT_I4)
|
|
DISP_PROPERTY_EX_ID(CXTPMarkupColumnDefinition, "UnitType", 203, OleGetUnitType, OleSetUnitType, VT_I4)
|
|
END_DISPATCH_MAP()
|
|
|
|
// {10399842-AE6D-46a8-BC77-CEE7D5CE9ED7}
|
|
static const GUID IID_IMarkupColumnDefinition =
|
|
{ 0x10399842, 0xae6d, 0x46a8, { 0xbc, 0x77, 0xce, 0xe7, 0xd5, 0xce, 0x9e, 0xd7 } };
|
|
|
|
|
|
BEGIN_INTERFACE_MAP(CXTPMarkupColumnDefinition, CXTPMarkupDefinitionBase)
|
|
INTERFACE_PART(CXTPMarkupColumnDefinition, IID_IMarkupColumnDefinition, Dispatch)
|
|
END_INTERFACE_MAP()
|
|
|
|
IMPLEMENT_OLETYPELIB_EX(CXTPMarkupColumnDefinition, IID_IMarkupColumnDefinition)
|
|
|
|
void CXTPMarkupColumnDefinition::OleSetMinWidth(int nWidth)
|
|
{
|
|
SetMinWidth(nWidth);
|
|
}
|
|
|
|
void CXTPMarkupColumnDefinition::OleSetMaxWidth(int nWidth)
|
|
{
|
|
SetMinWidth(nWidth);
|
|
}
|
|
|
|
void CXTPMarkupColumnDefinition::OleSetWidth(int nWidth)
|
|
{
|
|
SetWidth(nWidth);
|
|
}
|
|
|
|
int CXTPMarkupColumnDefinition::OleGetMinWidth()
|
|
{
|
|
return GetUserMinSize();
|
|
}
|
|
|
|
int CXTPMarkupColumnDefinition::OleGetMaxWidth()
|
|
{
|
|
return GetUserMaxSize();
|
|
}
|
|
|
|
int CXTPMarkupColumnDefinition::OleGetWidth()
|
|
{
|
|
CXTPMarkupGridLength* pValue = GetUserSize();
|
|
return (int)pValue->GetValue();
|
|
}
|
|
|
|
|
|
int CXTPMarkupColumnDefinition::OleGetUnitType()
|
|
{
|
|
CXTPMarkupGridLength* pValue = GetUserSize();
|
|
return pValue->GetUnitType();
|
|
}
|
|
void CXTPMarkupColumnDefinition::OleSetUnitType(int nType)
|
|
{
|
|
SetWidth(new CXTPMarkupGridLength(OleGetWidth(), (CXTPMarkupGridLength::GridUnitType)nType));
|
|
}
|
|
|
|
#endif
|