summaryrefslogtreecommitdiffstats
path: root/quanta/utility/tagactionset.h
blob: 217a92c875581071c79c6c706de6e51a9e8f26e2 (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
/***************************************************************************
                               tagactionset.h
                             -------------------
 
    copyright            : (C) 2004 - Paulo Moura Guedes
    email                : moura@tdewebdev.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.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef TAGACTIONSET_H
#define TAGACTIONSET_H

namespace DOM
{
class Node;
}
class KActionSeparator;

#include <tqobject.h>
class TQWidget;
class KActionSet;
class KActionMenu;

class Node;
class NodeModifsSet;

/**
@author Paulo Moura Guedes
*/
class TagActionSetAbstract : public TQObject
{
    Q_OBJECT
  TQ_OBJECT
public:
    TagActionSetAbstract(TQObject *parent = 0, const char *name = 0);
    virtual ~TagActionSetAbstract();
    
    DOM::Node const& currentDomNode() const {return m_currentDomNode;}

    static Node* parentTag(Node* node, TQString const& tagName);
    static Node* firstChildTag(Node* node, TQString const& tagName);
    
    virtual bool isInTagContext(/*DOM::Node const& node*/) const = 0;
    virtual void initActions(TQWidget* parent) = 0;
    virtual bool fillWithTagActions(TQWidget* widget, DOM::Node const& node);
    virtual void unplugAllActions(TQWidget* widget) const = 0;

protected:
    virtual void initActionMenus(TQWidget* widget) = 0;
    
protected:
    Node* m_currentNode;

private:
    DOM::Node m_currentDomNode;
};


class TagActionSet : public TagActionSetAbstract
{
    Q_OBJECT
  TQ_OBJECT
public:
    TagActionSet(TQObject *parent = 0, const char *name = 0);
    virtual ~TagActionSet() {}
    
    virtual bool isInTagContext() const;
    virtual void initActions(TQWidget* parent);
    virtual bool fillWithTagActions(TQWidget* widget, DOM::Node const& node);
    virtual void unplugAllActions(TQWidget* widget) const;
    
public slots:
    void slotApplySourceIndentation();
    void slotCopyDivElement();
    void slotCutDivElement();

protected:
    virtual void initActionMenus(TQWidget* widget);

private:
    bool isInDivArea() const;
   
private:
    KActionSeparator* m_separator;
};


class TableTagActionSet : public TagActionSetAbstract
{
    Q_OBJECT
  TQ_OBJECT
public:
    TableTagActionSet(TQObject *parent = 0, const char *name = 0);
    virtual ~TableTagActionSet()
    {}

    virtual bool isInTagContext(/*DOM::Node const& node*/) const;
    virtual void initActions(TQWidget* parent);
    virtual bool fillWithTagActions(TQWidget* widget, DOM::Node const& node);
    virtual void unplugAllActions(TQWidget* widget) const;

public slots:
	// Insert
    void slotInsertTable();
    void slotInsertRowAbove();
    void slotInsertRowBelow();
    void slotInsertColumnLeft();
    void slotInsertColumnRight();
    // Remove
	void slotRemoveTable();
	void slotRemoveRows();
	void slotRemoveColumns();
	void slotRemoveCells();
	void slotRemoveCellsContent();
    // Merge
    void slotMergeSelectedCells();
    
protected:
    virtual void initActionMenus(TQWidget* widget);

private:
	// Insert
    bool canInsertTable() const;
    bool canInsertRowAbove() const;
    bool canInsertRowBelow() const;
    bool canInsertColumnLeft() const;
    bool canInsertColumnRight() const;
    // Remove
    bool canRemoveTable() const;
	bool canRemoveRows() const;
	bool canRemoveColumns() const;
	bool canRemoveCells() const;
	bool canRemoveCellsContent() const;
    // Merge
    bool canMergeSelectedCells() const;

    Node* tableStart() const;
    int numberOfColumns() const;
    int currentColumnIndex() const;
    int columnIndex(Node* node) const;
    Node* buildEmptyRowSubtree() const;
    Node* buildEmptyTBodyCellSubtree() const;
    Node* buildEmptyTHeadCellSubtree() const;
    
    void removeColumn(int index, NodeModifsSet* modifs);
    void clearCellContents(Node* tdNode, NodeModifsSet* modifs);
    
private:
    KActionSeparator* m_separator;
        
    KActionMenu* m_tableActionMenu_0;
    KActionMenu* m_insertActionMenu_1;
    KActionMenu* m_removeActionMenu_1;
};

#endif