1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include <showcols.hxx>
22 #include <osl/diagnose.h>
23 #include <com/sun/star/beans/XPropertySet.hpp>
24 #include <comphelper/types.hxx>
25 #include <tools/debug.hxx>
27 #define CUIFM_PROP_HIDDEN "Hidden"
28 #define CUIFM_PROP_LABEL "Label"
30 FmShowColsDialog::FmShowColsDialog(weld::Window
* pParent
)
31 : GenericDialogController(pParent
, "cui/ui/showcoldialog.ui", "ShowColDialog")
32 , m_xList(m_xBuilder
->weld_tree_view("treeview"))
33 , m_xOK(m_xBuilder
->weld_button("ok"))
35 m_xList
->set_size_request(m_xList
->get_approximate_digit_width() * 40, m_xList
->get_height_rows(8));
36 m_xList
->set_selection_mode(SelectionMode::Multiple
);
37 m_xOK
->connect_clicked(LINK(this, FmShowColsDialog
, OnClickedOk
));
40 FmShowColsDialog::~FmShowColsDialog()
44 IMPL_LINK_NOARG(FmShowColsDialog
, OnClickedOk
, weld::Button
&, void)
46 DBG_ASSERT(m_xColumns
.is(), "FmShowColsDialog::OnClickedOk : you should call SetColumns before executing the dialog !");
49 css::uno::Reference
< css::beans::XPropertySet
> xCol
;
50 auto nSelectedRows
= m_xList
->get_selected_rows();
51 for (auto i
: nSelectedRows
)
53 m_xColumns
->getByIndex(m_xList
->get_id(i
).toInt32()) >>= xCol
;
58 xCol
->setPropertyValue(CUIFM_PROP_HIDDEN
, css::uno::Any(false));
62 OSL_FAIL("FmShowColsDialog::OnClickedOk Exception occurred!");
68 m_xDialog
->response(RET_OK
);
71 void FmShowColsDialog::SetColumns(const css::uno::Reference
< css::container::XIndexContainer
>& xCols
)
73 DBG_ASSERT(xCols
.is(), "FmShowColsDialog::SetColumns : invalid columns !");
76 m_xColumns
= xCols
.get();
80 css::uno::Reference
< css::beans::XPropertySet
> xCurCol
;
82 for (sal_Int32 i
=0; i
<xCols
->getCount(); ++i
)
85 xCurCol
.set(xCols
->getByIndex(i
), css::uno::UNO_QUERY
);
86 bool bIsHidden
= false;
89 css::uno::Any aHidden
= xCurCol
->getPropertyValue(CUIFM_PROP_HIDDEN
);
90 bIsHidden
= ::comphelper::getBOOL(aHidden
);
93 xCurCol
->getPropertyValue(CUIFM_PROP_LABEL
) >>= sName
;
98 OSL_FAIL("FmShowColsDialog::SetColumns Exception occurred!");
101 // if the col is hidden, put it into the list
103 m_xList
->append(OUString::number(i
), sCurName
);
107 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */