| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- /*
- 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 "PolyUIImageButton.h"
- #include "PolyConfig.h"
- #include "PolyInputEvent.h"
- #include "PolyLabel.h"
- #include "PolyCoreServices.h"
- using namespace Polycode;
- UIImageButton::UIImageButton(String imageName, Number scale, Number width, Number height) : UIElement() {
- setAnchorPoint(-1.0, -1.0, 0.0);
-
- buttonImage = new UIImage(imageName);
- Number buttonWidth = buttonImage->getWidth() / scale;
- Number buttonHeight = buttonImage->getHeight() / scale;
-
- if(width != -1) {
- buttonWidth = width;
- }
- if(height != -1) {
- buttonHeight = height;
- }
-
- buttonImage->Resize(buttonWidth, buttonHeight);
- addChild(buttonImage);
- buttonImage->depthTest = false;
- buttonImage->snapToPixels = true;
-
- buttonImage->setAnchorPoint(-1.0, -1.0, 0.0);
-
- buttonRect = new UIRect(buttonImage->getWidth(),buttonImage->getHeight());
-
- buttonRect->setColor(1,1,1,1);
- buttonRect->visible = false;
-
- buttonRect->setAnchorPoint(-1.0, -1.0, 0.0);
- addChild(buttonRect);
-
- buttonRect->addEventListener(this, InputEvent::EVENT_MOUSEOVER);
- buttonRect->addEventListener(this, InputEvent::EVENT_MOUSEOUT);
- buttonRect->addEventListener(this, InputEvent::EVENT_MOUSEUP);
- buttonRect->addEventListener(this, InputEvent::EVENT_MOUSEDOWN);
- buttonRect->processInputEvents = true;
- pressedDown = false;
-
- setWidth(buttonRect->getWidth());
- setHeight(buttonRect->getHeight());
- }
- void UIImageButton::handleEvent(Event *event) {
- if(event->getDispatcher() == buttonRect) {
- switch(event->getEventCode()) {
- case InputEvent::EVENT_MOUSEOVER:
- this->setColor(0.7,0.7,0.7,1);
- break;
- case InputEvent::EVENT_MOUSEOUT:
- pressedDown = false;
- this->setColor(1,1,1,1);
- break;
- case InputEvent::EVENT_MOUSEUP:
- this->setColor(0.7,0.7,0.7,1);
- if(pressedDown) {
- dispatchEvent(new UIEvent(), UIEvent::CLICK_EVENT);
- }
- pressedDown = false;
- break;
- case InputEvent::EVENT_MOUSEDOWN:
- pressedDown = true;
- this->setColor(0.5,0.5,0.5,1);
- break;
- }
- }
- }
- UIImageButton::~UIImageButton() {
- if(!ownsChildren) {
- delete buttonImage;
- delete buttonRect;
- }
- }
|