Stop leaking all ScPostIt instances.
[LibreOffice.git] / sc / source / ui / inc / futext.hxx
blob3c6179e83fc89fde9afd866e3f17bd1a31b1a668
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_FUTEXT_HXX
21 #define SC_FUTEXT_HXX
23 #include "fuconstr.hxx"
25 class SdrObject;
26 class SdrTextObj;
27 class SdrOutliner;
31 /** Base class for Text functions */
32 class FuText : public FuConstruct
34 protected:
35 SdrTextObj* pTextObj;
37 public:
38 FuText(ScTabViewShell* pViewSh, Window* pWin, ScDrawView* pView,
39 SdrModel* pDoc, SfxRequest& rReq);
41 virtual ~FuText();
43 virtual sal_Bool KeyInput(const KeyEvent& rKEvt);
44 virtual sal_Bool MouseMove(const MouseEvent& rMEvt);
45 virtual sal_Bool MouseButtonUp(const MouseEvent& rMEvt);
46 virtual sal_Bool MouseButtonDown(const MouseEvent& rMEvt);
48 virtual void Activate();
49 virtual void Deactivate();
51 virtual void ForcePointer(const MouseEvent* pMEvt);
53 virtual void SelectionHasChanged();
55 void SetInEditMode( SdrObject* pObj = NULL, const Point* pMousePixel = NULL,
56 sal_Bool bCursorToEnd = false, const KeyEvent* pInitialKey = NULL );
57 void StopEditMode(sal_Bool bTextDirection = false);
58 void StopDragMode(SdrObject* pObject);
60 // Create default drawing objects via keyboard
61 virtual SdrObject* CreateDefaultObject(const sal_uInt16 nID, const Rectangle& rRectangle);
63 private:
64 SdrOutliner* MakeOutliner();
69 #endif
71 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */