| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- /*
- 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 "PolyUIWindow.h"
- #include "PolyConfig.h"
- #include "PolyInputEvent.h"
- #include "PolyLabel.h"
- #include "PolyCoreServices.h"
- using namespace Polycode;
- UIWindow::UIWindow(String windowName, Number width, Number height) : ScreenEntity(), windowTween(NULL) {
- closeOnEscape = false;
-
- snapToPixels = true;
-
- Config *conf = CoreServices::getInstance()->getConfig();
-
- String fontName = conf->getStringValue("Polycode", "uiWindowTitleFont");
- int fontSize = conf->getNumericValue("Polycode", "uiWindowTitleFontSize");
-
- Number st = conf->getNumericValue("Polycode", "uiWindowSkinT");
- Number sr = conf->getNumericValue("Polycode", "uiWindowSkinR");
- Number sb = conf->getNumericValue("Polycode", "uiWindowSkinB");
- Number sl = conf->getNumericValue("Polycode", "uiWindowSkinL");
-
- topPadding = st;
-
- padding = conf->getNumericValue("Polycode", "uiWindowSkinPadding");
-
- width = width+(padding*2.0);
- height = height+topPadding;
-
- windowRect = new UIBox(conf->getStringValue("Polycode", "uiWindowSkin"),
- st,sr,sb,sl,
- width, height);
-
- addChild(windowRect);
-
- Number titleBarHeight = conf->getNumericValue("Polycode", "uiWindowTitleBarHeight");
- Number titleBarOffset = conf->getNumericValue("Polycode", "uiWindowTitleBarOffset");
-
- titlebarRect = new ScreenShape(ScreenShape::SHAPE_RECT, width, titleBarHeight);
- titlebarRect->setPosition(0, titleBarOffset);
- titlebarRect->setColor(0,0,0,0);
- titlebarRect->setPositionMode(ScreenEntity::POSITION_TOPLEFT);
- titlebarRect->processInputEvents = true;
- addChild(titlebarRect);
-
- titleLabel = new ScreenLabel(windowName, fontSize, fontName, Label::ANTIALIAS_FULL);
- titleLabel->setPosition(conf->getNumericValue("Polycode", "uiWindowTitleX"),conf->getNumericValue("Polycode", "uiWindowTitleY"));
- addChild(titleLabel);
- titleLabel->color.setColorHex(strtol(conf->getStringValue("Polycode", "uiWindowFontColor").c_str(), 0, 16));
-
- closeBtn = new UIImageButton(conf->getStringValue("Polycode", "uiWindowCloseIcon"));
- addChild(closeBtn);
- closeIconX = conf->getNumericValue("Polycode", "uiCloseIconX");
- closeIconY = conf->getNumericValue("Polycode", "uiCloseIconY");
-
- closeBtn->setPosition(width-closeBtn->getWidth()-closeIconX, closeIconY);
-
- titlebarRect->addEventListener(this, InputEvent::EVENT_MOUSEUP);
- titlebarRect->addEventListener(this, InputEvent::EVENT_MOUSEUP_OUTSIDE);
- titlebarRect->addEventListener(this, InputEvent::EVENT_MOUSEDOWN);
- closeBtn->addEventListener(this, UIEvent::CLICK_EVENT);
-
- this->width = width;
- this->height = height;
- setHitbox(width, height);
-
- focusable = true;
- blockMouseInput = true;
-
- processInputEvents = true;
- }
- void UIWindow::setWindowCaption(String caption) {
- titleLabel->setText(caption);
- }
- void UIWindow::setWindowSize(Number w, Number h) {
- w = w+(padding*2.0);
- h = h+topPadding;
- windowRect->resizeBox(w, h);
- setWidth(w);
- setHeight(h);
- closeBtn->setPosition(width-closeBtn->getWidth()-closeIconX, closeIconY);
- matrixDirty = true;
- }
- UIWindow::~UIWindow() {
- delete windowTween;
- delete windowRect;
- delete titlebarRect;
- delete titleLabel;
- delete closeBtn;
- }
- void UIWindow::onKeyDown(PolyKEY key, wchar_t charCode) {
- if(key == KEY_TAB) {
- if(hasFocus) {
- focusNextChild();
- }
- }
-
- if(key == KEY_ESCAPE && closeOnEscape) {
- onClose();
- dispatchEvent(new UIEvent(), UIEvent::CLOSE_EVENT);
- }
- }
- void UIWindow::onLoseFocus() {
- /*
- if(focusedChild) {
- focusedChild->hasFocus = false;
- focusedChild->onLoseFocus();
- }
- */
- }
- void UIWindow::onMouseDown(Number x, Number y) {
- if(hasFocus)
- return;
- hasFocus = true;
- dispatchEvent(new ScreenEvent(), ScreenEvent::ENTITY_MOVE_TOP);
- for(int i=0; i < children.size(); i++) {
- if(((ScreenEntity*)children[i])->isFocusable()) {
- focusChild(((ScreenEntity*)children[i]));
- return;
- }
- }
- }
- void UIWindow::showWindow() {
- if (windowTween)
- delete windowTween;
- enabled = true;
- visible = true;
- tweenClosing = false;
- windowTween = new Tween(&color.a, Tween::EASE_IN_QUAD, 0.0f, 1.0f, 0.01f, false, true);
- windowTween->addEventListener(this, Event::COMPLETE_EVENT);
- }
- void UIWindow::hideWindow() {
- if (windowTween)
- delete windowTween;
- tweenClosing = true;
- windowTween = new Tween(&color.a, Tween::EASE_IN_QUAD, 1.0f, 0.0f, 0.01f, false, true);
- windowTween->addEventListener(this, Event::COMPLETE_EVENT);
- }
- void UIWindow::handleEvent(Event *event) {
- if(event->getDispatcher() == titlebarRect) {
- InputEvent *inputEvent = (InputEvent*)event;
- switch(event->getEventCode()) {
- case InputEvent::EVENT_MOUSEUP:
- case InputEvent::EVENT_MOUSEUP_OUTSIDE:
- stopDrag();
- break;
- case InputEvent::EVENT_MOUSEDOWN:
- startDrag(inputEvent->mousePosition.x,inputEvent->mousePosition.y);
- break;
- }
- }
- if(event->getDispatcher() == closeBtn) {
- onClose();
- dispatchEvent(new UIEvent(), UIEvent::CLOSE_EVENT);
- }
- if(event->getDispatcher() == windowTween) {
- if (tweenClosing) {
- visible = false;
- enabled = false;
- }
-
- windowTween = NULL;
- }
- }
|