Version 6.4.0.3, tag libreoffice-6.4.0.3
[LibreOffice.git] / sc / source / ui / inc / tabcont.hxx
blob5f41ac8c59195ade56d0be7465748bd762553dc3
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 #ifndef INCLUDED_SC_SOURCE_UI_INC_TABCONT_HXX
21 #define INCLUDED_SC_SOURCE_UI_INC_TABCONT_HXX
23 #include <types.hxx>
24 #include <svtools/tabbar.hxx>
25 #include <vcl/transfer.hxx>
27 class ScViewData;
29 // initial size
30 #define SC_TABBAR_DEFWIDTH 270
32 class ScTabControl : public TabBar, public DropTargetHelper, public DragSourceHelper
34 private:
35 ScViewData* pViewData;
36 sal_uInt16 nMouseClickPageId; /// Last page ID after mouse button down/up
37 sal_uInt16 nSelPageIdByMouse; /// Selected page ID, if selected with mouse
38 bool bErrorShown;
40 void DoDrag();
42 sal_uInt16 GetMaxId() const;
43 SCTAB GetPrivatDropPos(const Point& rPos );
45 DECL_LINK(ShowPageList, const CommandEvent&, void);
47 protected:
48 virtual void Select() override;
49 virtual void Command( const CommandEvent& rCEvt ) override;
50 virtual void MouseButtonDown( const MouseEvent& rMEvt ) override;
51 virtual void MouseButtonUp( const MouseEvent& rMEvt ) override;
53 virtual sal_Int8 AcceptDrop( const AcceptDropEvent& rEvt ) override;
54 virtual sal_Int8 ExecuteDrop( const ExecuteDropEvent& rEvt ) override;
56 virtual void StartDrag( sal_Int8 nAction, const Point& rPosPixel ) override;
58 virtual bool StartRenaming() override;
59 virtual TabBarAllowRenamingReturnCode AllowRenaming() override;
60 virtual void EndRenaming() override;
61 virtual void Mirror() override;
63 virtual void AddTabClick() override;
65 public:
66 ScTabControl( vcl::Window* pParent, ScViewData* pData );
67 virtual void dispose() override;
68 virtual ~ScTabControl() override;
70 using TabBar::StartDrag;
72 void UpdateInputContext();
73 void UpdateStatus();
75 void SetSheetLayoutRTL( bool bSheetRTL );
76 void SwitchToPageId( sal_uInt16 nId );
79 #endif
81 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */