Example #1
0
// ****************************************************************************
//
//  Function Name:	RHeadlineApplication::GetSupportedComponentTypes( )
//
//  Description:		Fills in the specified collection with the component types
//							which this application supports
//
//  Returns:			Nothing
//
//  Exceptions:		None
//
// ****************************************************************************
//
void RHeadlineApplication::GetSupportedComponentTypes( RComponentTypeCollection& componentTypeCollection ) const
	{
	componentTypeCollection.InsertAtEnd( kHeadlineComponent );
	componentTypeCollection.InsertAtEnd( kSpecialHeadlineComponent );
	componentTypeCollection.InsertAtEnd( kVerticalHeadlineComponent );
	componentTypeCollection.InsertAtEnd( kVerticalSpecialHeadlineComponent );
	}
Example #2
0
// ****************************************************************************
//
//  Function Name:	RImageApplication::GetSupportedComponentTypes( )
//
//  Description:		Fills in the specified collection with the component types
//							which this application supports
//
//  Returns:			Nothing
//
//  Exceptions:		None
//
// ****************************************************************************
//
void RImageApplication::GetSupportedComponentTypes(RComponentTypeCollection& rComponentTypeCollection) const
{
	rComponentTypeCollection.InsertAtEnd( kImageComponent );
	rComponentTypeCollection.InsertAtEnd( kPSDPhotoComponent );
	rComponentTypeCollection.InsertAtEnd( kPhotoFrameComponent );
	//KDM 10/22/97 Leapfrog - Just use Image
	rComponentTypeCollection.InsertAtEnd( kNavigationButtonSetComponent );
	rComponentTypeCollection.InsertAtEnd( kIconButtonComponent );
	rComponentTypeCollection.InsertAtEnd( kBulletComponent );
	rComponentTypeCollection.InsertAtEnd( kPageDividerComponent );
	rComponentTypeCollection.InsertAtEnd( kAnimationComponent );
	rComponentTypeCollection.InsertAtEnd( kBackgroundComponent );
}
Example #3
0
// ****************************************************************************
//
//  Function Name:	RPathApplication::GetSupportedComponentTypes( )
//
//  Description:		Fills in the specified collection with the component types
//							which this application supports
//
//  Returns:			Nothing
//
//  Exceptions:		None
//
// ****************************************************************************
//
void RPathApplication::GetSupportedComponentTypes( RComponentTypeCollection& componentTypeCollection ) const
{
	componentTypeCollection.InsertAtEnd( kPathComponent );
}