82 lines
2.5 KiB
C++
82 lines
2.5 KiB
C++
/* -*- 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/.
|
|
*
|
|
*/
|
|
|
|
#undef SC_DLLIMPLEMENTATION
|
|
|
|
#include <gototabdlg.hxx>
|
|
|
|
ScGoToTabDlg::ScGoToTabDlg(weld::Window* pParent)
|
|
: GenericDialogController(pParent, u"modules/scalc/ui/gotosheetdialog.ui"_ustr,
|
|
u"GoToSheetDialog"_ustr)
|
|
, m_xFrameMask(m_xBuilder->weld_frame(u"frame-mask"_ustr))
|
|
, m_xEnNameMask(m_xBuilder->weld_entry(u"entry-mask"_ustr))
|
|
, m_xFrameSheets(m_xBuilder->weld_frame(u"frame-sheets"_ustr))
|
|
, m_xLb(m_xBuilder->weld_tree_view(u"treeview"_ustr))
|
|
{
|
|
m_xLb->set_selection_mode(SelectionMode::Single);
|
|
m_xLb->set_size_request(-1, m_xLb->get_height_rows(10));
|
|
m_xLb->connect_row_activated(LINK(this, ScGoToTabDlg, DblClkHdl));
|
|
m_xEnNameMask->connect_changed(LINK(this, ScGoToTabDlg, FindNameHdl));
|
|
}
|
|
|
|
ScGoToTabDlg::~ScGoToTabDlg() {}
|
|
|
|
void ScGoToTabDlg::SetDescription(const OUString& rTitle, const OUString& rEntryLabel,
|
|
const OUString& rListLabel, const OUString& rDlgHelpId,
|
|
const OUString& rEnHelpId, const OUString& rLbHelpId)
|
|
{
|
|
m_xDialog->set_title(rTitle);
|
|
m_xFrameMask->set_label(rEntryLabel);
|
|
m_xFrameSheets->set_label(rListLabel);
|
|
m_xDialog->set_help_id(rDlgHelpId);
|
|
m_xEnNameMask->set_help_id(rEnHelpId);
|
|
m_xLb->set_help_id(rLbHelpId);
|
|
}
|
|
|
|
void ScGoToTabDlg::Insert(const OUString& rString, bool bSelected)
|
|
{
|
|
maCacheSheetsNames.push_back(rString);
|
|
m_xLb->append_text(rString);
|
|
if (bSelected)
|
|
m_xLb->select(m_xLb->n_children() - 1);
|
|
}
|
|
|
|
OUString ScGoToTabDlg::GetSelectedEntry() const { return m_xLb->get_selected_text(); }
|
|
|
|
IMPL_LINK_NOARG(ScGoToTabDlg, DblClkHdl, weld::TreeView&, bool)
|
|
{
|
|
m_xDialog->response(RET_OK);
|
|
return true;
|
|
}
|
|
|
|
IMPL_LINK_NOARG(ScGoToTabDlg, FindNameHdl, weld::Entry&, void)
|
|
{
|
|
const OUString aMask = m_xEnNameMask->get_text();
|
|
m_xLb->clear();
|
|
if (aMask.isEmpty())
|
|
{
|
|
for (const OUString& s : maCacheSheetsNames)
|
|
{
|
|
m_xLb->append_text(s);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
for (const OUString& s : maCacheSheetsNames)
|
|
{
|
|
if (s.indexOf(aMask) >= 0)
|
|
{
|
|
m_xLb->append_text(s);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|