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/.
10 #ifndef INCLUDED_VCL_WRITERTABBEDNOTEBOOKBAR_HXX
11 #define INCLUDED_VCL_WRITERTABBEDNOTEBOOKBAR_HXX
13 #include <vcl/dllapi.h>
14 #include <rtl/ustring.hxx>
15 #include <vcl/weld.hxx>
16 #include <com/sun/star/frame/XFrame.hpp>
18 /** Tabbed implementation of NotebookBar for Writer
20 class VCL_DLLPUBLIC WeldedTabbedNotebookbar
22 std::unique_ptr
<weld::Builder
> m_xBuilder
;
24 std::unique_ptr
<weld::Container
> m_xContainer
;
25 std::unique_ptr
<weld::Notebook
> m_xNotebook
;
28 WeldedTabbedNotebookbar(VclPtr
<vcl::Window
>& pContainerWindow
, const OUString
& rUIFilePath
,
29 const css::uno::Reference
<css::frame::XFrame
>& rFrame
,
30 sal_uInt64 nWindowId
);
33 #endif // INCLUDED_VCL_SFXNOTEBOOKBAR_HXX
35 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */