// // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved // // 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 #include #include #include #include "UIEvents.h" #include "UI.h" #include "UIButton.h" using namespace tb; namespace Atomic { UIButton::UIButton(Context* context, bool createWidget) : UIWidget(context, false), emulationButton_(-1), urlEnabled_(true) { if (createWidget) { widget_ = new TBButton(); widget_->SetDelegate(this); GetSubsystem()->WrapWidget(this, widget_); } } UIButton::~UIButton() { } void UIButton::SetSqueezable(bool value) { if (!widget_) return; ((TBButton*)widget_)->SetSqueezable(value); } void UIButton::SetToggleMode(bool toggle) { if (!widget_) return; ((TBButton*)widget_)->SetToggleMode(toggle); } bool UIButton::GetToggleMode() const { if (!widget_) return false; return ((TBButton*)widget_)->GetToggleMode(); } void UIButton::SetEmulationButton(int emulationButton) { emulationButton_ = emulationButton; } bool UIButton::OnEvent(const tb::TBWidgetEvent &ev) { if (ev.type == EVENT_TYPE_CLICK) { if (urlEnabled_) { // First see if we have a url specified, if not and the button uses the TBButton.link skin try text String url = GetURL(); String skinname = widget_->GetSkinBgElement() ? widget_->GetSkinBgElement()->name.CStr() : String::EMPTY; if (!url.Length() && skinname == "TBButton.link") { String text = GetText(); if (text.StartsWith("http://") || text.StartsWith("https://") || text.StartsWith("file://")) { url = text; } } if (url.Length()) { FileSystem* fileSystem = GetSubsystem(); fileSystem->SystemOpen(url); } } } if (ev.type == EVENT_TYPE_POINTER_DOWN && emulationButton_ >= 0) { GetSubsystem()->SimulateButtonDown(emulationButton_); } if (ev.type == EVENT_TYPE_POINTER_UP && emulationButton_ >= 0) { GetSubsystem()->SimulateButtonUp(emulationButton_); } return UIWidget::OnEvent(ev); } /// Set the URL which is opened when this button is clicked, this overrides the text attr void UIButton::SetURL (const String& url) { if (!widget_) return; ((TBButton*)widget_)->SetURL(url.CString()); } /// Get the URL which is opened when this button is clicked String UIButton::GetURL() { if (!widget_) return String::EMPTY; return ((TBButton*)widget_)->GetURL().CStr(); } }