summaryrefslogtreecommitdiffstats
path: root/chalk/ui/kis_selection_manager.h
blob: 1bec7c34f60fa5b7b086c2ce8645fdd4f2b9c360 (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
/*
 *  Copyright (c) 2004 Boudewijn Rempt <boud@valdyas.org>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 */
#ifndef KIS_SELECTION_MANAGER_
#define KIS_SELECTION_MANAGER_

#include "tqobject.h"
#include "tqptrlist.h"

#include "kis_image.h"
#include <koffice_export.h>

class TDEAction;
class KisView;
class KisDoc;
class KisClipboard;

/**
 * The selection manager is responsible selections
 * and the clipboard.
 */
class KRITACORE_EXPORT KisSelectionManager : public TQObject {

    Q_OBJECT
  

public:

    KisSelectionManager(KisView * parent, KisDoc * doc);
    virtual ~KisSelectionManager();

    void setup(TDEActionCollection * collection);

    void addSelectionAction(TDEAction * action);

public:
    /**
     * This function return if the selection should be displayed
     */
    bool displaySelection();
    
public slots:

    void updateGUI();
    void imgSelectionChanged(KisImageSP img);
    void clipboardDataChanged();

    void cut();
    void copy();
    KisLayerSP paste();
    void pasteNew();
    void cutToNewLayer();
    void selectAll();
    void deselect();
    void clear();
    void fillForegroundColor();
    void fillBackgroundColor();
    void fillPattern();
    void reselect();
    void invert();
    void copySelectionToNewLayer();
    void feather();
    void border();
    void expand();
    void contract();
    void smooth();
    void similar();
    void transform();
    void load();
    void save();
    void toggleDisplaySelection();

public:
    void grow (TQ_INT32 xradius, TQ_INT32 yradius);
    void shrink (TQ_INT32 xradius, TQ_INT32 yradius, bool edge_lock);
    void border(TQ_INT32 xradius, TQ_INT32 yradius);
    // the following functions are needed for the siox tool
    // they might be also usefull on its own
    void erode();
    void dilate();

private:
    void fill(const KisColor& color, bool fillWithPattern, const TQString& transactionText);
    
    void computeBorder (TQ_INT32  *circ, TQ_INT32  xradius, TQ_INT32  yradius);
    inline void rotatePointers (TQ_UINT8  **p, TQ_UINT32 n);
    void computeTransition (TQ_UINT8* transition, TQ_UINT8** buf, TQ_INT32 width);

    KisView * m_parent;
    KisDoc * m_doc;

    KisClipboard * m_clipboard;

    TDEAction *m_copy;
    TDEAction *m_cut;
    TDEAction *m_paste;
    TDEAction *m_pasteNew;
    TDEAction *m_cutToNewLayer;
    TDEAction *m_selectAll;
    TDEAction *m_deselect;
    TDEAction *m_clear;
    TDEAction *m_reselect;
    TDEAction *m_invert;
    TDEAction *m_toNewLayer;
    TDEAction *m_feather;
    TDEAction *m_border;
    TDEAction *m_expand;
    TDEAction *m_smooth;
    TDEAction *m_contract;
    TDEAction *m_similar;
    TDEAction *m_transform;
    TDEAction *m_load;
    TDEAction *m_save;
    TDEAction *m_fillForegroundColor;
    TDEAction *m_fillBackgroundColor;
    TDEAction *m_fillPattern;
    TDEToggleAction *m_toggleDisplaySelection;

    TQPtrList<TDEAction> m_pluginActions;

};

#endif // KIS_SELECTION_MANAGER_