| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069 |
- /*
- Copyright (C) 2012 by Ivan Safrin
-
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
-
- The above copyright notice and this permission notice shall be included in
- all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- THE SOFTWARE.
- */
- #include "PolyUITextInput.h"
- #include "PolyConfig.h"
- #include "PolyInputEvent.h"
- #include "PolyLabel.h"
- #include "PolyCoreServices.h"
- #include "PolyEventHandler.h"
- using namespace Polycode;
- UITextInput::UITextInput(bool multiLine, Number width, Number height) : UIElement() {
- this->multiLine = multiLine;
- processInputEvents = true;
- isNumberOnly = false;
-
- draggingSelection = false;
- hasSelection = false;
- doSelectToCaret = false;
-
- caretPosition = 0;
- caretImagePosition = 0;
-
- currentLine = NULL;
-
-
- lineOffset = -1;
- numLines = 0;
-
- this->positionMode = ScreenEntity::POSITION_TOPLEFT;
- Config *conf = CoreServices::getInstance()->getConfig();
-
- if(multiLine)
- fontName = conf->getStringValue("Polycode", "uiTextInputFontNameMultiLine");
- else
- fontName = conf->getStringValue("Polycode", "uiTextInputFontName");
-
- if(multiLine)
- fontSize = conf->getNumericValue("Polycode", "uiTextInputFontSizeMultiline");
- else
- fontSize = conf->getNumericValue("Polycode", "uiTextInputFontSize");
-
- Number rectHeight = height;
- if(!multiLine) {
- rectHeight = fontSize+12;
- }
-
- linesContainer = new ScreenEntity();
- linesContainer->processInputEvents = true;
-
- lineSpacing = conf->getNumericValue("Polycode", "textEditLineSpacing");
-
- Number st = conf->getNumericValue("Polycode", "textBgSkinT");
- Number sr = conf->getNumericValue("Polycode", "textBgSkinR");
- Number sb = conf->getNumericValue("Polycode", "textBgSkinB");
- Number sl = conf->getNumericValue("Polycode", "textBgSkinL");
-
- padding = conf->getNumericValue("Polycode", "textBgSkinPadding");
-
- inputRect = new UIBox(conf->getStringValue("Polycode", "textBgSkin"),
- st,sr,sb,sl,
- width+(padding*2), height+(padding*2));
-
- addChild(inputRect);
-
- inputRect->addEventListener(this, InputEvent::EVENT_MOUSEDOWN);
- inputRect->addEventListener(this, InputEvent::EVENT_MOUSEUP);
- inputRect->addEventListener(this, InputEvent::EVENT_DOUBLECLICK);
- inputRect->addEventListener(this, InputEvent::EVENT_MOUSEMOVE);
- inputRect->addEventListener(this, InputEvent::EVENT_MOUSEOVER);
- inputRect->addEventListener(this, InputEvent::EVENT_MOUSEOUT);
- inputRect->processInputEvents = true;
- inputRect->setPositionMode(ScreenEntity::POSITION_TOPLEFT);
-
- selectorRectTop = new ScreenShape(ScreenShape::SHAPE_RECT, 1,1);
- selectorRectTop->setPositionMode(ScreenEntity::POSITION_TOPLEFT);
- selectorRectTop->setColor(181.0f/255.0f, 213.0f/255.0f, 255.0f/255.0f, 1);
- selectorRectTop->visible = false;
- linesContainer->addChild(selectorRectTop);
- selectorRectMiddle = new ScreenShape(ScreenShape::SHAPE_RECT, 1,1);
- selectorRectMiddle->setPositionMode(ScreenEntity::POSITION_TOPLEFT);
- selectorRectMiddle->setColor(181.0f/255.0f, 213.0f/255.0f, 255.0f/255.0f, 1);
- selectorRectMiddle->visible = false;
- linesContainer->addChild(selectorRectMiddle);
- selectorRectBottom = new ScreenShape(ScreenShape::SHAPE_RECT, 1,1);
- selectorRectBottom->setPositionMode(ScreenEntity::POSITION_TOPLEFT);
- selectorRectBottom->setColor(181.0f/255.0f, 213.0f/255.0f, 255.0f/255.0f, 1);
- selectorRectBottom->visible = false;
- linesContainer->addChild(selectorRectBottom);
-
-
- blinkerRect = new ScreenShape(ScreenShape::SHAPE_RECT, 1, fontSize+4,0,0);
- blinkerRect->setPositionMode(ScreenEntity::POSITION_TOPLEFT);
- blinkerRect->setColor(0,0,0,1);
- linesContainer->addChild(blinkerRect);
- blinkerRect->visible = false;
- blinkerRect->setPosition(0,3);
-
- blinkTimer = new Timer(true, 500);
- blinkTimer->addEventListener(this, Timer::EVENT_TRIGGER);
- focusable = true;
- this->width = width;
- this->height = rectHeight;
- setHitbox(width, rectHeight);
-
- updateCaretPosition();
-
-
- scrollContainer = NULL;
-
- if(multiLine) {
- scrollContainer = new UIScrollContainer(linesContainer, false, true, 200, 200);
- addChild(scrollContainer);
- } else {
- addChild(linesContainer);
- }
-
- undoStateIndex = 0;
- maxRedoIndex = 0;
-
- syntaxHighliter = NULL;
-
- insertLine(true);
- }
- void UITextInput::setNumberOnly(bool val) {
- isNumberOnly = val;
- }
- void UITextInput::clearSelection() {
- hasSelection = false;
- selectorRectTop->visible = false;
- selectorRectMiddle->visible = false;
- selectorRectBottom->visible = false;
- }
- void UITextInput::setSelection(int lineStart, int lineEnd, int colStart, int colEnd) {
- if(lineStart == lineOffset) {
- selectionLine = lineEnd;
- } else {
- selectionLine = lineStart;
- }
- if(colStart == caretPosition) {
- selectionCaretPosition = colEnd;
- } else {
- selectionCaretPosition = colStart;
- }
-
- //printf("SET lineStart:%d lineEnd:%d colStart:%d colEnd:%d\n", lineStart, lineEnd, colStart, colEnd);
-
- if(lineStart > lineEnd) {
- int tmp = lineStart;
- lineStart = lineEnd;
- lineEnd = tmp;
-
- tmp = colStart;
- colStart = colEnd;
- colEnd = tmp;
- }
-
- if(colStart > colEnd && lineStart == lineEnd) {
- int tmp = colStart;
- colStart = colEnd;
- colEnd = tmp;
- }
-
- clearSelection();
-
-
- if(lineStart > lines.size()-1)
- return;
- ScreenLabel *topLine = lines[lineStart];
-
- if(colStart+1 > topLine->getText().length()) {
- colStart = topLine->getText().length();
- }
-
- Number fColEnd = colEnd;
-
- if(colEnd > topLine->getText().length() || lineStart != lineEnd)
- fColEnd = topLine->getText().length();
- Number topSize, topHeight, topX;
-
- selectorRectTop->visible = true;
- topSize = topLine->getLabel()->getTextWidth(CoreServices::getInstance()->getFontManager()->getFontByName(fontName), topLine->getText().substr(colStart,fColEnd-colStart), fontSize) - 4;
- topHeight = lineHeight+lineSpacing;
- if(colStart > 0) {
- topX = topLine->getLabel()->getTextWidth(CoreServices::getInstance()->getFontManager()->getFontByName(fontName), topLine->getText().substr(0,colStart-1), fontSize); ;
- } else {
- topX = 0;
- }
- selectorRectTop->setScale(topSize, topHeight);
- selectorRectTop->setPosition(topX + padding + (topSize/2.0)+ 1, padding + (lineStart * (lineHeight+lineSpacing)) + (topHeight/2.0));
-
- if(lineEnd > lineStart && lineEnd < lines.size()) {
- ScreenLabel *bottomLine = lines[lineEnd];
- selectorRectBottom->visible = true;
- Number bottomSize = bottomLine->getLabel()->getTextWidth(CoreServices::getInstance()->getFontManager()->getFontByName(fontName), bottomLine->getText().substr(0,colEnd), fontSize) - 4;
- if(bottomSize < 0)
- bottomSize = this->width-padding;
- Number bottomHeight = lineHeight+lineSpacing;
- selectorRectBottom->setScale(bottomSize, bottomHeight);
- selectorRectBottom->setPosition(padding + (bottomSize/2.0) + 1, padding + (lineEnd * (lineHeight+lineSpacing)) + (bottomHeight/2.0));
-
- if(lineEnd != lineStart+1) {
- // need filler
- selectorRectMiddle->visible = true;
- Number midSize = this->width-padding;
- Number midHeight = 0;
- for(int i=lineStart+1; i < lineEnd;i++) {
- midHeight += lineHeight+lineSpacing;
- }
- selectorRectMiddle->setScale(midSize, midHeight);
- selectorRectMiddle->setPosition(padding + (midSize/2.0), padding + ((lineStart+1) * (lineHeight+lineSpacing)) + (midHeight/2.0));
-
- }
-
- }
- hasSelection = true;
-
- selectionTop = lineStart;
- selectionBottom = lineEnd;
- selectionL = colStart;
- selectionR = colEnd;
- }
- void UITextInput::deleteSelection() {
- if(selectionTop == selectionBottom) {
- String ctext = lines[selectionTop]->getText();
- String newText = ctext.substr(0, selectionL);
- int rside = selectionR;
- if(rside > ctext.length()-1)
- rside = ctext.length() - 1;
- newText += ctext.substr(rside,ctext.length() - selectionR);
- lines[selectionTop]->setText(newText);
- } else {
-
- String ctext = lines[selectionTop]->getText();
- String newText = ctext.substr(0, selectionL);
- lines[selectionTop]->setText(newText);
- ScreenLabel *bottomLine = lines[selectionBottom];
-
- // if whole lines to remove, do it
- vector<ScreenLabel*> linesToRemove;
- if(selectionBottom > selectionTop + 1) {
- for(int i=selectionTop+1; i < selectionBottom; i++) {
- linesToRemove.push_back(lines[i]);
- }
- for(int i=0; i < linesToRemove.size(); i++) {
- removeLine(linesToRemove[i]);
- }
- }
-
- ctext = bottomLine->getText();
-
- int rside = selectionR;
- if(rside > ctext.length()-1)
- rside = ctext.length() - 1;
- newText = ctext.substr(rside,ctext.length() - selectionR);
-
-
- lineOffset = selectionTop;
- selectLineFromOffset();
- caretPosition = currentLine->getText().length();
- updateCaretPosition();
- currentLine->setText(currentLine->getText() + newText);
- removeLine(bottomLine);
-
-
- }
- clearSelection();
- caretPosition = selectionL;
- updateCaretPosition();
- changedText();
- }
- void UITextInput::changedText() {
- if(syntaxHighliter) {
- std::vector<SyntaxHighlightToken> tokens = syntaxHighliter->parseText(getText());
- }
- dispatchEvent(new UIEvent(), UIEvent::CHANGE_EVENT);
- }
- void UITextInput::setSyntaxHighlighter(UITextInputSyntaxHighlighter *syntaxHighliter) {
- this->syntaxHighliter = syntaxHighliter;
- }
- void UITextInput::Resize(Number width, Number height) {
- inputRect->resizeBox(width, height);
- this->width = width;
- this->height = height;
- matrixDirty = true;
- setHitbox(width,height);
-
- if(multiLine) {
- inputRect->setHitbox(width - scrollContainer->getVScrollWidth(), height);
- }
- if(scrollContainer) {
- scrollContainer->Resize(width, height);
- }
- }
- int UITextInput::insertLine(bool after) {
-
- numLines++;
-
- ScreenLabel *newLine = new ScreenLabel(L"", fontSize, fontName, Label::ANTIALIAS_FULL);
- newLine->setColor(0,0,0,1);
- lineHeight = newLine->getHeight();
- linesContainer->addChild(newLine);
-
- if(after) {
-
- if(currentLine) {
- String ctext = currentLine->getText();
- String text2 = ctext.substr(caretPosition, ctext.length()-caretPosition);
- ctext = ctext.substr(0,caretPosition);
- currentLine->setText(ctext);
- newLine->setText(text2);
- caretPosition=0;
- }
-
- currentLine = newLine;
-
- vector<ScreenLabel*>::iterator it;
- it = lines.begin();
-
- for(int i=0; i < lineOffset+1; i++) {
- it++;
- }
-
- lineOffset = lineOffset + 1;
- lines.insert(it,newLine);
-
- restructLines();
- } else {
- // do we even need that? I don't think so.
- }
-
- changedText();
- return 1;
- }
- void UITextInput::restructLines() {
- for(int i=0; i < lines.size(); i++) {
- lines[i]->setPosition(padding,padding + (i*(lineHeight+lineSpacing)) ,0.0f);
- }
-
- if(scrollContainer) {
- scrollContainer->setContentSize(width, (((lines.size()+1) * ((lineHeight+lineSpacing)))) - padding);
- }
-
- if(multiLine) {
- inputRect->setHitbox(width - scrollContainer->getVScrollWidth(), height);
- }
-
- }
- void UITextInput::setText(String text) {
- if(!multiLine) {
- currentLine->setText(text);
- caretPosition = text.length();
- clearSelection();
- updateCaretPosition();
- } else {
- selectAll();
- insertText(text);
- clearSelection();
- }
-
- // this->text = text;
- // currentLine->setText(text);
- }
- void UITextInput::onLoseFocus() {
- blinkerRect->visible = false;
- clearSelection();
- }
- String UITextInput::getText() {
-
- if(!multiLine) {
- return currentLine->getText();
- } else {
- String totalText = L"";
- for(int i=0; i < lines.size(); i++) {
- totalText += lines[i]->getText();
- if(i < lines.size()-1)
- totalText += L"\n";
- }
- return totalText;
- }
- }
- void UITextInput::updateCaretPosition() {
- caretImagePosition = padding;
- if(caretPosition == 0) {
- caretImagePosition = padding;
- } else if(caretPosition > currentLine->getText().length()) {
- caretPosition = currentLine->getText().length();
- String caretSubString = currentLine->getText().substr(0,caretPosition);
- caretImagePosition = currentLine->getLabel()->getTextWidth(CoreServices::getInstance()->getFontManager()->getFontByName(fontName), caretSubString, fontSize);
- caretImagePosition = caretImagePosition - 4.0f + padding;
- } else {
- String caretSubString = currentLine->getText().substr(0,caretPosition);
- caretImagePosition = currentLine->getLabel()->getTextWidth(CoreServices::getInstance()->getFontManager()->getFontByName(fontName), caretSubString, fontSize);
- caretImagePosition = caretImagePosition - 4.0f + padding;
- }
- blinkerRect->visible = true;
- blinkTimer->Reset();
-
- if(doSelectToCaret) {
- doSelectToCaret = false;
-
- }
-
- if(multiLine && currentLine) {
-
-
- if(linesContainer->getPosition().y + currentLine->getPosition2D().y < 0.0) {
- scrollContainer->scrollVertical(-(lineHeight+lineSpacing+padding)/(scrollContainer->getContentSize().y));
- } else if(linesContainer->getPosition().y + currentLine->getPosition2D().y > scrollContainer->getHeight()) {
- scrollContainer->scrollVertical((lineHeight+lineSpacing+padding)/(scrollContainer->getContentSize().y));
- }
- }
- }
- void UITextInput::selectLineFromOffset() {
- for(int i=0; i < lines.size(); i++) {
- if(i == lineOffset) {
- currentLine = lines[i];
- return;
- }
- }
- }
- void UITextInput::dragSelectionTo(Number x, Number y) {
- x -= padding;
- y -= padding;
- int lineOffset = y / (lineHeight+lineSpacing);
- if(lineOffset > lines.size()-1)
- lineOffset = lines.size()-1;
-
- ScreenLabel *selectToLine = lines[lineOffset];
-
- int len = selectToLine->getText().length();
- Number slen;
- int caretPosition = selectToLine->getLabel()->getTextWidth(CoreServices::getInstance()->getFontManager()->getFontByName(fontName), selectToLine->getText().substr(0,len), fontSize);
- for(int i=0; i < len; i++) {
- slen = selectToLine->getLabel()->getTextWidth(CoreServices::getInstance()->getFontManager()->getFontByName(fontName), selectToLine->getText().substr(0,i), fontSize);
- if(slen > x) {
- caretPosition = i;
- break;
- }
- }
- if(x > slen)
- caretPosition = len;
-
- if(caretPosition < 0)
- caretPosition = 0;
- setSelection(this->lineOffset, lineOffset, this->caretPosition, caretPosition);
- }
- int UITextInput::caretSkipWordBack(int caretLine, int caretPosition) {
- for(int i=caretPosition; i > 0; i--) {
- String bit = lines[caretLine]->getText().substr(i,1);
- char chr = ((char*)bit.c_str())[0];
- if(((chr > 0 && chr < 48) || (chr > 57 && chr < 65) || (chr > 90 && chr < 97) || (chr > 122 && chr < 127)) && i < caretPosition-1) {
- return i+1;
- }
- }
- return 0;
- }
- int UITextInput::caretSkipWordForward(int caretLine, int caretPosition) {
- int len = lines[caretLine]->getText().length();
- for(int i=caretPosition; i < len; i++) {
- String bit = lines[caretLine]->getText().substr(i,1);
- char chr = ((char*)bit.c_str())[0];
- if(((chr > 0 && chr < 48) || (chr > 57 && chr < 65) || (chr > 90 && chr < 97) || (chr > 122 && chr < 127)) && i > caretPosition) {
- return i;
- }
- }
- return lines[caretLine]->getText().length();
- }
- void UITextInput::selectWordAtCaret() {
-
- int selectStart = 0;
- int len = currentLine->getText().length();
- int selectEnd = len;
-
- for(int i=this->caretPosition; i > 0; i--) {
- String bit = currentLine->getText().substr(i,1);
- wchar_t chr = ((wchar_t*)bit.c_str())[0];
- if( (chr > 0 && chr < 48) || (chr > 57 && chr < 65) || (chr > 90 && chr < 97) || (chr > 122 && chr < 127)) {
- selectStart = i+1;
- break;
- }
- }
- for(int i=this->caretPosition; i < len; i++) {
- String bit = currentLine->getText().substr(i,1);
- wchar_t chr = ((wchar_t*)bit.c_str())[0];
- if( (chr > 0 && chr < 48) || (chr > 57 && chr < 65) || (chr > 90 && chr < 97) || (chr > 122 && chr < 127)) {
- selectEnd = i;
- break;
- }
- }
-
-
- setSelection(this->lineOffset, this->lineOffset, selectStart, selectEnd);
- }
- void UITextInput::setCaretToMouse(Number x, Number y) {
- clearSelection();
- x -= padding;
- y -= padding;
- //if(lines.size() > 1) {
- lineOffset = y / (lineHeight+lineSpacing);
- if(lineOffset > lines.size()-1)
- lineOffset = lines.size()-1;
- selectLineFromOffset();
- //}
-
- int len = currentLine->getText().length();
- Number slen;
- for(int i=0; i < len; i++) {
- slen = currentLine->getLabel()->getTextWidth(CoreServices::getInstance()->getFontManager()->getFontByName(fontName), currentLine->getText().substr(0,i), fontSize);
- if(slen > x) {
- caretPosition = i;
- break;
- }
- }
- if(x > slen)
- caretPosition = len;
- updateCaretPosition();
- }
- void UITextInput::removeLine(ScreenLabel *line) {
- for(int i=0;i<lines.size();i++) {
- if(lines[i] == line) {
- lines.erase(lines.begin()+i);
- }
- }
- linesContainer->removeChild(line);
- linesToDelete.push_back(line);
- restructLines();
- }
- void UITextInput::selectAll() {
- setSelection(0, lines.size()-1, 0, lines[lines.size()-1]->getText().length());
- }
- void UITextInput::insertText(String text) {
- vector<String> strings = text.split("\n");
- if(hasSelection)
- deleteSelection();
- if(strings.size() > 1) {
- String ctext = currentLine->getText();
- String text2 = ctext.substr(caretPosition, ctext.length()-caretPosition);
- ctext = ctext.substr(0,caretPosition);
- ctext += strings[0];
- currentLine->setText(ctext);
- caretPosition = ctext.length();
-
- for(int i=1; i < strings.size()-1; i++) {
- insertLine(true);
- ctext = strings[i];
- currentLine->setText(ctext);
- caretPosition = ctext.length();
- }
-
- insertLine(true);
- ctext = strings[strings.size()-1] + text2;
- caretPosition = ctext.length();
- currentLine->setText(ctext);
-
- } else {
- String ctext = currentLine->getText();
- String text2 = ctext.substr(caretPosition, ctext.length()-caretPosition);
- ctext = ctext.substr(0,caretPosition);
- ctext += text + text2;
- caretPosition += text.length();
- currentLine->setText(ctext);
- }
-
- changedText();
- updateCaretPosition();
- restructLines();
- }
- String UITextInput::getSelectionText() {
- String totalText = L"";
- if(selectionTop == selectionBottom) {
- totalText = lines[selectionTop]->getText().substr(selectionL, selectionR-selectionL);
- return totalText;
- } else {
- totalText += lines[selectionTop]->getText().substr(selectionL, lines[selectionTop]->getText().length()-selectionL);
- totalText += L"\n";
- }
-
- if(selectionBottom > selectionTop+1) {
- for(int i=selectionTop+1; i <= selectionBottom; i++) {
- totalText += lines[i]->getText();
- totalText += L"\n";
- }
- }
-
- totalText += lines[selectionBottom]->getText().substr(0, selectionL);
-
- return totalText;
- }
- UIScrollContainer *UITextInput::getScrollContainer() {
- return scrollContainer;
- }
- void UITextInput::saveUndoState() {
- UITextInputUndoState newState;
- newState.content = getText();
- newState.caretPosition = caretPosition;
- newState.lineOffset = lineOffset;
- newState.hasSelection = hasSelection;
- if(hasSelection) {
- newState.selectionLine = selectionLine;
- newState.selectionCaretPosition = selectionCaretPosition;
- }
- undoStates[undoStateIndex] = newState;
-
- // if we hit undo state capacity, shift the whole stack
- if(undoStateIndex == MAX_TEXTINPUT_UNDO_STATES-1) {
- for(int i=0; i < MAX_TEXTINPUT_UNDO_STATES-1; i++) {
- undoStates[i] = undoStates[i+1];
- }
- } else {
- undoStateIndex++;
- }
-
- maxRedoIndex = undoStateIndex;
- }
- void UITextInput::setUndoState(UITextInputUndoState state) {
- clearSelection();
- setText(state.content);
- currentLine = lines[state.lineOffset];
- caretPosition = state.caretPosition;
- lineOffset = state.lineOffset;
- updateCaretPosition();
-
- if(state.hasSelection) {
- setSelection(lineOffset, state.selectionLine, caretPosition, state.selectionCaretPosition);
- }
- }
- void UITextInput::Undo() {
- if(undoStateIndex > 0) {
- undoStateIndex--;
- setUndoState(undoStates[undoStateIndex]);
- }
- }
- void UITextInput::Redo() {
- if(undoStateIndex < MAX_TEXTINPUT_UNDO_STATES-1 && undoStateIndex < maxRedoIndex) {
- undoStateIndex++;
- setUndoState(undoStates[undoStateIndex]);
- }
- }
- void UITextInput::Cut() {
- saveUndoState();
- Copy();
- if(hasSelection) {
- deleteSelection();
- }
- }
- void UITextInput::Copy() {
- CoreServices::getInstance()->getCore()->copyStringToClipboard(getSelectionText());
- }
- void UITextInput::Paste() {
- saveUndoState();
- insertText(CoreServices::getInstance()->getCore()->getClipboardString());
- }
- void UITextInput::showLine(unsigned int lineNumber, bool top) {
- }
- void UITextInput::onKeyDown(PolyKEY key, wchar_t charCode) {
-
- if(!hasFocus)
- return;
-
- // Logger::log("UCHAR: %d\n", charCode);
-
- CoreInput *input = CoreServices::getInstance()->getCore()->getInput();
- if(key == KEY_a && (input->getKeyState(KEY_LSUPER) || input->getKeyState(KEY_RSUPER))) {
- selectAll();
- return;
- }
- if(key == KEY_c && (input->getKeyState(KEY_LSUPER) || input->getKeyState(KEY_RSUPER))) {
- Copy();
- return;
- }
- if(key == KEY_x && (input->getKeyState(KEY_LSUPER) || input->getKeyState(KEY_RSUPER))) {
- Cut();
- return;
- }
-
- if(key == KEY_z && (input->getKeyState(KEY_LSUPER) || input->getKeyState(KEY_RSUPER))) {
- Undo();
- return;
- }
- if(key == KEY_z && (input->getKeyState(KEY_LSUPER) || input->getKeyState(KEY_RSUPER)) && (input->getKeyState(KEY_LSHIFT) || input->getKeyState(KEY_RSHIFT))) {
- Redo();
- return;
- }
- if(key == KEY_y && (input->getKeyState(KEY_LSUPER) || input->getKeyState(KEY_RSUPER))) {
- Redo();
- return;
- }
- if(key == KEY_v && (input->getKeyState(KEY_LSUPER) || input->getKeyState(KEY_RSUPER))) {
- Paste();
- return;
- }
-
-
- if(key == KEY_LEFT) {
- if(input->getKeyState(KEY_LSUPER) || input->getKeyState(KEY_RSUPER)) {
- if(input->getKeyState(KEY_LSHIFT) || input->getKeyState(KEY_RSHIFT)) {
- if(hasSelection) {
- setSelection(this->lineOffset, selectionLine, this->caretPosition, 0);
- } else {
- setSelection(this->lineOffset, this->lineOffset, this->caretPosition, 0);
- }
- } else {
- caretPosition = 0;
- clearSelection();
- updateCaretPosition();
- }
- } else if (input->getKeyState(KEY_LALT) || input->getKeyState(KEY_RALT)) {
- if(input->getKeyState(KEY_LSHIFT) || input->getKeyState(KEY_RSHIFT)) {
- if(hasSelection) {
- setSelection(this->lineOffset, selectionLine, this->caretPosition, caretSkipWordBack(selectionLine, selectionCaretPosition));
- } else {
- setSelection(this->lineOffset, this->lineOffset, this->caretPosition, caretSkipWordBack(this->lineOffset, caretPosition));
- }
- } else {
- caretPosition = caretSkipWordBack(this->lineOffset,caretPosition);
- clearSelection();
- updateCaretPosition();
- }
- } else {
- if(caretPosition > 0) {
- if(input->getKeyState(KEY_LSHIFT) || input->getKeyState(KEY_RSHIFT)) {
- if(hasSelection) {
- if(selectionCaretPosition > 0)
- setSelection(this->lineOffset, selectionLine, this->caretPosition, selectionCaretPosition-1);
- } else {
- setSelection(this->lineOffset, this->lineOffset, this->caretPosition, caretPosition-1);
- }
- } else {
- caretPosition--;
- clearSelection();
- updateCaretPosition();
- }
- }
- }
- return;
- }
-
- if(key == KEY_RIGHT) {
- if(caretPosition < currentLine->getText().length()) {
- if(input->getKeyState(KEY_LSUPER) || input->getKeyState(KEY_RSUPER)) {
- if(input->getKeyState(KEY_LSHIFT) || input->getKeyState(KEY_RSHIFT)) {
- if(hasSelection) {
- setSelection(this->lineOffset, selectionLine, this->caretPosition, lines[selectionLine]->getText().length());
- } else {
- setSelection(this->lineOffset, this->lineOffset, this->caretPosition, currentLine->getText().length());
- }
- } else {
- caretPosition = currentLine->getText().length();
- clearSelection();
- }
- } else if (input->getKeyState(KEY_LALT) || input->getKeyState(KEY_RALT)) {
- if(input->getKeyState(KEY_LSHIFT) || input->getKeyState(KEY_RSHIFT)) {
- if(hasSelection) {
- setSelection(this->lineOffset, selectionLine, this->caretPosition, caretSkipWordForward(selectionLine, selectionCaretPosition));
- } else {
- setSelection(this->lineOffset, this->lineOffset, this->caretPosition, caretSkipWordForward(this->lineOffset, caretPosition));
- }
- } else {
- caretPosition = caretSkipWordForward(this->lineOffset,caretPosition);
- clearSelection();
- }
- } else {
- if(input->getKeyState(KEY_LSHIFT) || input->getKeyState(KEY_RSHIFT)) {
- if(hasSelection) {
- setSelection(this->lineOffset, selectionLine, this->caretPosition, selectionCaretPosition+1);
- } else {
- setSelection(this->lineOffset, this->lineOffset, this->caretPosition, caretPosition+1);
- }
- } else {
- caretPosition++;
- clearSelection();
- }
- }
- updateCaretPosition();
- }
- return;
- }
-
- if(key == KEY_PAGEUP) {
- if(multiLine) {
- scrollContainer->scrollVertical(-(scrollContainer->getHeight())/(scrollContainer->getContentSize().y));
-
- }
- return;
- }
- if(key == KEY_PAGEDOWN) {
- if(multiLine) {
- scrollContainer->scrollVertical((scrollContainer->getHeight())/(scrollContainer->getContentSize().y));
-
- }
- return;
- }
-
- if(key == KEY_UP) {
- if(multiLine) {
- if(input->getKeyState(KEY_LSHIFT) || input->getKeyState(KEY_RSHIFT)) {
- if(hasSelection) {
- if(selectionLine > 0)
- setSelection(this->lineOffset, selectionLine-1, this->caretPosition, selectionCaretPosition);
- } else {
- if(this->lineOffset > 0)
- setSelection(this->lineOffset, this->lineOffset-1, this->caretPosition, caretPosition);
- }
- } else {
- clearSelection();
- if(lineOffset > 0) {
- lineOffset--;
- selectLineFromOffset();
- updateCaretPosition();
- }
- }
- }
- blinkerRect->visible = true;
- return;
- }
-
- if(key == KEY_DOWN) {
- if(multiLine) {
- if(input->getKeyState(KEY_LSHIFT) || input->getKeyState(KEY_RSHIFT)) {
- if(hasSelection) {
- if(selectionLine < lines.size()-1)
- setSelection(this->lineOffset, selectionLine+1, this->caretPosition, selectionCaretPosition);
- } else {
- if(this->lineOffset < lines.size()-1)
- setSelection(this->lineOffset, this->lineOffset+1, this->caretPosition, caretPosition);
- }
- } else {
- clearSelection();
- if(lineOffset < lines.size()-1) {
- lineOffset++;
- selectLineFromOffset();
- updateCaretPosition();
- }
- }
- }
- blinkerRect->visible = true;
- return;
- }
-
-
- if(key == KEY_RETURN) {
- if(multiLine) {
- saveUndoState();
- if(hasSelection) {
- deleteSelection();
- }
- insertLine(true);
- updateCaretPosition();
- } else {
- dispatchEvent(new Event(), Event::COMPLETE_EVENT);
- }
- return;
- }
-
- String ctext = currentLine->getText();
-
-
- // if(1) {
- if((charCode > 31 && charCode < 127) || charCode > 127) {
- if(!isNumberOnly || (isNumberOnly && (charCode > 47 && charCode < 58))) {
- saveUndoState();
- if(hasSelection)
- deleteSelection();
- ctext = currentLine->getText();
- String text2 = ctext.substr(caretPosition, ctext.length()-caretPosition);
- ctext = ctext.substr(0,caretPosition);
- ctext += charCode + text2;
- caretPosition++;
- }
- }
-
- if(key == KEY_TAB && multiLine) {
- saveUndoState();
- if(hasSelection)
- deleteSelection();
- ctext = currentLine->getText();
- String text2 = ctext.substr(caretPosition, ctext.length()-caretPosition);
- ctext = ctext.substr(0,caretPosition);
- ctext += (wchar_t)'\t' + text2;
- caretPosition++;
- }
-
- if(key == KEY_BACKSPACE) {
- if(hasSelection) {
- saveUndoState();
- deleteSelection();
- return;
- } else {
- ctext = currentLine->getText();
- if(caretPosition > 0) {
- saveUndoState();
- if(ctext.length() > 0) {
- String text2 = ctext.substr(caretPosition, ctext.length()-caretPosition);
- ctext = ctext.substr(0,caretPosition-1);
- ctext += text2;
- caretPosition--;
- }
- } else {
- if(lineOffset > 0) {
- saveUndoState();
- ScreenLabel *lineToRemove = currentLine;
- lineOffset--;
- selectLineFromOffset();
- caretPosition = currentLine->getText().length();
- updateCaretPosition();
- currentLine->setText(currentLine->getText() + ctext);
- removeLine(lineToRemove);
- return;
- }
- }
- }
- }
-
- currentLine->setText(ctext);
- changedText();
- updateCaretPosition();
- }
- void UITextInput::Update() {
- if(hasSelection) {
- blinkerRect->visible = false;
- }
- blinkerRect->setPosition(caretImagePosition,currentLine->getPosition2D().y);
- if(hasFocus) {
- // inputRect->setStrokeColor(1.0f, 1.0f, 1.0f, 0.25f);
- } else {
- blinkerRect->visible = false;
- // inputRect->setStrokeColor(1.0f, 1.0f, 1.0f, 0.1f);
- }
-
- for(int i=0; i < linesToDelete.size(); i++) {
- delete linesToDelete[i];
- }
- linesToDelete.clear();
- }
- UITextInput::~UITextInput() {
- }
-
- void UITextInput::handleEvent(Event *event) {
- if(event->getDispatcher() == inputRect) {
- switch(event->getEventCode()) {
- case InputEvent::EVENT_MOUSEDOWN:
- if(parentEntity) {
- ((ScreenEntity*)parentEntity)->focusChild(this);
- } else {
- hasFocus = true;
- }
- setCaretToMouse(((InputEvent*)event)->mousePosition.x, ((InputEvent*)event)->mousePosition.y - linesContainer->getPosition().y);
- draggingSelection = true;
- break;
- case InputEvent::EVENT_MOUSEUP:
- draggingSelection = false;
- break;
- case InputEvent::EVENT_DOUBLECLICK:
- selectWordAtCaret();
- break;
- case InputEvent::EVENT_MOUSEMOVE:
- CoreServices::getInstance()->getCore()->setCursor(CURSOR_TEXT);
- if(draggingSelection) {
- dragSelectionTo(((InputEvent*)event)->mousePosition.x, ((InputEvent*)event)->mousePosition.y - linesContainer->getPosition().y);
- }
- break;
- case InputEvent::EVENT_MOUSEOVER:
- CoreServices::getInstance()->getCore()->setCursor(CURSOR_TEXT);
- break;
- case InputEvent::EVENT_MOUSEOUT:
- CoreServices::getInstance()->getCore()->setCursor(CURSOR_ARROW);
- break;
- }
- }
-
- if(event->getDispatcher() == blinkTimer) {
- if(hasSelection || draggingSelection) {
- blinkerRect->visible = false;
- } else {
- if(hasFocus)
- blinkerRect->visible = !blinkerRect->visible;
- else
- blinkerRect->visible = false;
- }
- }
-
- }
|