/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
/** creates an <member scope="css::inspection">PropertyControlType::ListBox</member>-type control and fills it with initial values
@param _rxControlFactory A control factory. Must not be <NULL/>.
@param _rInitialListEntries the initial values of the control
@param _bReadOnlyControl determines whether the control should be read-only
@param _bSorted determines whether the list entries should be sorted
@return the newly created control
*/ static css::uno::Reference< css::inspection::XPropertyControl >
createListBoxControl( const css::uno::Reference< css::inspection::XPropertyControlFactory >& _rxControlFactory,
std::vector< OUString >&& _rInitialListEntries, bool _bReadOnlyControl, bool _bSorted
);
/** creates an <member scope="css::inspection">PropertyControlType::ListBox</member>-type control and fills it with initial values.
@param _rxControlFactory A control factory. Must not be <NULL/>.
@param pTransIds the initial translation ids for the value of the control
@param nElements the count of initial values of the control
@param _bReadOnlyControl determines whether the control should be read-only
@return the newly created control
*/ static css::uno::Reference< css::inspection::XPropertyControl >
createListBoxControl( const css::uno::Reference< css::inspection::XPropertyControlFactory >& _rxControlFactory, const TranslateId* pTransIds, size_t nElements, bool _bReadOnlyControl
);
/** creates an <member scope="css::inspection">PropertyControlType::ComboBox</member>-type control and fills it with initial values
@param _rxControlFactory A control factory. Must not be <NULL/>.
@param _rInitialListEntries the initial values of the control
@param _bSorted determines whether the list entries should be sorted
@return the newly created control
*/ static css::uno::Reference< css::inspection::XPropertyControl >
createComboBoxControl( const css::uno::Reference< css::inspection::XPropertyControlFactory >& _rxControlFactory,
std::vector< OUString >&& _rInitialListEntries, bool _bSorted
);
/** creates an <member scope="css::inspection">PropertyControlType::NumericField</member>-type control and initializes it
@param _rxControlFactory A control factory. Must not be <NULL/>. @param _nDigits number of decimal digits for the control (<member scope="css::inspection">XNumericControl::DecimalDigits</member>) @param _rMinValue minimum value which can be entered in the control (<member scope="css::inspection">XNumericControl::MinValue</member>) @param _rMaxValue maximum value which can be entered in the control (<member scope="css::inspection">XNumericControl::MaxValue</member>)
@return the newly created control
*/ static css::uno::Reference< css::inspection::XPropertyControl >
createNumericControl( const css::uno::Reference< css::inspection::XPropertyControlFactory >& _rxControlFactory,
sal_Int16 _nDigits, const css::beans::Optional< double >& _rMinValue, const css::beans::Optional< double >& _rMaxValue
);
/** marks the document passed in our UNO context as modified
The method looks up a value called "ContextDocument" in the given UNO component context, queries it for the ->css::util::XModifiable interface, and calls its setModified method. If either of those steps fails, this is asserted in a non-product version, and silently ignore otherwise.
@param _rContext the component context which was used to create the component calling this method
*/ staticvoid setContextDocumentModified( const css::uno::Reference< css::uno::XComponentContext > & _rContext
);
/** gets the window of the ObjectInspector in which a property handler lives
The method looks up a value called "DialogParentWindow" in the given UNO component context, queries it for XWindow, and returns the respective weld::Window*. If either of those steps fails, this is asserted in a non-product version, and silently ignore otherwise.
@param _rContext the component context which was used to create the component calling this method
*/ static weld::Window* getDialogParentFrame( const css::uno::Reference< css::uno::XComponentContext > & _rContext );
/** determines whether given PropertyAttributes require a to-be-created <type scope="css::inspection">XPropertyControl</type> to be read-only
@param _nPropertyAttributes the attributes of the property which should be reflected by a to-be-created <type scope="css::inspection">XPropertyControl</type>
*/ staticbool requiresReadOnlyControl( sal_Int16 _nPropertyAttributes )
{ return ( _nPropertyAttributes & css::beans::PropertyAttribute::READONLY ) != 0;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.