| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722 |
- /*
- 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 "PolycodeTextEditor.h"
- extern SyntaxHighlightTheme *globalSyntaxTheme;
- extern UIGlobalMenu *globalMenu;
- void SyntaxHighlightTheme::loadFromFile(String themeName) {
- String filePath = "SyntaxThemes/"+themeName+".xml";
-
- this->name =themeName;
-
- Object themeObject;
- if(themeObject.loadFromXML(filePath)) {
- ObjectEntry *hintingEntry = themeObject.root["useStrongHinting"];
- if(hintingEntry) {
- useStrongHinting = hintingEntry->boolVal;
- }
-
- ObjectEntry *bgColorEntry = themeObject.root["bgColor"];
- if(bgColorEntry) {
- ObjectEntry *r = (*bgColorEntry)["r"];
- ObjectEntry *g = (*bgColorEntry)["g"];
- ObjectEntry *b = (*bgColorEntry)["b"];
- if(r && g && b) {
- bgColor.setColorRGB(r->intVal, g->intVal, b->intVal);
- }
- }
- ObjectEntry *cursorColorEntry = themeObject.root["cursorColor"];
- if(cursorColorEntry) {
- ObjectEntry *r = (*cursorColorEntry)["r"];
- ObjectEntry *g = (*cursorColorEntry)["g"];
- ObjectEntry *b = (*cursorColorEntry)["b"];
- if(r && g && b) {
- cursorColor.setColorRGB(r->intVal, g->intVal, b->intVal);
- }
- }
- ObjectEntry *selectionColorEntry = themeObject.root["selectionColor"];
- if(selectionColorEntry) {
- ObjectEntry *r = (*selectionColorEntry)["r"];
- ObjectEntry *g = (*selectionColorEntry)["g"];
- ObjectEntry *b = (*selectionColorEntry)["b"];
- if(r && g && b) {
- selectionColor.setColorRGB(r->intVal, g->intVal, b->intVal);
- }
- }
-
- ObjectEntry *lineNumberColorEntry = themeObject.root["lineNumberColor"];
- if(lineNumberColorEntry) {
- ObjectEntry *r = (*lineNumberColorEntry)["r"];
- ObjectEntry *g = (*lineNumberColorEntry)["g"];
- ObjectEntry *b = (*lineNumberColorEntry)["b"];
- if(r && g && b) {
- lineNumberColor.setColorRGB(r->intVal, g->intVal, b->intVal);
- }
- }
-
- ObjectEntry *textColors = themeObject.root["textColors"];
- if(textColors) {
- for(int i=0; i < textColors->length && i < 8; i++) {
- ObjectEntry *colorEntry = (*textColors)[i];
- if(colorEntry) {
- ObjectEntry *r = (*colorEntry)["r"];
- ObjectEntry *g = (*colorEntry)["g"];
- ObjectEntry *b = (*colorEntry)["b"];
- if(r && g && b) {
- colors[i].setColorRGB(r->intVal, g->intVal, b->intVal);
- }
- }
- }
- }
- }
- }
- PolycodeSyntaxHighlighter::PolycodeSyntaxHighlighter(String extension) {
-
- if(extension == "lua") {
- mode = MODE_LUA;
- std::vector<String>separators_s = String("[ * [ ] { } ; . , : # ( ) \t \n = + - / \\ ' \"").split(" ");
- separators_s.push_back(" ");
-
- for(int i=0; i < separators_s.size(); i++) {
- separators.push_back(separators_s[i][0]);
- }
-
- keywords = String("for cast safe_cast and require true false class self break do end else elseif function if local nil not or repeat return then until while").split(" ");
-
- } else if(extension == "vert" || extension == "frag") {
- mode = MODE_GLSL;
-
- std::vector<String>separators_s = String("[ * [ ] { } ; . , : ( ) \t \n = + - / \\ ' \"").split(" ");
- separators_s.push_back(" ");
-
- for(int i=0; i < separators_s.size(); i++) {
- separators.push_back(separators_s[i][0]);
- }
-
- keywords = String("for cast and true falsebreak do end else if notreturn then until while uniform varying sampler2D sampler3D vec2 vec3 vec4 float in inout void mat2 mat3 mat4 bool int #define #ifdef #elif #else #endif").split(" ");
-
- }
-
- }
- PolycodeSyntaxHighlighter::~PolycodeSyntaxHighlighter() {
- }
- bool PolycodeSyntaxHighlighter::contains(String part, std::vector<String> *list) {
- for(int i=0; i < list->size(); i++) {
- if((*list)[i] == part)
- return true;
- }
- return false;
- }
- bool PolycodeSyntaxHighlighter::contains_char(char part, std::vector<char> *list) {
- for(int i=0; i < list->size(); i++) {
- if((*list)[i] == part)
- return true;
- }
- return false;
- }
- std::vector<SyntaxHighlightToken> PolycodeSyntaxHighlighter::parseText(String text, SyntaxHighlightToken overrideToken) {
- if(mode == MODE_LUA) {
- return parseLua(text, overrideToken);
- } else {
- return parseGLSL(text, overrideToken);
- }
- }
-
- std::vector<SyntaxHighlightToken> PolycodeSyntaxHighlighter::parseGLSL(String text, SyntaxHighlightToken overrideToken) {
- std::vector<SyntaxHighlightToken> tokens;
-
- text = text+"\n";
-
- const int MODE_GENERAL = 0;
- const int MODE_COMMENT = 1;
- const int MODE_STRING = 2;
- const int MODE_METHOD = 3;
- const int MODE_KEYWORD = 4;
- const int MODE_NUMBER = 5;
- const int MODE_MEMBER = 6;
-
- int mode = MODE_GENERAL;
- bool isComment = false;
-
- if(text.find_first_of("*/") != -1) {
- if(overrideToken.overrideType == SyntaxHighlightToken::TOKEN_TYPE_OVERRIDE_LINE || overrideToken.overrideType == SyntaxHighlightToken::TOKEN_TYPE_OVERRIDE_START ) {
- mode = MODE_COMMENT;
- }
- }
-
-
- String line = "";
-
- char lastSeparator = ' ';
-
- for(int i=0; i < text.length(); i++) {
- char ch = text[i];
- if(contains_char(ch, &separators)) {
- unsigned int type = mode;
- unsigned int ch_type = mode;
-
- if(ch == '\"' && mode != MODE_COMMENT)
- ch_type = MODE_STRING;
-
- if(mode != MODE_STRING && ch == '(' && mode != MODE_COMMENT) {
- type = MODE_METHOD;
- }
- if(mode != MODE_STRING && mode != MODE_COMMENT) {
- if(contains(line, &keywords)) {
- type = MODE_KEYWORD;
- }
- }
-
- if(mode != MODE_STRING && !isComment && mode != MODE_COMMENT) {
-
- if(line.isNumber()) {
- type = MODE_NUMBER;
- } else {
- if(lastSeparator == '.' && ch != '.' && ch != ':') {
- type = MODE_MEMBER;
- }
- }
- }
-
- if(isComment) {
- type = MODE_COMMENT;
- ch_type = MODE_COMMENT;
- }
-
- if(mode == MODE_COMMENT) {
- type = MODE_COMMENT;
- ch_type = MODE_COMMENT;
- }
-
-
- if(line != "")
- tokens.push_back(SyntaxHighlightToken(line, type));
- tokens.push_back(SyntaxHighlightToken(ch, ch_type));
- if(ch == '/' && lastSeparator == '/' && mode != MODE_STRING) {
- isComment = true;
- tokens[tokens.size()-1].type = MODE_COMMENT;
- tokens[tokens.size()-2].type = MODE_COMMENT;
- }
- if(ch == '*' && lastSeparator == '/' && mode != MODE_STRING) {
- tokens[tokens.size()-1].type = MODE_COMMENT;
- tokens[tokens.size()-2].type = MODE_COMMENT;
- mode = MODE_COMMENT;
- tokens[tokens.size()-1].overrideType = SyntaxHighlightToken::TOKEN_TYPE_OVERRIDE_START;
- }
-
- if(ch == '/' && lastSeparator == '*' && mode == MODE_COMMENT) {
- if(mode == MODE_COMMENT)
- mode = MODE_GENERAL;
- if(mode != MODE_STRING)
- tokens[tokens.size()-1].overrideType = SyntaxHighlightToken::TOKEN_TYPE_OVERRIDE_END;
-
- }
-
- if(ch == '\n' )
- isComment = false;
-
- if(ch == '\"' && mode != MODE_COMMENT) {
- if(mode == MODE_STRING) {
- mode = MODE_GENERAL;
- } else {
- mode = MODE_STRING;
- }
- }
-
- line = "";
- lastSeparator = ch;
- } else {
- line.append(ch);
- }
- }
-
- for(int i=0; i < tokens.size(); i++) {
- switch(tokens[i].type) {
- case MODE_STRING:
- tokens[i].color = globalSyntaxTheme->colors[4];
- break;
- case MODE_COMMENT:
- tokens[i].color = globalSyntaxTheme->colors[1];
- break;
- case MODE_METHOD:
- tokens[i].color = globalSyntaxTheme->colors[3];
- break;
- case MODE_KEYWORD:
- tokens[i].color = globalSyntaxTheme->colors[2];
- break;
- case MODE_NUMBER:
- tokens[i].color = globalSyntaxTheme->colors[6];
- break;
- case MODE_MEMBER:
- tokens[i].color = globalSyntaxTheme->colors[5];
- break;
- default:
- tokens[i].color = globalSyntaxTheme->colors[0];
- break;
- }
- }
-
- return tokens;
- }
-
- std::vector<SyntaxHighlightToken> PolycodeSyntaxHighlighter::parseLua(String text, SyntaxHighlightToken overrideToken) {
- std::vector<SyntaxHighlightToken> tokens;
-
- text = text+"\n";
-
- const int MODE_GENERAL = 0;
- const int MODE_COMMENT = 1;
- const int MODE_STRING = 2;
- const int MODE_METHOD = 3;
- const int MODE_KEYWORD = 4;
- const int MODE_NUMBER = 5;
- const int MODE_MEMBER = 6;
-
- int mode = MODE_GENERAL;
- bool isComment = false;
-
- if(text.find_first_of("]]") != -1) {
- if(overrideToken.overrideType == SyntaxHighlightToken::TOKEN_TYPE_OVERRIDE_LINE || overrideToken.overrideType == SyntaxHighlightToken::TOKEN_TYPE_OVERRIDE_START ) {
- mode = MODE_COMMENT;
- }
- }
-
- String line = "";
-
- char lastSeparator = ' ';
- for(int i=0; i < text.length(); i++) {
- char ch = text[i];
- if(contains_char(ch, &separators)) {
- unsigned int type = mode;
- unsigned int ch_type = mode;
-
- if(ch == '\"' && mode != MODE_COMMENT)
- ch_type = MODE_STRING;
-
- if(mode != MODE_STRING && ch == '(' && mode != MODE_COMMENT) {
- type = MODE_METHOD;
- }
- if(mode != MODE_STRING && mode != MODE_COMMENT) {
- if(contains(line, &keywords)) {
- type = MODE_KEYWORD;
- }
- }
-
- if(mode != MODE_STRING && !isComment && mode != MODE_COMMENT) {
-
- if(line.isNumber()) {
- type = MODE_NUMBER;
- } else {
- if(lastSeparator == '.' && ch != '.' && ch != ':') {
- type = MODE_MEMBER;
- }
- }
- }
-
- if(isComment) {
- type = MODE_COMMENT;
- ch_type = MODE_COMMENT;
- }
-
- if(mode == MODE_COMMENT) {
- type = MODE_COMMENT;
- ch_type = MODE_COMMENT;
- }
-
-
- if(line != "")
- tokens.push_back(SyntaxHighlightToken(line, type));
- tokens.push_back(SyntaxHighlightToken(ch, ch_type));
- if(ch == '-' && lastSeparator == '-' && mode != MODE_STRING) {
- isComment = true;
- tokens[tokens.size()-1].type = MODE_COMMENT;
- tokens[tokens.size()-2].type = MODE_COMMENT;
- }
- if(ch == '[' && lastSeparator == '[' && isComment && mode != MODE_STRING) {
- unsigned int old_mode = mode;
- mode = MODE_COMMENT;
- tokens[tokens.size()-1].overrideType = SyntaxHighlightToken::TOKEN_TYPE_OVERRIDE_START;
-
- // ugly hack for ---[[, which is not a block comment
- if(tokens.size() > 4) {
- if(tokens[tokens.size()-5].text == "-") {
- mode = old_mode;
- tokens[tokens.size()-1].overrideType = SyntaxHighlightToken::TOKEN_TYPE_NO_OVERRIDE;
- }
- }
- }
-
- if(ch == ']' && lastSeparator == ']') {
- if(mode == MODE_COMMENT)
- mode = MODE_GENERAL;
- if(mode != MODE_STRING)
- tokens[tokens.size()-1].overrideType = SyntaxHighlightToken::TOKEN_TYPE_OVERRIDE_END;
- }
-
- if(ch == '\n' ) {
- isComment = false;
- mode = MODE_GENERAL;
- }
-
- if(ch == '\"' && mode != MODE_COMMENT) {
- if(mode == MODE_STRING) {
- mode = MODE_GENERAL;
- } else {
- mode = MODE_STRING;
- }
- }
-
- line = "";
- lastSeparator = ch;
- } else {
- line.append(ch);
- }
- }
-
- for(int i=0; i < tokens.size(); i++) {
- switch(tokens[i].type) {
- case MODE_STRING:
- tokens[i].color = globalSyntaxTheme->colors[4];
- break;
- case MODE_COMMENT:
- tokens[i].color = globalSyntaxTheme->colors[1];
- break;
- case MODE_METHOD:
- tokens[i].color = globalSyntaxTheme->colors[3];
- break;
- case MODE_KEYWORD:
- tokens[i].color = globalSyntaxTheme->colors[2];
- break;
- case MODE_NUMBER:
- tokens[i].color = globalSyntaxTheme->colors[6];
- break;
- case MODE_MEMBER:
- tokens[i].color = globalSyntaxTheme->colors[5];
- break;
- default:
- tokens[i].color = globalSyntaxTheme->colors[0];
- break;
- }
- }
-
- return tokens;
- }
- PolycodeTextEditor::PolycodeTextEditor() : PolycodeEditor(true){
- firstTimeResize = true;
- editorType = "PolycodeTextEditor";
- }
- PolycodeTextEditor::~PolycodeTextEditor() {
- delete textInput;
- delete findBar;
- if(syntaxHighligher)
- delete syntaxHighligher;
- }
- bool PolycodeTextEditor::openFile(OSFileEntry filePath) {
-
-
- isLoading = true;
-
- textInput = new UITextInput(true, 100, 100);
- addChild(textInput);
- textInput->setBackgroundColor(globalSyntaxTheme->bgColor);
- textInput->setCursorColor(globalSyntaxTheme->cursorColor);
- textInput->setSelectionColor(globalSyntaxTheme->selectionColor);
- textInput->useStrongHinting = globalSyntaxTheme->useStrongHinting;
- textInput->setLineNumberColor(globalSyntaxTheme->lineNumberColor);
- textInput->enableLineNumbers(true);
-
- textInput->addEventListener(this, UIEvent::CHANGE_EVENT);
-
- findBar = new FindBar();
- findBar->visible = false;
- addChild(findBar);
-
- findBar->findInput->addEventListener(this, Event::COMPLETE_EVENT);
- findBar->findInput->addEventListener(this, Event::CANCEL_EVENT);
- findBar->replaceInput->addEventListener(this, Event::CANCEL_EVENT);
- findBar->replaceInput->addEventListener(this, Event::COMPLETE_EVENT);
-
- findBar->closeButton->addEventListener(this, UIEvent::CLICK_EVENT);
- findBar->replaceAllButton->addEventListener(this, UIEvent::CLICK_EVENT);
- findBar->functionList->addEventListener(this, UIEvent::CHANGE_EVENT);
-
- syntaxHighligher = NULL;
-
- if(filePath.extension == "lua" || filePath.extension == "vert" || filePath.extension == "frag") {
- syntaxHighligher = new PolycodeSyntaxHighlighter(filePath.extension);
- textInput->setSyntaxHighlighter(syntaxHighligher);
- } else {
- textInput->setTextColor(globalSyntaxTheme->colors[0]);
- }
-
- Data *data = new Data();
- if(data->loadFromFile(filePath.fullPath)) {
- textInput->setText(data->getAsString(String::ENCODING_UTF8).replace("\r\n", "\n"));
- }
- delete data;
-
- PolycodeEditor::openFile(filePath);
-
- isLoading = false;
- return true;
- }
- ObjectEntry *PolycodeTextEditor::getEditorConfig() {
- ObjectEntry *configEntry = new ObjectEntry();
-
- configEntry->addChild("scroll_offset", textInput->getScrollContainer()->getVScrollBar()->getScrollValue());
-
- return configEntry;
- }
- void PolycodeTextEditor::applyEditorConfig(ObjectEntry *configEntry) {
- ObjectEntry *scrollEntry = (*configEntry)["scroll_offset"];
- if(scrollEntry) {
- textInput->getScrollContainer()->setScrollValue(0.0, scrollEntry->NumberVal);
- }
- }
- void PolycodeTextEditor::handleEvent(Event *event) {
- if(event->getDispatcher() == textInput && event->getEventType() == "UIEvent") {
- if(!isLoading) {
- lastFindString = "";
- setHasChanges(true);
- }
- }
- if(event->getDispatcher() == findBar->functionList) {
- if(event->getEventType() == "UIEvent" && event->getEventCode() == UIEvent::CHANGE_EVENT) {
- FindMatch *match = (FindMatch*)findBar->functionList->getSelectedItem()->data;
- textInput->showLine(match->lineNumber, true);
- }
- }
- if(event->getDispatcher() == findBar->replaceAllButton) {
- if(event->getEventType() == "UIEvent" && event->getEventCode() == UIEvent::CLICK_EVENT) {
- textInput->replaceAll(findBar->findInput->getText(), findBar->replaceInput->getText());
- }
- }
- if(event->getDispatcher() == findBar->closeButton) {
- if(event->getEventType() == "UIEvent" && event->getEventCode() == UIEvent::CLICK_EVENT) {
- hideFindBar();
- }
- }
- if(event->getDispatcher() == findBar->replaceInput) {
- if(event->getEventType() == "") {
-
- if(event->getEventCode() == Event::CANCEL_EVENT) {
- hideFindBar();
- }
-
- if(event->getEventCode() == Event::COMPLETE_EVENT) {
- textInput->findString(findBar->findInput->getText(), true, findBar->replaceInput->getText());
- }
-
- }
- }
-
-
- if(event->getDispatcher() == findBar->findInput) {
- if(event->getEventType() == "") {
-
- if(event->getEventCode() == Event::CANCEL_EVENT) {
- hideFindBar();
- }
-
- if(event->getEventCode() == Event::COMPLETE_EVENT) {
- if(findBar->findInput->getText() != "") {
- if(findBar->findInput->getText() != lastFindString) {
- lastFindString = findBar->findInput->getText();
- textInput->findString(lastFindString);
- } else {
- textInput->findNext();
- }
- }
- }
-
- }
- }
- PolycodeEditor::handleEvent(event);
- }
- void PolycodeTextEditor::showFindBar() {
- findBar->visible = true;
- findBar->focusChild(findBar->findInput);
- findBar->findInput->selectAll();
- lastFindString = "";
-
- for(int i=0; i < findBar->functionList->getNumItems(); i++) {
- FindMatch *match = (FindMatch*)findBar->functionList->getItemAtIndex(i)->data;
- findBar->functionList->getItemAtIndex(i)->data = NULL;
- delete match;
- }
-
- findBar->functionList->clearItems();
-
- std::vector<FindMatch> functionMatches = textInput->getFindMatches("function ");
- for(int i=0; i < functionMatches.size(); i++) {
- FindMatch *match = new FindMatch();
- (*match) = functionMatches[i];
- findBar->functionList->addComboItem(textInput->getLineText(functionMatches[i].lineNumber).replace("function ", ""), (void*) match);
- }
-
- Resize(editorSize.x, editorSize.y);
- }
- void PolycodeTextEditor::hideFindBar() {
- findBar->visible = false;
- focusChild(textInput);
- Resize(editorSize.x, editorSize.y);
- }
-
- void PolycodeTextEditor::highlightLine(unsigned int lineNumber) {
- int lineSize = textInput->getLineText(lineNumber-1).length();
- textInput->setSelection(lineNumber-1, lineNumber-1, 0, lineSize);
- textInput->showLine(lineNumber, false);
- }
- void PolycodeTextEditor::saveFile() {
- Data *data = new Data();
- data->setFromString(textInput->getText(), String::ENCODING_UTF8);
- data->saveToFile(filePath);
- delete data;
- setHasChanges(false);
- }
- void PolycodeTextEditor::Resize(int x, int y) {
- findBar->setBarWidth(x);
-
- if(findBar->visible) {
- textInput->Resize(x,y-findBar->getHeight());
- textInput->setPosition(0,findBar->getHeight());
- } else {
- textInput->Resize(x,y);
- textInput->setPosition(0,0);
- }
- if(firstTimeResize) {
- textInput->doMultilineResize();
- firstTimeResize = false;
- }
- PolycodeEditor::Resize(x,y);
- }
- FindBar::FindBar() : UIElement() {
- barBg = new UIRect(30,30);
- barBg->setAnchorPoint(-1.0, -1.0, 0.0);
- barBg->color.setColorHexFromString(CoreServices::getInstance()->getConfig()->getStringValue("Polycode", "uiHeaderBgColor"));
- addChild(barBg);
- setHeight(30);
-
- UILabel *findLabel = new UILabel("FIND", 18, "section");
- addChild(findLabel);
- findLabel->setColor(1.0, 1.0, 1.0, 0.6);
- findLabel->setPosition(10,3);
- UILabel *replaceLabel = new UILabel("REPLACE", 18, "section");
- addChild(replaceLabel);
- replaceLabel->setColor(1.0, 1.0, 1.0, 0.6);
- replaceLabel->setPosition(200,3);
-
- processInputEvents = true;
-
- findInput = new UITextInput(false, 120, 12);
- addChild(findInput);
- findInput->setPosition(60, 4);
- replaceInput = new UITextInput(false, 120, 12);
- addChild(replaceInput);
- replaceInput->setPosition(280, 4);
-
- replaceAllButton = new UIButton("Replace All", 100);
- addChild(replaceAllButton);
- replaceAllButton->setPosition(420, 3);
- UIImage *functionIcon = new UIImage("main/function_icon.png", 11, 17);
- addChild(functionIcon);
- functionIcon->setPosition(540, 6);
-
- functionList = new UIComboBox(globalMenu, 200);
- addChild(functionList);
- functionList->setPosition(560, 4);
-
- closeButton = new UIImageButton("main/barClose.png", 1.0, 17, 17);
- addChild(closeButton);
- }
- void FindBar::onKeyDown(PolyKEY key, wchar_t charCode) {
- if(key == KEY_TAB) {
- focusNextChild();
- }
-
- if(key == KEY_ESCAPE) {
-
- }
- }
- FindBar::~FindBar(){
- delete findInput;
- delete replaceInput;
- delete closeButton;
- delete replaceAllButton;
- delete barBg;
- }
- void FindBar::setBarWidth(int width) {
- barBg->Resize(width, 30);
- closeButton->setPosition(width - 30, 6);
- functionList->Resize(width-560-40, functionList->getHeight());
- }
|