summaryrefslogtreecommitdiff
path: root/sd/source/ui/inc/animobjs.hxx
blob: 04316f304af9f46efc33b33308b934d0421424bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/* -*- 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/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

#ifndef INCLUDED_SD_SOURCE_UI_INC_ANIMOBJS_HXX
#define INCLUDED_SD_SOURCE_UI_INC_ANIMOBJS_HXX

#include <sfx2/dockwin.hxx>
#include <vcl/fixed.hxx>
#include <tools/fract.hxx>
#include <sfx2/ctrlitem.hxx>
#include <sfx2/progress.hxx>

#include <vcl/button.hxx>
#include <vcl/field.hxx>

#include <vcl/lstbox.hxx>

#include <misc/scopelock.hxx>

class SdDrawDocument;

namespace sd {

class AnimationControllerItem;
class View;

enum BitmapAdjustment
{
    BA_LEFT_UP,
    BA_LEFT,
    BA_LEFT_DOWN,
    BA_UP,
    BA_CENTER,
    BA_DOWN,
    BA_RIGHT_UP,
    BA_RIGHT,
    BA_RIGHT_DOWN
};

class SdDisplay : public Control
{
private:
    BitmapEx    aBitmapEx;
    Fraction    aScale;

public:
    SdDisplay(vcl::Window* pWin);
    virtual ~SdDisplay() override;

    virtual void Paint( vcl::RenderContext& rRenderContext, const ::tools::Rectangle& rRect ) override;

    void    SetBitmapEx( BitmapEx const * pBmpEx );
    void    SetScale( const Fraction& rFrac );

    virtual void DataChanged( const DataChangedEvent& rDCEvt ) override;
    virtual Size GetOptimalSize() const override;
};

class AnimationWindow : public SfxDockingWindow
{
 friend class AnimationChildWindow;
 friend class AnimationControllerItem;

public:
    AnimationWindow(SfxBindings* pBindings, SfxChildWindow *pCW, vcl::Window* pParent);
    virtual ~AnimationWindow() override;
    virtual void dispose() override;

    void    AddObj( ::sd::View& rView );
    void    CreateAnimObj( ::sd::View& rView );

    virtual void DataChanged( const DataChangedEvent& rDCEvt ) override;

protected:
    virtual bool    Close() override;
    virtual void    Resize() override;

private:
    VclPtr<SdDisplay>      m_pCtlDisplay;
    VclPtr<PushButton>     m_pBtnFirst;
    VclPtr<PushButton>     m_pBtnReverse;
    VclPtr<PushButton>     m_pBtnStop;
    VclPtr<PushButton>     m_pBtnPlay;
    VclPtr<PushButton>     m_pBtnLast;
    VclPtr<NumericField>   m_pNumFldBitmap;
    VclPtr<TimeField>      m_pTimeField;
    VclPtr<ListBox>        m_pLbLoopCount;
    VclPtr<PushButton>     m_pBtnGetOneObject;
    VclPtr<PushButton>     m_pBtnGetAllObjects;
    VclPtr<PushButton>     m_pBtnRemoveBitmap;
    VclPtr<PushButton>     m_pBtnRemoveAll;
    VclPtr<FixedText>      m_pFiCount;

    VclPtr<RadioButton>    m_pRbtGroup;
    VclPtr<RadioButton>    m_pRbtBitmap;
    VclPtr<FixedText>      m_pFtAdjustment;
    VclPtr<ListBox>        m_pLbAdjustment;
    VclPtr<PushButton>     m_pBtnCreateGroup;

    ::std::vector< ::std::pair<BitmapEx, ::tools::Time> > m_FrameList;
    static const size_t EMPTY_FRAMELIST;
    size_t          m_nCurrentFrame;
    std::unique_ptr<SdDrawDocument> pMyDoc;

    bool            bMovie;
    bool            bAllObjects;

    std::unique_ptr<AnimationControllerItem> pControllerItem;

    ScopeLock       maPlayLock;

    DECL_LINK( ClickFirstHdl, Button*, void );
    DECL_LINK( ClickStopHdl, Button*, void );
    DECL_LINK( ClickPlayHdl, Button*, void );
    DECL_LINK( ClickLastHdl, Button*, void );
    DECL_LINK( ClickGetObjectHdl, Button*, void );
    DECL_LINK( ClickRemoveBitmapHdl, Button*, void );
    DECL_LINK( ClickRbtHdl, Button*, void );
    DECL_LINK( ClickCreateGroupHdl, Button*, void );
    DECL_LINK( ModifyBitmapHdl, Edit&, void );
    DECL_LINK( ModifyTimeHdl, Edit&, void );

    void            UpdateControl(bool bDisableCtrls = false);
    void            ResetAttrs();
    void            WaitInEffect( sal_uLong nMilliSeconds, sal_uLong nTime,
                                        SfxProgress* pStbMgr ) const;
    Fraction        GetScale();
};

/**
 * ControllerItem for Animator
 */
class AnimationControllerItem : public SfxControllerItem
{

public:
    AnimationControllerItem( sal_uInt16, AnimationWindow*, SfxBindings* );

protected:
    virtual void StateChanged( sal_uInt16 nSId, SfxItemState eState,
        const SfxPoolItem* pState ) override;
private:
    VclPtr<AnimationWindow> pAnimationWin;
};

} // end of namespace sd

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */