/* -*- 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 . */ #pragma once #include #include #include #include "condedit.hxx" class SwWrtShell; class SfxRequest; class BookmarkTable { std::unique_ptr m_xControl; std::unique_ptr GetRowByBookmarkName(const OUString& sName); public: BookmarkTable(std::unique_ptr xControl); void InsertBookmark(sw::mark::IMark* pMark); void SelectByName(const OUString& sName); sw::mark::IMark* GetBookmarkByName(const OUString& sName); OUString GetNameProposal() const; void unselect_all() { m_xControl->unselect_all(); } bool has_focus() const { return m_xControl->has_focus(); } std::unique_ptr get_selected() const; void clear() { m_xControl->clear(); } void select(const weld::TreeIter& rIter) { m_xControl->select(rIter); } void remove_selection() { m_xControl->remove_selection(); } OUString get_id(const weld::TreeIter& rIter) const { return m_xControl->get_id(rIter); } void set_sort_indicator(TriState eState, int nColumn = -1) { m_xControl->set_sort_indicator(eState, nColumn); } void selected_foreach(const std::function& func) { m_xControl->selected_foreach(func); } void connect_changed(const Link& rLink) { m_xControl->connect_changed(rLink); } void connect_row_activated(const Link& rLink) { m_xControl->connect_row_activated(rLink); } void connect_column_clicked(const Link& rLink) { m_xControl->connect_column_clicked(rLink); } void make_sorted() { m_xControl->make_sorted(); } bool get_sort_order() const { return m_xControl->get_sort_order(); } void set_sort_order(bool bAscending) { m_xControl->set_sort_order(bAscending); } int get_sort_column() const { return m_xControl->get_sort_column(); } void set_sort_column(int nColumn) { m_xControl->set_sort_column(nColumn); } static constexpr OUStringLiteral aForbiddenChars = u"/\\@*?\",#"; static const char cSeparator; }; class SwInsertBookmarkDlg : public SfxDialogController { SwWrtShell& rSh; std::vector> aTableBookmarks; sal_Int32 m_nLastBookmarksCount; bool m_bSorted; bool m_bAreProtected; std::unique_ptr m_xEditBox; std::unique_ptr m_xInsertBtn; std::unique_ptr m_xDeleteBtn; std::unique_ptr m_xGotoBtn; std::unique_ptr m_xRenameBtn; std::unique_ptr m_xHideCB; std::unique_ptr m_xConditionFT; std::unique_ptr m_xConditionED; std::unique_ptr m_xBookmarksBox; std::unique_ptr m_xForbiddenChars; DECL_LINK(ModifyHdl, weld::Entry&, void); DECL_LINK(InsertHdl, weld::Button&, void); DECL_LINK(DeleteHdl, weld::Button&, void); DECL_LINK(RenameHdl, weld::Button&, void); DECL_LINK(GotoHdl, weld::Button&, void); DECL_LINK(SelectionChangedHdl, weld::TreeView&, void); DECL_LINK(DoubleClickHdl, weld::TreeView&, bool); DECL_LINK(HeaderBarClick, int, void); DECL_LINK(ChangeHideHdl, weld::ToggleButton&, void); // Fill table with bookmarks void PopulateTable(); /** * Check if displayed bookmarks are up-to date, if not update them. * @return True if no update was needed. */ bool ValidateBookmarks(); bool HaveBookmarksChanged(); void GotoSelectedBookmark(); public: SwInsertBookmarkDlg(weld::Window* pParent, SwWrtShell& rSh); virtual ~SwInsertBookmarkDlg() override; }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */