Move setting of LD_LIBRARY_PATH closer to invocation of cppunittester
[LibreOffice.git] / vcl / unx / gtk3 / a11y / atktextattributes.hxx
blob716ec45bd35e43dcec6139251e57fc3c9a442b86
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 #pragma once
22 #include <com/sun/star/uno/Sequence.hxx>
23 #include <com/sun/star/beans/PropertyValue.hpp>
24 #include <com/sun/star/accessibility/XAccessibleExtendedAttributes.hpp>
26 #include <atk/atk.h>
28 AtkAttributeSet* attribute_set_new_from_property_values(
29 const css::uno::Sequence<css::beans::PropertyValue>& rAttributeList, bool run_attributes_only,
30 AtkText* text);
32 AtkAttributeSet* attribute_set_new_from_extended_attributes(
33 const css::uno::Reference<css::accessibility::XAccessibleExtendedAttributes>&
34 rExtendedAttributes);
36 bool attribute_set_map_to_property_values(
37 AtkAttributeSet* attribute_set, css::uno::Sequence<css::beans::PropertyValue>& rValueList);
39 AtkAttributeSet* attribute_set_prepend_misspelled(AtkAttributeSet* attribute_set);
40 // #i92232#
41 AtkAttributeSet* attribute_set_prepend_tracked_change_insertion(AtkAttributeSet* attribute_set);
42 AtkAttributeSet* attribute_set_prepend_tracked_change_deletion(AtkAttributeSet* attribute_set);
43 AtkAttributeSet* attribute_set_prepend_tracked_change_formatchange(AtkAttributeSet* attribute_set);
45 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */