2014-09-11 14:10:21 +02:00
|
|
|
/* -*- 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/.
|
|
|
|
*/
|
|
|
|
|
2016-03-29 11:13:57 +02:00
|
|
|
#ifndef INCLUDED_VCL_NOTEBOOKBAR_HXX
|
|
|
|
#define INCLUDED_VCL_NOTEBOOKBAR_HXX
|
2014-09-11 14:10:21 +02:00
|
|
|
|
|
|
|
#include <vcl/builder.hxx>
|
|
|
|
#include <vcl/ctrl.hxx>
|
2016-06-17 23:54:00 +02:00
|
|
|
#include <vcl/contexttabctrl.hxx>
|
|
|
|
#include <com/sun/star/ui/XContextChangeEventListener.hpp>
|
|
|
|
#include <vcl/EnumContext.hxx>
|
2014-09-11 14:10:21 +02:00
|
|
|
|
|
|
|
/// This implements Widget Layout-based notebook-like menu bar.
|
2016-06-17 23:54:00 +02:00
|
|
|
class NotebookBar : public Control, public VclBuilderContainer,
|
|
|
|
public css::ui::XContextChangeEventListener
|
2014-09-11 14:10:21 +02:00
|
|
|
{
|
|
|
|
public:
|
2016-03-29 11:13:57 +02:00
|
|
|
NotebookBar(Window* pParent, const OString& rID, const OUString& rUIXMLDescription, const css::uno::Reference<css::frame::XFrame> &rFrame);
|
|
|
|
virtual ~NotebookBar();
|
2014-09-11 14:10:21 +02:00
|
|
|
virtual void dispose() SAL_OVERRIDE;
|
|
|
|
|
|
|
|
virtual Size GetOptimalSize() const SAL_OVERRIDE;
|
|
|
|
virtual void setPosSizePixel(long nX, long nY, long nWidth, long nHeight, PosSizeFlags nFlags = PosSizeFlags::All) SAL_OVERRIDE;
|
2016-03-18 13:55:24 +01:00
|
|
|
|
|
|
|
virtual void StateChanged(StateChangedType nType) override;
|
2016-06-17 23:54:00 +02:00
|
|
|
|
|
|
|
// XContextChangeEventListener
|
|
|
|
virtual void SAL_CALL notifyContextChangeEvent(const css::ui::ContextChangeEventObject& rEvent)
|
|
|
|
throw (css::uno::RuntimeException, std::exception) override;
|
|
|
|
|
|
|
|
virtual ::css::uno::Any SAL_CALL queryInterface(const ::css::uno::Type& aType)
|
|
|
|
throw (::css::uno::RuntimeException, ::std::exception) override;
|
|
|
|
virtual void SAL_CALL acquire() throw () override;
|
|
|
|
virtual void SAL_CALL release() throw () override;
|
|
|
|
virtual void SAL_CALL disposing(const ::css::lang::EventObject&)
|
|
|
|
throw (::css::uno::RuntimeException, ::std::exception) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
VclPtr<ContextTabControl> m_pTabControl;
|
2014-09-11 14:10:21 +02:00
|
|
|
};
|
|
|
|
|
2016-03-29 11:13:57 +02:00
|
|
|
#endif // INCLUDED_VCL_NOTEBOOKBAR_HXX
|
2014-09-11 14:10:21 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|