tdf#130857 qt weld: Implement QtInstanceWidget::get_text_height
[LibreOffice.git] / framework / source / fwe / xml / statusbarconfiguration.cxx
blob98130700ef267ab0e590e5d780e6ccfcf80e48f3
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 <statusbarconfiguration.hxx>
21 #include <xml/statusbardocumenthandler.hxx>
22 #include <xml/saxnamespacefilter.hxx>
24 #include <com/sun/star/xml/sax/Parser.hpp>
25 #include <com/sun/star/xml/sax/Writer.hpp>
26 #include <com/sun/star/xml/sax/SAXException.hpp>
27 #include <com/sun/star/io/IOException.hpp>
28 #include <com/sun/star/io/XInputStream.hpp>
30 using namespace ::com::sun::star::uno;
31 using namespace ::com::sun::star::xml::sax;
32 using namespace ::com::sun::star::io;
33 using namespace ::com::sun::star::container;
35 namespace framework
38 bool StatusBarConfiguration::LoadStatusBar(
39 const Reference< XComponentContext >& rxContext,
40 const Reference< XInputStream >& xInputStream,
41 const Reference< XIndexContainer >& rStatusbarConfiguration )
43 Reference< XParser > xParser = Parser::create(rxContext);
45 // connect stream to input stream to the parser
46 InputSource aInputSource;
47 aInputSource.aInputStream = xInputStream;
49 // create namespace filter and set menudocument handler inside to support xml namespaces
50 Reference< XDocumentHandler > xDocHandler( new OReadStatusBarDocumentHandler( rStatusbarConfiguration ));
51 Reference< XDocumentHandler > xFilter( new SaxNamespaceFilter( xDocHandler ));
53 // connect parser and filter
54 xParser->setDocumentHandler( xFilter );
56 try
58 xParser->parseStream( aInputSource );
59 return true;
61 catch ( const RuntimeException& )
63 return false;
65 catch( const SAXException& )
67 return false;
69 catch( const css::io::IOException& )
71 return false;
75 bool StatusBarConfiguration::StoreStatusBar(
76 const Reference< XComponentContext >& rxContext,
77 const Reference< XOutputStream >& xOutputStream,
78 const Reference< XIndexAccess >& rStatusbarConfiguration )
80 Reference< XWriter > xWriter = Writer::create( rxContext );
81 xWriter->setOutputStream( xOutputStream );
83 try
85 OWriteStatusBarDocumentHandler aWriteStatusBarDocumentHandler( rStatusbarConfiguration, xWriter );
86 aWriteStatusBarDocumentHandler.WriteStatusBarDocument();
87 return true;
89 catch ( const RuntimeException& )
91 return false;
93 catch ( const SAXException& )
95 return false;
97 catch ( const css::io::IOException& )
99 return false;
104 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */