summaryrefslogtreecommitdiff
path: root/svtools/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-01-14 15:32:01 +0000
committerCaolán McNamara <caolanm@redhat.com>2020-01-14 21:25:19 +0100
commit2c80cf671ead686300ea0ece491435c0c67dfc77 (patch)
tree7dbb0a54cef79181e6177ce0b85362228bc3570f /svtools/inc
parenta504edb024bb2cbe07e98a0df42efdb2f1a2135b (diff)
svmedit2.hxx doesn't need to be a public header
Change-Id: I8f193478eb74b544a075b477fbeed5dc5b55402e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86781 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svtools/inc')
-rw-r--r--svtools/inc/svmedit2.hxx43
1 files changed, 43 insertions, 0 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: */