| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- /*
- * This source file is part of libRocket, the HTML/CSS Interface Middleware
- *
- * For the latest information, see http://www.librocket.com
- *
- * Copyright (c) 2008-2010 CodePoint Ltd, Shift Technology Ltd
- *
- * 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/Rocket/Controls/ElementFormControlTextArea.h"
- #include "../../Include/Rocket/Core/Math.h"
- #include "../../Include/Rocket/Core/ElementUtilities.h"
- #include "../../Include/Rocket/Core/ElementText.h"
- #include "WidgetTextInputMultiLine.h"
- namespace Rocket {
- namespace Controls {
- // Constructs a new ElementFormControlTextArea.
- ElementFormControlTextArea::ElementFormControlTextArea(const Rocket::Core::String& tag) : ElementFormControl(tag)
- {
- widget = new WidgetTextInputMultiLine(this);
- SetProperty("overflow", "auto");
- SetProperty("white-space", "pre-wrap");
- }
- ElementFormControlTextArea::~ElementFormControlTextArea()
- {
- delete widget;
- }
- // Returns a string representation of the current value of the form control.
- Rocket::Core::String ElementFormControlTextArea::GetValue() const
- {
- return GetAttribute< Rocket::Core::String >("value", "");
- }
- // Sets the current value of the form control.
- void ElementFormControlTextArea::SetValue(const Rocket::Core::String& value)
- {
- SetAttribute("value", value);
- }
- // Sets the number of characters visible across the text area. Note that this will only be precise when using a
- // fixed-width font.
- void ElementFormControlTextArea::SetNumColumns(int num_columns)
- {
- SetAttribute< int >("cols", Rocket::Core::Math::Max(1, num_columns));
- }
- // Returns the approximate number of characters visible at once.
- int ElementFormControlTextArea::GetNumColumns() const
- {
- return GetAttribute< int >("cols", 20);
- }
- // Sets the number of visible lines of text in the text area.
- void ElementFormControlTextArea::SetNumRows(int num_rows)
- {
- SetAttribute< int >("rows", Rocket::Core::Math::Max(1, num_rows));
- }
- // Returns the number of visible lines of text in the text area.
- int ElementFormControlTextArea::GetNumRows() const
- {
- return GetAttribute< int >("rows", 2);
- }
- // Sets the maximum length (in characters) of this text field.
- void ElementFormControlTextArea::SetMaxLength(int max_length)
- {
- SetAttribute< int >("maxlength", max_length);
- }
- // Returns the maximum length (in characters) of this text field.
- int ElementFormControlTextArea::GetMaxLength() const
- {
- return GetAttribute< int >("maxlength", -1);
- }
- // Enables or disables word-wrapping in the text area.
- void ElementFormControlTextArea::SetWordWrap(bool word_wrap)
- {
- if (word_wrap != GetWordWrap())
- {
- if (word_wrap)
- RemoveAttribute("wrap");
- else
- SetAttribute("wrap", "nowrap");
- }
- }
- // Returns the state of word-wrapping in the text area.
- bool ElementFormControlTextArea::GetWordWrap()
- {
- Rocket::Core::String attribute = GetAttribute< Rocket::Core::String >("wrap", "");
- return attribute != "nowrap";
- }
- // Returns the control's inherent size, based on the length of the input field and the current font size.
- bool ElementFormControlTextArea::GetIntrinsicDimensions(Rocket::Core::Vector2f& dimensions)
- {
- dimensions.x = (float) (GetNumColumns() * Core::ElementUtilities::GetStringWidth(this, L"m"));
- dimensions.y = (float)GetNumRows() * GetLineHeight();
- return true;
- }
- // Updates the control's widget.
- void ElementFormControlTextArea::OnUpdate()
- {
- widget->OnUpdate();
- }
- // Renders the control's widget.
- void ElementFormControlTextArea::OnRender()
- {
- widget->OnRender();
- }
- // Formats the element.
- void ElementFormControlTextArea::OnLayout()
- {
- widget->OnLayout();
- }
- // Called when attributes on the element are changed.
- void ElementFormControlTextArea::OnAttributeChange(const Core::AttributeNameList& changed_attributes)
- {
- ElementFormControl::OnAttributeChange(changed_attributes);
- if (changed_attributes.find("wrap") != changed_attributes.end())
- {
- if (GetWordWrap())
- SetProperty("white-space", "pre-wrap");
- else
- SetProperty("white-space", "pre");
- }
- if (changed_attributes.find("rows") != changed_attributes.end() ||
- changed_attributes.find("cols") != changed_attributes.end())
- DirtyLayout();
- if (changed_attributes.find("maxlength") != changed_attributes.end())
- widget->SetMaxLength(GetMaxLength());
- if (changed_attributes.find("value") != changed_attributes.end())
- widget->SetValue(GetValue());
- }
- // Called when properties on the control are changed.
- void ElementFormControlTextArea::OnPropertyChange(const Core::PropertyNameList& changed_properties)
- {
- ElementFormControl::OnPropertyChange(changed_properties);
- if (changed_properties.find("color") != changed_properties.end() ||
- changed_properties.find("background-color") != changed_properties.end())
- widget->UpdateSelectionColours();
- }
- // Returns the text content of the element.
- void ElementFormControlTextArea::GetInnerRML(Rocket::Core::String& content) const
- {
- content = GetValue();
- }
- }
- }
|