Home
last modified time | relevance | path

Searched refs:aFeature (Results 1 – 6 of 6) sorted by relevance

/AOO41X/main/forms/source/helper/
H A Dformnavigation.cxx109 for ( FeatureMap::iterator aFeature = m_aSupportedFeatures.begin(); in statusChanged() local
110 aFeature != m_aSupportedFeatures.end(); in statusChanged()
111 ++aFeature in statusChanged()
114 if ( aFeature->second.aURL.Main == _rState.FeatureURL.Main ) in statusChanged()
116 if ( ( aFeature->second.bCachedState != _rState.IsEnabled ) in statusChanged()
117 || ( aFeature->second.aCachedAdditionalState != _rState.State ) in statusChanged()
121 aFeature->second.bCachedState = _rState.IsEnabled; in statusChanged()
122 aFeature->second.aCachedAdditionalState = _rState.State; in statusChanged()
124 featureStateChanged( aFeature->first, _rState.IsEnabled ); in statusChanged()
140 for ( FeatureMap::iterator aFeature = m_aSupportedFeatures.begin(); in disposing() local
[all …]
/AOO41X/main/vcl/unx/generic/printergfx/
H A Dprinterjob.cxx783 OStringBuffer aFeature(256); in writeFeature() local
784 aFeature.append( "[{\n" ); in writeFeature()
786 aFeature.append( "%%IncludeFeature:" ); in writeFeature()
788 aFeature.append( "%%BeginFeature:" ); in writeFeature()
789 aFeature.append( " *" ); in writeFeature()
790 aFeature.append( OUStringToOString( pKey->getKey(), RTL_TEXTENCODING_ASCII_US ) ); in writeFeature()
791 aFeature.append( ' ' ); in writeFeature()
792 aFeature.append( OUStringToOString( pValue->m_aOption, RTL_TEXTENCODING_ASCII_US ) ); in writeFeature()
795 aFeature.append( '\n' ); in writeFeature()
796 aFeature.append( OUStringToOString( pValue->m_aValue, RTL_TEXTENCODING_ASCII_US ) ); in writeFeature()
[all …]
/AOO41X/main/chart2/source/controller/main/
H A DFeatureCommandDispatchBase.cxx97 ControllerFeature aFeature; in implDescribeSupportedFeature() local
98 aFeature.Command = ::rtl::OUString::createFromAscii( pAsciiCommandURL ); in implDescribeSupportedFeature()
99 aFeature.nFeatureId = nId; in implDescribeSupportedFeature()
100 aFeature.GroupId = nGroup; in implDescribeSupportedFeature()
102 m_aSupportedFeatures[ aFeature.Command ] = aFeature; in implDescribeSupportedFeature()
/AOO41X/main/dbaccess/source/ui/browser/
H A Dgenericcontroller.cxx1000 ControllerFeature aFeature; in implDescribeSupportedFeature() local
1001 aFeature.Command = ::rtl::OUString::createFromAscii( _pAsciiCommandURL ); in implDescribeSupportedFeature()
1002 aFeature.nFeatureId = _nFeatureId; in implDescribeSupportedFeature()
1003 aFeature.GroupId = _nCommandGroup; in implDescribeSupportedFeature()
1006 OSL_ENSURE( m_aSupportedFeatures.find( aFeature.Command ) == m_aSupportedFeatures.end(), in implDescribeSupportedFeature()
1009 m_aSupportedFeatures[ aFeature.Command ] = aFeature; in implDescribeSupportedFeature()
1574 ControllerFeature aFeature; in registerCommandURL() local
1575 aFeature.Command = _rCompleteCommandURL; in registerCommandURL()
1576 aFeature.nFeatureId = nFeatureId; in registerCommandURL()
1577 aFeature.GroupId = CommandGroup::INTERNAL; in registerCommandURL()
[all …]
/AOO41X/main/svx/source/form/
H A Dfmtextcontrolshell.cxx596 for ( ControlFeatures::const_iterator aFeature = _rDispatchers.begin(); in transferFeatureStatesToItemSet() local
597 aFeature != _rDispatchers.end(); in transferFeatureStatesToItemSet()
598 ++aFeature in transferFeatureStatesToItemSet()
601 SfxSlotId nSlotId( aFeature->first ); in transferFeatureStatesToItemSet()
641 bool bFeatureIsEnabled = aFeature->second->isFeatureEnabled(); in transferFeatureStatesToItemSet()
649 lcl_translateUnoStateToItem( nSlotId, aFeature->second->getFeatureState(), _rSet ); in transferFeatureStatesToItemSet()
/AOO41X/main/vcl/inc/
H A Dgraphite_layout.hxx161 void SetFeatures(grutils::GrFeatureParser * aFeature) { mpFeatures = aFeature; } in SetFeatures() argument