LibreOffice Module sc (master) 1
FilterListBox.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
20#pragma once
21
22#include <types.hxx>
23
24#include <tools/solar.h>
25#include <vcl/weld.hxx>
26
27class ScGridWindow;
28struct ImplSVEvent;
29
31{
34};
35
36class ScFilterListBox final : public std::enable_shared_from_this<ScFilterListBox>
37{
38private:
39 std::unique_ptr<weld::Builder> xBuilder;
40 std::unique_ptr<weld::Popover> xPopover;
41 std::unique_ptr<weld::TreeView> xTreeView;
45 bool bInit;
51
52 DECL_LINK(SelectHdl, weld::TreeView&, bool);
53 DECL_LINK(KeyInputHdl, const KeyEvent&, bool);
54 DECL_LINK(AsyncSelectHdl, void*, void);
55
56public:
57 ScFilterListBox(weld::Window* pParent, ScGridWindow* pGrid, SCCOL nNewCol, SCROW nNewRow,
58 ScFilterBoxMode eNewMode);
59 void popup_at_rect(weld::Widget* pParent, const tools::Rectangle& rRect)
60 {
61 xPopover->popup_at_rect(pParent, rRect);
62 }
64 {
65 xPopover->connect_closed(rLink);
66 }
67 void popdown() { xPopover->popdown(); }
69
71
72 SCCOL GetCol() const { return nCol; }
73 SCROW GetRow() const { return nRow; }
74 ScFilterBoxMode GetMode() const { return eMode; }
75 void EndInit();
76 bool IsInInit() const { return bInit; }
77 bool MouseWasCaptured() const { return bGridHadMouseCaptured; }
78 void SetCancelled() { bCancelled = true; }
79};
80
81/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
ScFilterBoxMode
bool MouseWasCaptured() const
DECL_LINK(AsyncSelectHdl, void *, void)
ScFilterBoxMode eMode
std::unique_ptr< weld::Builder > xBuilder
SCROW GetRow() const
SCCOL GetCol() const
void connect_closed(const Link< weld::Popover &, void > &rLink)
std::unique_ptr< weld::Popover > xPopover
std::unique_ptr< weld::TreeView > xTreeView
void EndInit()
Definition: gridwin.cxx:222
bool IsInInit() const
weld::TreeView & get_widget()
void popup_at_rect(weld::Widget *pParent, const tools::Rectangle &rRect)
DECL_LINK(SelectHdl, weld::TreeView &, bool)
ImplSVEvent * nAsyncSelectHdl
VclPtr< ScGridWindow > pGridWin
DECL_LINK(KeyInputHdl, const KeyEvent &, bool)
ScFilterBoxMode GetMode() const
ScFilterListBox(weld::Window *pParent, ScGridWindow *pGrid, SCCOL nNewCol, SCROW nNewRow, ScFilterBoxMode eNewMode)
Definition: gridwin.cxx:194
sal_uIntPtr sal_uLong
sal_Int16 SCCOL
Definition: types.hxx:21
sal_Int32 SCROW
Definition: types.hxx:17