/************************************************************** * * 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 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #ifndef __com_sun_star_form_component_RichTextControl_idl__ #define __com_sun_star_form_component_RichTextControl_idl__ #ifndef __com_sun_star_awt_UnoControlEditModel_idl__ #include #endif #ifndef __com_sun_star_form_FormControlModel_idl__ #include #endif #ifndef __com_sun_star_text_TextRange_idl__ #include #endif //============================================================================= module com { module sun { module star { module form { module component { //============================================================================= /** specifies a component which extends the UnoControlEditModel with capabilities to display and input formatted text. */ published service RichTextControl { service com::sun::star::awt::UnoControlEditModel; service com::sun::star::form::FormControlModel; /** specifies capabilities to provide rich text, as opposed to the simple text provided by the UnoControlEditModel */ service com::sun::star::text::TextRange; /** specifies whether text should be automatically wrapped to fit into the control.

If set to , users need to manually press the enter key to insert a line break. If set to , text is automatically wrapped at the control border.

*/ [property] boolean HardLineBreaks; /** specifies whether the control should display the text including all its formatting.

If this is set to , the control will act as ordinary UnoControlEditModel.

If the property is set to , the control will ignore the following properties:

  • UnoControlEditModel::EchoChar
  • UnoControlEditModel::MaxTextLen
  • UnoControlEditModel::MultiLine
  • UnoControlEditModel::Align

*/ [property] boolean RichText; }; //============================================================================= }; }; }; }; }; #endif