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
|
/* This file is part of the KDE project
Copyright (C) 2006 Alfredo Beaumont Sainz <alfredo.beaumont@gmail.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include <tdelocale.h>
#include "numberelement.h"
#include "kformuladefs.h"
#include "textelement.h"
#include "identifierelement.h"
#include "operatorelement.h"
#include "kformulacommand.h"
#include "kformulacontainer.h"
#include "formulaelement.h"
#include "creationstrategy.h"
KFORMULA_NAMESPACE_BEGIN
NumberElement::NumberElement( BasicElement* parent ) : TokenElement( parent ) {}
/*
* Token elements' content has to be of homogeneous type. Every token element
* must (TODO: check this) appear inside a non-token sequence, and thus, if
* the command asks for a different content, a new element has to be created in
* parent sequence.
*/
KCommand* NumberElement::buildCommand( Container* container, Request* request )
{
FormulaCursor* cursor = container->activeCursor();
if ( cursor->isReadOnly() ) {
formula()->tell( i18n( "write protection" ) );
return 0;
}
if ( *request == req_addNumber ) {
KFCReplace* command = new KFCReplace( i18n("Add Number"), container );
NumberRequest* nr = static_cast<NumberRequest*>( request );
TextElement* element = creationStrategy->createTextElement( nr->ch(), false );
command->addElement( element );
return command;
}
if ( countChildren() == 0 || cursor->getPos() == countChildren() ) {
// We are in the last position, so it's easy, call the parent to
// create a new child
SequenceElement* parent = static_cast<SequenceElement*>( getParent() );
if ( parent ) {
uint pos = parent->childPos( this );
cursor->setTo( parent, pos + 1);
return parent->buildCommand( container, request );
}
}
if ( cursor->getPos() == 0 ) {
SequenceElement* parent = static_cast<SequenceElement*>( getParent() );
if ( parent ) {
uint pos = parent->childPos( this );
cursor->setTo( parent, pos );
return parent->buildCommand( container, request );
}
}
// We are in the middle of a token, so:
// a) Cut from mark to the end
// b) Create a new token and add an element from key pressed
// c) Create a new token and add elements cut previously
// d) Move cursor to parent so that it command execution works fine
switch( *request ) {
case req_addTextChar: {
KFCSplitToken* command = new KFCSplitToken( i18n("Add Text"), container );
TextCharRequest* tr = static_cast<TextCharRequest*>( request );
IdentifierElement* id = creationStrategy->createIdentifierElement();
TextElement* text = creationStrategy->createTextElement( tr->ch() );
command->addCursor( cursor );
command->addToken( id );
command->addContent( id, text );
SequenceElement* parent = static_cast< SequenceElement* >( getParent() );
if ( parent ) {
cursor->setTo( parent, parent->childPos( this ) + 1 );
}
return command;
}
case req_addText: {
KFCSplitToken* command = new KFCSplitToken( i18n("Add Text"), container );
TextRequest* tr = static_cast<TextRequest*>( request );
IdentifierElement* id = creationStrategy->createIdentifierElement();
command->addCursor( cursor );
command->addToken( id );
for ( uint i = 0; i < tr->text().length(); i++ ) {
TextElement* text = creationStrategy->createTextElement( tr->text()[i] );
command->addContent( id, text );
}
SequenceElement* parent = static_cast< SequenceElement* >( getParent() );
if ( parent ) {
cursor->setTo( parent, parent->childPos( this ) + 1 );
}
return command;
}
case req_addOperator: {
KFCSplitToken* command = new KFCSplitToken( i18n("Add Operator"), container );
OperatorRequest* opr = static_cast<OperatorRequest*>( request );
OperatorElement* op = creationStrategy->createOperatorElement();
TextElement* text = creationStrategy->createTextElement( opr->ch() );
command->addCursor( cursor );
command->addToken( op );
command->addContent( op, text );
SequenceElement* parent = static_cast< SequenceElement* >( getParent() );
if ( parent ) {
cursor->setTo( parent, parent->childPos( this ) + 1 );
}
return command;
}
case req_addEmptyBox:
case req_addNameSequence:
case req_addBracket:
case req_addSpace:
case req_addFraction:
case req_addRoot:
case req_addSymbol:
case req_addOneByTwoMatrix:
case req_addMatrix: {
SequenceElement* parent = static_cast<SequenceElement*>( getParent() );
if ( parent ) {
uint pos = parent->childPos( this );
cursor->setTo( parent, pos + 1);
return parent->buildCommand( container, request );
}
}
default:
return SequenceElement::buildCommand( container, request );
}
return 0;
}
KFORMULA_NAMESPACE_END
|