LibreOffice Module sw (master) 1
extinput.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#ifndef INCLUDED_SW_INC_EXTINPUT_HXX
20#define INCLUDED_SW_INC_EXTINPUT_HXX
21
22#include "pam.hxx"
23#include <i18nlangtag/lang.h>
24#include <vcl/commandevent.hxx>
25#include <vector>
26
27class SwExtTextInput final : public SwPaM
28{
29 std::vector<ExtTextInputAttr> m_aAttrs;
31 bool m_bInsText : 1;
34public:
35 SwExtTextInput( const SwPaM& rPam, Ring* pRing );
36 virtual ~SwExtTextInput() override;
37
38 void SetInputData( const CommandExtTextInputData& rData );
39 const std::vector<ExtTextInputAttr>& GetAttrs() const { return m_aAttrs; }
40 void SetInsText( bool bFlag ) { m_bInsText = bFlag; }
41 bool IsOverwriteCursor() const { return m_bIsOverwriteCursor; }
42 void SetOverwriteCursor( bool bFlag );
44
45 SwExtTextInput* GetNext() { return static_cast<SwExtTextInput *>(GetNextInRing()); }
46 const SwExtTextInput* GetNext() const { return static_cast<SwExtTextInput const *>(GetNextInRing()); }
47 SwExtTextInput* GetPrev() { return static_cast<SwExtTextInput *>(GetPrevInRing()); }
48 const SwExtTextInput* GetPrev() const { return static_cast<SwExtTextInput const *>(GetPrevInRing()); }
49};
50
51#endif // INCLUDED_SW_INC_EXTINPUT_HXX
52
53/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
void SetLanguage(LanguageType eSet)
Definition: extinput.hxx:43
bool IsOverwriteCursor() const
Definition: extinput.hxx:41
bool m_bIsOverwriteCursor
Definition: extinput.hxx:32
LanguageType m_eInputLanguage
Definition: extinput.hxx:33
SwExtTextInput * GetPrev()
Definition: extinput.hxx:47
void SetInputData(const CommandExtTextInputData &rData)
Definition: extinput.cxx:151
void SetOverwriteCursor(bool bFlag)
Definition: extinput.cxx:221
SwExtTextInput(const SwPaM &rPam, Ring *pRing)
Definition: extinput.cxx:39
OUString m_sOverwriteText
Definition: extinput.hxx:30
void SetInsText(bool bFlag)
Definition: extinput.hxx:40
virtual ~SwExtTextInput() override
Definition: extinput.cxx:47
SwExtTextInput * GetNext()
Definition: extinput.hxx:45
std::vector< ExtTextInputAttr > m_aAttrs
Definition: extinput.hxx:29
const SwExtTextInput * GetPrev() const
Definition: extinput.hxx:48
const std::vector< ExtTextInputAttr > & GetAttrs() const
Definition: extinput.hxx:39
const SwExtTextInput * GetNext() const
Definition: extinput.hxx:46
PaM is Point and Mark: a selection of the document model.
Definition: pam.hxx:188
Ring()
Creates a new item in a ring container all by itself.
Definition: ring.hxx:73
SwPaM * GetPrevInRing()
Definition: ring.hxx:87
SwPaM * GetNextInRing()
Definition: ring.hxx:84