LibreOffice Module vcl (master) 1
mcnttype.hxx
Go to the documentation of this file.
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#pragma once
21
23#include <rtl/ustring.hxx>
24#include <sal/types.h>
25#include <com/sun/star/lang/IllegalArgumentException.hpp>
26#include <com/sun/star/datatransfer/XMimeContentType.hpp>
27
28#include <map>
29
30class CMimeContentType : public
31 cppu::WeakImplHelper< css::datatransfer::XMimeContentType >
32{
33public:
34 explicit CMimeContentType(const OUString& rCntType);
35
36 // XMimeContentType
37
38 virtual OUString SAL_CALL getMediaType( ) override;
39 virtual OUString SAL_CALL getMediaSubtype( ) override;
40 virtual OUString SAL_CALL getFullMediaType( ) override;
41
42 virtual css::uno::Sequence< OUString > SAL_CALL getParameters( ) override;
43
44 virtual sal_Bool SAL_CALL hasParameter( const OUString& aName ) override;
45
46 virtual OUString SAL_CALL getParameterValue( const OUString& aName ) override;
47
48private:
50 void init( const OUString& aCntType );
51
52private:
53 OUString m_MediaType;
55 std::map< OUString, OUString > m_ParameterMap;
56};
57
58/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
std::map< OUString, OUString > m_ParameterMap
Definition: mcnttype.hxx:55
virtual sal_Bool SAL_CALL hasParameter(const OUString &aName) override
Definition: mcnttype.cxx:54
virtual OUString SAL_CALL getFullMediaType() override
Definition: mcnttype.cxx:44
void init(const OUString &aCntType)
Definition: mcnttype.cxx:69
virtual OUString SAL_CALL getMediaSubtype() override
Definition: mcnttype.cxx:39
OUString m_MediaType
Definition: mcnttype.hxx:53
OUString m_MediaSubtype
Definition: mcnttype.hxx:54
virtual OUString SAL_CALL getParameterValue(const OUString &aName) override
Definition: mcnttype.cxx:59
virtual css::uno::Sequence< OUString > SAL_CALL getParameters() override
Definition: mcnttype.cxx:49
virtual OUString SAL_CALL getMediaType() override
Definition: mcnttype.cxx:34
CMimeContentType(const OUString &rCntType)
Definition: mcnttype.cxx:29
OUString aName
unsigned char sal_Bool