summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-07-30 16:05:55 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-07-30 21:14:11 +0200
commit588f50ac41666e73a7c73c13e677a9927bad991f (patch)
tree979a5f9602335232133fd2513034705c9ba3c596 /include
parent37c01754ae0a9daaa2f37bd9c1cc9f3b3a84ce21 (diff)
remove newly unused SvxCheckListBox
Change-Id: I6a5f4dfea9fbb34f02c1752140e04d1d0a8a67a7 Reviewed-on: https://gerrit.libreoffice.org/76617 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/svx/checklbx.hxx68
1 files changed, 0 insertions, 68 deletions
diff --git a/include/svx/checklbx.hxx b/include/svx/checklbx.hxx
deleted file mode 100644
index 44eeb3631143..000000000000
--- a/include/svx/checklbx.hxx
+++ /dev/null
@@ -1,68 +0,0 @@
-/* -*- 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_SVX_CHECKLBX_HXX
-#define INCLUDED_SVX_CHECKLBX_HXX
-
-#include <rtl/ustring.hxx>
-#include <vcl/treelistbox.hxx>
-#include <svx/svxdllapi.h>
-#include <tools/solar.h>
-#include <tools/wintypes.hxx>
-#include <vcl/window.hxx>
-#include <memory>
-
-class SvLBoxButtonData;
-class SvTreeListEntry;
-
-class SVX_DLLPUBLIC SvxCheckListBox : public SvTreeListBox
-{
- using Window::GetText;
-
-private:
- std::unique_ptr<SvLBoxButtonData> pCheckButton;
-
- SVX_DLLPRIVATE void Init_Impl();
-
- using SvTreeListBox::InsertEntry;
- // Avoid ambiguity with new InsertEntry:
- virtual SvTreeListEntry* InsertEntry( const OUString& rText, SvTreeListEntry* pParent,
- bool bChildrenOnDemand,
- sal_uLong nPos, void* pUserData,
- SvLBoxButtonKind eButtonKind ) override;
-
-public:
- SvxCheckListBox( vcl::Window* pParent, WinBits nWinStyle = 0 );
- virtual ~SvxCheckListBox() override;
- virtual void dispose() override;
-
- void SelectEntryPos ( sal_uLong nPos );
- sal_uLong GetSelectedEntryPos () const;
-
- void CheckEntryPos ( sal_uLong nPos, bool bCheck = true );
- bool IsChecked ( sal_uLong nPos ) const;
- void ToggleCheckButton ( SvTreeListEntry* pEntry );
-
- virtual void MouseButtonDown ( const MouseEvent& rMEvt ) override;
- virtual void KeyInput ( const KeyEvent& rKEvt ) override;
-};
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */