Stop leaking all ScPostIt instances.
[LibreOffice.git] / sc / source / ui / inc / tabcont.hxx
blob2c87f89c729b751053f9a9456665421f7d0a7d65
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 SC_TABCONT_HXX
21 #define SC_TABCONT_HXX
23 #include "address.hxx"
24 #include <svtools/tabbar.hxx>
25 #include <svtools/transfer.hxx>
28 class ScViewData;
30 // ---------------------------------------------------------------------------
32 // initial size
33 #define SC_TABBAR_DEFWIDTH 270
36 class ScTabControl : public TabBar, public DropTargetHelper, public DragSourceHelper
38 private:
39 ScViewData* pViewData;
40 sal_uInt16 nMouseClickPageId; /// Last page ID after mouse button down/up
41 sal_uInt16 nSelPageIdByMouse; /// Selected page ID, if selected with mouse
42 sal_Bool bErrorShown;
44 void DoDrag( const Region& rRegion );
46 sal_uInt16 GetMaxId() const;
47 SCTAB GetPrivatDropPos(const Point& rPos );
49 DECL_LINK(ShowPageList, const CommandEvent*);
51 void SwitchToPageId(sal_uInt16 nId);
52 protected:
53 virtual void Select();
54 virtual void Command( const CommandEvent& rCEvt );
55 virtual void MouseButtonDown( const MouseEvent& rMEvt );
56 virtual void MouseButtonUp( const MouseEvent& rMEvt );
58 virtual sal_Int8 AcceptDrop( const AcceptDropEvent& rEvt );
59 virtual sal_Int8 ExecuteDrop( const ExecuteDropEvent& rEvt );
61 virtual void StartDrag( sal_Int8 nAction, const Point& rPosPixel );
63 virtual long StartRenaming();
64 virtual long AllowRenaming();
65 virtual void EndRenaming();
66 virtual void Mirror();
68 public:
69 ScTabControl( Window* pParent, ScViewData* pData );
70 ~ScTabControl();
72 using TabBar::StartDrag;
74 void UpdateInputContext();
75 void UpdateStatus();
77 void SetSheetLayoutRTL( sal_Bool bSheetRTL );
82 #endif
84 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */