1*b1cdbd2cSJim Jagielski/************************************************************** 2*b1cdbd2cSJim Jagielski * 3*b1cdbd2cSJim Jagielski * Licensed to the Apache Software Foundation (ASF) under one 4*b1cdbd2cSJim Jagielski * or more contributor license agreements. See the NOTICE file 5*b1cdbd2cSJim Jagielski * distributed with this work for additional information 6*b1cdbd2cSJim Jagielski * regarding copyright ownership. The ASF licenses this file 7*b1cdbd2cSJim Jagielski * to you under the Apache License, Version 2.0 (the 8*b1cdbd2cSJim Jagielski * "License"); you may not use this file except in compliance 9*b1cdbd2cSJim Jagielski * with the License. You may obtain a copy of the License at 10*b1cdbd2cSJim Jagielski * 11*b1cdbd2cSJim Jagielski * http://www.apache.org/licenses/LICENSE-2.0 12*b1cdbd2cSJim Jagielski * 13*b1cdbd2cSJim Jagielski * Unless required by applicable law or agreed to in writing, 14*b1cdbd2cSJim Jagielski * software distributed under the License is distributed on an 15*b1cdbd2cSJim Jagielski * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*b1cdbd2cSJim Jagielski * KIND, either express or implied. See the License for the 17*b1cdbd2cSJim Jagielski * specific language governing permissions and limitations 18*b1cdbd2cSJim Jagielski * under the License. 19*b1cdbd2cSJim Jagielski * 20*b1cdbd2cSJim Jagielski *************************************************************/ 21*b1cdbd2cSJim Jagielski 22*b1cdbd2cSJim Jagielski 23*b1cdbd2cSJim Jagielski 24*b1cdbd2cSJim Jagielski#ifndef __com_sun_star_text_textfield_ChangeDateTime_idl__ 25*b1cdbd2cSJim Jagielski#define __com_sun_star_text_textfield_ChangeDateTime_idl_ 26*b1cdbd2cSJim Jagielski 27*b1cdbd2cSJim Jagielski#include <com/sun/star/text/TextField.idl> 28*b1cdbd2cSJim Jagielski 29*b1cdbd2cSJim Jagielski//============================================================================= 30*b1cdbd2cSJim Jagielski 31*b1cdbd2cSJim Jagielskimodule com { module sun { module star { 32*b1cdbd2cSJim Jagielski module text { module textfield { module docinfo { 33*b1cdbd2cSJim Jagielski 34*b1cdbd2cSJim Jagielski//============================================================================= 35*b1cdbd2cSJim Jagielski/** specifies service of a text field that provides information about the date 36*b1cdbd2cSJim Jagielski and time the document was last changed. 37*b1cdbd2cSJim Jagielski @see com::sun::star::text::TextField 38*b1cdbd2cSJim Jagielski*/ 39*b1cdbd2cSJim Jagielskipublished service ChangeDateTime 40*b1cdbd2cSJim Jagielski{ 41*b1cdbd2cSJim Jagielski service com::sun::star::text::TextField; 42*b1cdbd2cSJim Jagielski /** contains the current content of the text field. 43*b1cdbd2cSJim Jagielski <p> This property is escpecially usefull for import/export purposes. </p> 44*b1cdbd2cSJim Jagielski */ 45*b1cdbd2cSJim Jagielski [property]string CurrentPresentation; 46*b1cdbd2cSJim Jagielski /** If this flag is set to false the author 47*b1cdbd2cSJim Jagielski will be overiden by the current author 48*b1cdbd2cSJim Jagielski each time the document is saved. 49*b1cdbd2cSJim Jagielski */ 50*b1cdbd2cSJim Jagielski /** If this flag is set to <FALSE/> the date or time 51*b1cdbd2cSJim Jagielski is always displayed as the current date or time. 52*b1cdbd2cSJim Jagielski 53*b1cdbd2cSJim Jagielski @since OpenOffice 1.1.2 54*b1cdbd2cSJim Jagielski */ 55*b1cdbd2cSJim Jagielski [optional, property] boolean IsFixed; 56*b1cdbd2cSJim Jagielski /** If this flag is set to <TRUE/> this field represents, 57*b1cdbd2cSJim Jagielski a date with an optional time. If it is set to <FALSE/> 58*b1cdbd2cSJim Jagielski only the time is used here. 59*b1cdbd2cSJim Jagielski */ 60*b1cdbd2cSJim Jagielski [property]boolean IsDate; 61*b1cdbd2cSJim Jagielski /** contains the date and time as double value. 62*b1cdbd2cSJim Jagielski */ 63*b1cdbd2cSJim Jagielski [property]double DateTimeValue; 64*b1cdbd2cSJim Jagielski /** this is the number format for this field. 65*b1cdbd2cSJim Jagielski @see com::sun::star::util::NumberFormatter 66*b1cdbd2cSJim Jagielski */ 67*b1cdbd2cSJim Jagielski [property]long NumberFormat; 68*b1cdbd2cSJim Jagielski /** determines whether changes in language attributes at the position the text field 69*b1cdbd2cSJim Jagielski is located also change the number format as appropriate for this language. 70*b1cdbd2cSJim Jagielski */ 71*b1cdbd2cSJim Jagielski [optional, property] boolean IsFixedLanguage; 72*b1cdbd2cSJim Jagielski}; 73*b1cdbd2cSJim Jagielski 74*b1cdbd2cSJim Jagielski//============================================================================= 75*b1cdbd2cSJim Jagielski 76*b1cdbd2cSJim Jagielski}; }; }; }; }; }; 77*b1cdbd2cSJim Jagielski 78*b1cdbd2cSJim Jagielski#endif 79*b1cdbd2cSJim Jagielski 80