Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include "FixedText.hxx"
21 : #include "services.hxx"
22 : #include "property.hrc"
23 : #include "property.hxx"
24 : #include <comphelper/processfactory.hxx>
25 :
26 :
27 : namespace frm
28 : {
29 : using namespace ::com::sun::star::uno;
30 : using namespace ::com::sun::star::sdb;
31 : using namespace ::com::sun::star::sdbc;
32 : using namespace ::com::sun::star::sdbcx;
33 : using namespace ::com::sun::star::beans;
34 : using namespace ::com::sun::star::container;
35 : using namespace ::com::sun::star::form;
36 : using namespace ::com::sun::star::awt;
37 : using namespace ::com::sun::star::io;
38 : using namespace ::com::sun::star::lang;
39 : using namespace ::com::sun::star::util;
40 :
41 :
42 62 : OFixedTextModel::OFixedTextModel( const Reference<XComponentContext>& _rxFactory )
43 62 : :OControlModel(_rxFactory, VCL_CONTROLMODEL_FIXEDTEXT)
44 :
45 : {
46 62 : m_nClassId = FormComponentType::FIXEDTEXT;
47 62 : }
48 :
49 :
50 1 : OFixedTextModel::OFixedTextModel( const OFixedTextModel* _pOriginal, const Reference<XComponentContext>& _rxFactory )
51 1 : :OControlModel( _pOriginal, _rxFactory )
52 :
53 : {
54 1 : }
55 :
56 :
57 126 : OFixedTextModel::~OFixedTextModel( )
58 : {
59 126 : }
60 :
61 :
62 1 : IMPLEMENT_DEFAULT_CLONING( OFixedTextModel )
63 :
64 :
65 5 : StringSequence SAL_CALL OFixedTextModel::getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException, std::exception)
66 : {
67 5 : StringSequence aSupported = OControlModel::getSupportedServiceNames();
68 5 : aSupported.realloc(aSupported.getLength() + 2);
69 :
70 5 : OUString* pArray = aSupported.getArray();
71 5 : pArray[aSupported.getLength()-2] = FRM_SUN_COMPONENT_FIXEDTEXT;
72 5 : pArray[aSupported.getLength()-1] = FRM_COMPONENT_FIXEDTEXT;
73 5 : return aSupported;
74 : }
75 :
76 :
77 62 : void OFixedTextModel::describeAggregateProperties( Sequence< Property >& _rAggregateProps ) const
78 : {
79 62 : OControlModel::describeAggregateProperties( _rAggregateProps );
80 62 : RemoveProperty( _rAggregateProps, PROPERTY_TABSTOP );
81 62 : }
82 :
83 :
84 1 : OUString SAL_CALL OFixedTextModel::getServiceName() throw(RuntimeException, std::exception)
85 : {
86 1 : return OUString(FRM_COMPONENT_FIXEDTEXT); // old (non-sun) name for compatibility !
87 : }
88 :
89 :
90 1 : void SAL_CALL OFixedTextModel::write(const Reference<XObjectOutputStream>& _rxOutStream)
91 : throw(IOException, RuntimeException, std::exception)
92 : {
93 1 : OControlModel::write(_rxOutStream);
94 :
95 : // Version
96 1 : _rxOutStream->writeShort(0x0002);
97 1 : writeHelpTextCompatibly(_rxOutStream);
98 1 : }
99 :
100 :
101 1 : void SAL_CALL OFixedTextModel::read(const Reference<XObjectInputStream>& _rxInStream) throw(IOException, RuntimeException, std::exception)
102 : {
103 1 : OControlModel::read(_rxInStream);
104 :
105 : // Version
106 1 : sal_Int16 nVersion = _rxInStream->readShort();
107 1 : if (nVersion > 1)
108 1 : readHelpTextCompatibly(_rxInStream);
109 1 : }
110 :
111 : }
112 :
113 : extern "C" SAL_DLLPUBLIC_EXPORT ::com::sun::star::uno::XInterface* SAL_CALL
114 62 : com_sun_star_form_OFixedTextModel_get_implementation(::com::sun::star::uno::XComponentContext* component,
115 : ::com::sun::star::uno::Sequence<css::uno::Any> const &)
116 : {
117 62 : return cppu::acquire(new frm::OFixedTextModel(component));
118 : }
119 :
120 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|