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 <com/sun/star/awt/Gradient.hpp>
21 : #include <svl/itempool.hxx>
22 : #include <svl/itemset.hxx>
23 : #include "UnoNameItemTable.hxx"
24 :
25 : #include <svx/xgrad.hxx>
26 : #include <svx/svdmodel.hxx>
27 : #include <svx/xdef.hxx>
28 : #include <svx/xflgrit.hxx>
29 : #include "svx/unofill.hxx"
30 : #include <svx/unomid.hxx>
31 :
32 : using namespace ::com::sun::star;
33 : using namespace ::cppu;
34 :
35 : class SvxUnoGradientTable : public SvxUnoNameItemTable
36 : {
37 : public:
38 : explicit SvxUnoGradientTable( SdrModel* pModel ) throw();
39 : virtual ~SvxUnoGradientTable() throw();
40 :
41 : virtual NameOrIndex* createItem() const throw() SAL_OVERRIDE;
42 :
43 : // XServiceInfo
44 : virtual OUString SAL_CALL getImplementationName( ) throw( uno::RuntimeException, std::exception ) SAL_OVERRIDE;
45 : virtual uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw( uno::RuntimeException, std::exception) SAL_OVERRIDE;
46 :
47 : // XElementAccess
48 : virtual uno::Type SAL_CALL getElementType( ) throw( uno::RuntimeException, std::exception) SAL_OVERRIDE;
49 : };
50 :
51 475 : SvxUnoGradientTable::SvxUnoGradientTable( SdrModel* pModel ) throw()
52 475 : : SvxUnoNameItemTable( pModel, XATTR_FILLGRADIENT, MID_FILLGRADIENT )
53 : {
54 475 : }
55 :
56 880 : SvxUnoGradientTable::~SvxUnoGradientTable() throw()
57 : {
58 880 : }
59 :
60 0 : OUString SAL_CALL SvxUnoGradientTable::getImplementationName() throw( uno::RuntimeException, std::exception )
61 : {
62 0 : return OUString("SvxUnoGradientTable");
63 : }
64 :
65 0 : uno::Sequence< OUString > SAL_CALL SvxUnoGradientTable::getSupportedServiceNames( )
66 : throw( uno::RuntimeException, std::exception )
67 : {
68 0 : uno::Sequence< OUString > aSNS( 1 );
69 0 : aSNS.getArray()[0] = "com.sun.star.drawing.GradientTable";
70 0 : return aSNS;
71 : }
72 :
73 :
74 : // XNameContainer
75 87 : NameOrIndex* SvxUnoGradientTable::createItem() const throw()
76 : {
77 87 : return new XFillGradientItem();
78 : }
79 :
80 : // XElementAccess
81 0 : uno::Type SAL_CALL SvxUnoGradientTable::getElementType( )
82 : throw( uno::RuntimeException, std::exception )
83 : {
84 0 : return cppu::UnoType<awt::Gradient>::get();
85 : }
86 :
87 : /**
88 : * Create a gradienttable
89 : */
90 475 : uno::Reference< uno::XInterface > SAL_CALL SvxUnoGradientTable_createInstance( SdrModel* pModel )
91 : {
92 475 : return *new SvxUnoGradientTable(pModel);
93 435 : }
94 :
95 :
96 :
97 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|