/* -*- 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_TXTFLCNT_HXX #define INCLUDED_SW_INC_TXTFLCNT_HXX #include class SwFlyInCntFrm; class SwFrm; class SwTxtNode; class SwDoc; // Attribute for line-bound frames (without end index). class SwTxtFlyCnt : public SwTxtAttr { SwFlyInCntFrm *_GetFlyFrm( const SwFrm *pCurrFrm ); public: SwTxtFlyCnt( SwFmtFlyCnt& rAttr, sal_Int32 nStart ); // Sets anchor in pFmt and void SetAnchor( const SwTxtNode *pNode ); inline SwFlyInCntFrm *GetFlyFrm( const SwFrm *pCurrFrm ); inline const SwFlyInCntFrm *GetFlyFrm( const SwFrm *pCurrFrm ) const; // creates for itself a new FlyFrameFormat. void CopyFlyFmt( SwDoc* pDoc ); }; inline SwFlyInCntFrm *SwTxtFlyCnt::GetFlyFrm( const SwFrm *pCurrFrm ) { return _GetFlyFrm( pCurrFrm ); } inline const SwFlyInCntFrm *SwTxtFlyCnt::GetFlyFrm( const SwFrm *pCurrFrm ) const { return (const_cast(this))->_GetFlyFrm( pCurrFrm ); } #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ e-6-4 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2024-05-07loplugin:ostr in cuiNoel Grandin
2023-11-15tdf#157518: add password strength meter to setmasterpassworddlgSarper Akdemir
2023-11-06tdf#157518: add password policy and strength meter to save with password dialogSarper Akdemir
2023-06-28tdf#148416 password dialog: suggest current loadreadonly statusJustin Luth
2022-11-21lok: allow password reset in properties>change passwordSzymon Kłos
2022-11-21lok: make properties>change password dialog asyncMert Tumer
2021-12-03don't use SVXSTR for translation ids that are in cui.moCaolán McNamara
2021-05-21add Toggleable as a separate thing to a ButtonCaolán McNamara
2021-05-19use toggle instead of click for RadioButtonCaolán McNamara
2020-06-25loplugin:unusedfieldsNoel Grandin
2020-06-17tdf#43452 indicate when maximum password length has been reachedCaolán McNamara
2018-10-03Related: tdf#120277 inherit from SfxDialogControllerCaolán McNamara
2018-08-19tdf#119030: Disable entries if open file read-only is uncheckedXisco Fauli
2018-03-22weld PasswordToOpenModifyDialogCaolán McNamara
2018-02-22weld native message dialogsCaolán McNamara
2017-10-23loplugin:includeform: cuiStephan Bergmann
2017-07-21de-hrc various thingsCaolán McNamara
2017-07-21migrate to boost::gettextCaolán McNamara
2017-07-02nMinPasswdLen is "currently not supported" ever sinceStephan Bergmann
2017-05-19make string translation loading more uniformCaolán McNamara
2016-11-29loplugin:vclwidgets check for assigning from VclPt<T> to T*Noel Grandin
2016-10-05Remove _TYPED suffix from tools/link.hxx macrosStephan Bergmann
2016-07-15new loplugin unnecessary overrideNoel Grandin
2016-02-09Remove excess newlinesChris Sherlock
2015-08-27Clean up aEmptyStephan Bergmann
2015-08-26Convert vcl Button Link<> click handler to typed Link<Button*,void>Noel Grandin
2015-05-10No more need for EMPTYARG in C++11Stephan Bergmann
2015-04-10Automated conversion of VclPtr construction to use Instance template.Michael Meeks
2015-04-10first half of non-scriptable, Instance constructor conversion.Michael Meeks
2015-04-10vclwidget: fixup locally allocated vcl::Window objectsNoel Grandin
2015-04-10vclwidget: only call dispose() onceNoel Grandin
2015-04-10vclwidget: change all vcl::window fields to be wrapped in VclPtrNoel Grandin
2015-04-09vclwidgets: wrap all vcl::Window subclasses allocated on stack in VclPtrNoel Grandin
2015-04-09vcl: VclPtr conversion in cuiNoel Grandin
2014-09-23fdo#82577: Handle WindowNoel Grandin
2014-08-18ErrorBox->MessageDialogCaolán McNamara
2014-03-06convert another password dialog to .uiCaolán McNamara
2014-02-26Remove visual noise from cuiAlexander Wilms
2014-01-14nFlags parameter to Window::Hide appears effectively unusedStephan Bergmann
2013-10-02Use std::auto_ptr::reset where applicableStephan Bergmann
2013-10-01convert CUI module from String to OUStringNoel Grandin