/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #ifndef INCLUDED_COMPHELPER_BROADCASTHELPER_HXX #define INCLUDED_COMPHELPER_BROADCASTHELPER_HXX #include #include namespace comphelper { // OMutexAndBroadcastHelper - a class which holds a Mutex and an OBroadcastHelper; // needed because when deriving from OPropertySetHelper, // the OBroadcastHelper has to be initialized before // the OPropertySetHelper class OMutexAndBroadcastHelper { protected: ::osl::Mutex m_aMutex; ::cppu::OBroadcastHelper m_aBHelper; public: OMutexAndBroadcastHelper() : m_aBHelper( m_aMutex ) { } ::osl::Mutex& GetMutex() { return m_aMutex; } ::cppu::OBroadcastHelper& GetBroadcastHelper() { return m_aBHelper; } const ::cppu::OBroadcastHelper& GetBroadcastHelper() const { return m_aBHelper; } }; } #endif // INCLUDED_COMPHELPER_BROADCASTHELPER_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ ro/cib/libreoffice-6-4 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2024-07-27cui, dbaccess, desktop, external, filter, librelogo: fix issues found byIlmari Lauhakangas
2024-07-13Python: use is None/is not None instead of == None/!= NoneJulien Nabet
2024-05-21tdf#158803 F821: remove unused variables and unused imports in librelogo/Leonard Sasse
2024-03-28Revert "tdf#158803 remove some unused imports, unnecessary semicolons and rel...Noel Grandin
2024-03-28tdf#158803 remove some unused imports, unnecessary semicolons and related sty...LeSasse
2023-09-24tdf#157388: LibreLogo sqrt undefinedJulien Nabet
2023-03-19tdf#147906: Use python's math.hypot() for Pythagorean additionadityasingh22
2022-12-05LibreLogo: fix SVG export of font features and text portionsLászló Németh
2022-12-05LibreLogo: fix parsing argument of default Logo commandsLászló Németh
2022-12-05tdf#105575 LibreLogo: hide turtle during lockingLászló Németh
2022-12-05tdf#105575 LibreLogo: speed up by lock (re)paintLászló Németh
2022-12-05LibreLogo: LABEL/TEXT: add more character formattingLászló Németh
2022-11-21tdf#113592 LibreLogo: update fallback localizationLászló Németh
2022-09-30LibreLogo: fix ast, gug, hsb and sid language supportLászló Németh
2022-04-22LibreLogo: add basic HTML formatting support to LABELLászló Németh
2020-11-02Fix typosAndrea Gelmini
2020-08-25tdf#92287 Make LibreLogo icons theme basedMaxim Monastirsky
2020-07-17Follow up tdf#132022: Remove Tango icons for LibreLogoRizal Muttaqin
2020-06-26LibreLogo: add command FONTTRANSPARENCYLászló Németh
2020-05-14fix python 3.8 deprecation warningsNoel Grandin
2020-04-09pyuno,*: kill Python 2 support with fireMichael Stahl
2019-06-07sanitize LibreLogo callsLászló Németh
2019-04-25LibreLogo: fix RANGE with a single function argumentLászló Németh
2019-03-13tdf#124035 LibreLogo: support starting colon in variable namesLászló Németh
2018-11-08Adapt LibreLogo.py to Python 3.7 re.sub changeStephan Bergmann
2018-11-06Removed not-used variableAndrea Gelmini
2018-11-06LibreLogo: function calls and definitions can be in any orderLászló Németh
2018-11-05Fix typoAndrea Gelmini
2018-11-05tdf#120413 LibreLogo: handle complex Logo expressionsLászló Németh
2018-11-05LibreLogo: stop program immediately at pressing CancelLászló Németh
2018-10-26LibreLogo: support backslash escape sequence for apostrophesLászló Németh
2018-10-26LibreLogo: add unit tests for program compilationLászló Németh
2018-10-25LibreLogo: add unit testsLászló Németh
2018-10-10tdf#120422 LibreLogo: fix page and line formatting of "magic wand"László Németh
2018-09-30LibreLogo: fix regression of line drawingLászló Németh
2017-11-05tdf#113592 LibreLogo: add fallback localization to fix platform issuesLászló Németh