fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / oox / source / drawingml / themefragmenthandler.cxx
blobedb044bbd823b31822bfa7f798c7a8c175a4b712
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include "oox/drawingml/themefragmenthandler.hxx"
21 #include "drawingml/objectdefaultcontext.hxx"
22 #include "oox/drawingml/theme.hxx"
23 #include "drawingml/themeelementscontext.hxx"
25 using namespace ::oox::core;
27 namespace oox {
28 namespace drawingml {
30 ThemeFragmentHandler::ThemeFragmentHandler( XmlFilterBase& rFilter, const OUString& rFragmentPath, Theme& rTheme ) :
31 FragmentHandler2( rFilter, rFragmentPath ),
32 mrTheme( rTheme )
36 ThemeFragmentHandler::~ThemeFragmentHandler()
40 ContextHandlerRef ThemeFragmentHandler::onCreateContext( sal_Int32 nElement, const AttributeList& )
42 // CT_OfficeStyleSheet
43 switch( getCurrentElement() )
45 case XML_ROOT_CONTEXT:
46 switch( nElement )
48 case A_TOKEN( theme ):
49 return this;
51 break;
53 case A_TOKEN( theme ):
54 switch( nElement )
56 case A_TOKEN( themeElements ): // CT_BaseStyles
57 return new ThemeElementsContext( *this, mrTheme );
58 case A_TOKEN( objectDefaults ): // CT_ObjectStyleDefaults
59 return new objectDefaultContext( *this, mrTheme );
60 case A_TOKEN( extraClrSchemeLst ): // CT_ColorSchemeList
61 return 0;
62 case A_TOKEN( custClrLst ): // CustomColorList
63 return 0;
64 case A_TOKEN( ext ): // CT_OfficeArtExtension
65 return 0;
67 break;
69 return 0;
72 } // namespace drawingml
73 } // namespace oox
75 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */