diff options
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/inc/svmedit2.hxx | 43 | ||||
-rw-r--r-- | svtools/source/contnr/DocumentInfoPreview.cxx | 2 | ||||
-rw-r--r-- | svtools/source/edit/svmedit2.cxx | 2 |
3 files changed, 45 insertions, 2 deletions
diff --git a/svtools/inc/svmedit2.hxx b/svtools/inc/svmedit2.hxx new file mode 100644 index 000000000000..896d13009284 --- /dev/null +++ b/svtools/inc/svmedit2.hxx @@ -0,0 +1,43 @@ +/* -*- 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_SVTOOLS_SVMEDIT2_HXX +#define INCLUDED_SVTOOLS_SVMEDIT2_HXX + +#include <svtools/svmedit.hxx> + +class TextAttrib; + +class ExtMultiLineEdit final : public MultiLineEdit +{ +public: + ExtMultiLineEdit( vcl::Window* pParent, WinBits nWinStyle ); + + // methods of TextView + void InsertText( const OUString& rNew ); + void SetAutoScroll( bool bAutoScroll ); + + // methods of TextEngine + void SetAttrib( const TextAttrib& rAttr, sal_uInt32 nPara, sal_Int32 nStart, sal_Int32 nEnd ); + void SetLeftMargin( sal_uInt16 nLeftMargin ); + sal_uInt32 GetParagraphCount() const; +}; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/svtools/source/contnr/DocumentInfoPreview.cxx b/svtools/source/contnr/DocumentInfoPreview.cxx index dd40b569477a..93b8b27e5790 100644 --- a/svtools/source/contnr/DocumentInfoPreview.cxx +++ b/svtools/source/contnr/DocumentInfoPreview.cxx @@ -28,7 +28,7 @@ #include <comphelper/string.hxx> #include <rtl/ustring.hxx> #include <svtools/DocumentInfoPreview.hxx> -#include <svtools/svmedit2.hxx> +#include <svmedit2.hxx> #include <vcl/txtattr.hxx> #include <vcl/settings.hxx> #include <vcl/svapp.hxx> diff --git a/svtools/source/edit/svmedit2.cxx b/svtools/source/edit/svmedit2.cxx index 4687d2535867..fde13f6c7f51 100644 --- a/svtools/source/edit/svmedit2.cxx +++ b/svtools/source/edit/svmedit2.cxx @@ -18,7 +18,7 @@ */ -#include <svtools/svmedit2.hxx> +#include <svmedit2.hxx> #include <vcl/xtextedt.hxx> #include <vcl/textview.hxx> |