/* -*- 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_SW_INC_SWSERV_HXX #define INCLUDED_SW_INC_SWSERV_HXX #include class SwSectionNode; class SwBaseLink; class SwTableNode; struct SwPosition; class SwPaM; namespace sw { namespace mark { class IMark; } } class SwServerObject final : public ::sfx2::SvLinkSource { using sfx2::SvLinkSource::SendDataChanged; enum ServerModes { BOOKMARK_SERVER, TABLE_SERVER, SECTION_SERVER, NONE_SERVER } eType; union { ::sw::mark::IMark* pBkmk; SwTableNode* pTableNd; SwSectionNode* pSectNd; } CNTNT_TYPE; public: SwServerObject( ::sw::mark::IMark& rBookmark ) : eType( BOOKMARK_SERVER ) { CNTNT_TYPE.pBkmk = &rBookmark; } SwServerObject( SwTableNode& rTableNd ) : eType( TABLE_SERVER ) { CNTNT_TYPE.pTableNd = &rTableNd; } SwServerObject( SwSectionNode& rSectNd ) : eType( SECTION_SERVER ) { CNTNT_TYPE.pSectNd = &rSectNd; } virtual ~SwServerObject() override; virtual bool GetData( css::uno::Any & rData, const OUString & rMimeType, bool bSynchron = false ) override; void SendDataChanged( const SwPosition& rPos ); void SendDataChanged( const SwPaM& rRange ); bool IsLinkInServer( const SwBaseLink* ) const; void SetNoServer(); void SetDdeBookmark( ::sw::mark::IMark& rBookmark); }; #endif // INCLUDED_SW_INC_SWSERV_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ ro/collabora/co-2021 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/g
AgeCommit message (Expand)Author
2023-04-01git-hooks: remove hint in './g -z'Juergen Funk
2023-03-22Fix typoAndrea Gelmini
2023-03-22git-hooks: better handling in './g -z' with win-linksJuergen Funk
2023-03-01git-hooks: overwrite the windows-links not with linux-linksJuergen Funk
2022-11-28Avoid refreshing all hooks in secondary worktreesMike Kaganski
2022-05-31g: we are not, in fact, in the BUILDDIRMichael Stahl
2022-01-15Allow g to run git gc commandArnaud VERSINI
2021-07-12Add "--progress" agument to the ./g commandKevin Suo
2021-03-04Workaround a problem in Git for Windows' bashMike Kaganski
2018-07-02./g: don't exit early on ./g checkout -fThorsten Behrens
2018-07-02./g: indent & de-tabbify to make code readableThorsten Behrens
2018-03-12Revert "g: ignore submodule changes"Stephan Bergmann
2017-04-27tdf#105204: more ShellCheck nitpicks for gIlmari Lauhakangas
2017-04-26tdf#105204: ShellCheck nitpicks for gIlmari Lauhakangas
2016-05-17it is "git submodule", not "git submodules"Christian Lohmaier
2016-01-08g: fix var in checkoutJuergen Funk
2015-06-18'g' doesn't work correctly when config_host.mk contains non-ascii characters.Tomofumi Yagi
2015-02-17g: SRC_ROOT may not contain path string in a localized environmentTomofumi Yagi
2015-01-14Some quoting fixesStephan Bergmann