123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- deferred class IUP_WIDGET_TITLE
- -- Commands to handle the attributes related with title.
- inherit
- IUP_WIDGET_INTERNALS
-
- feature {ANY}
- set_title (name: STRING)
- -- Element’s title. It is often used to modify some static text of
- -- the element (which cannot be changed by the user). Default: ""
- --
- -- The '\n' character usually is accepted for line change (except for
- -- menus).
- --
- -- The "&" character can be used to define a MNEMONIC, use "&&" to show
- -- the "&" character instead on defining a mnemonic.
- --
- -- If a mnemonic is defined then the character relative to it is
- -- underlined and a key is associated so that when pressed together with
- -- the Alt key activates the control.
- --
- -- In GTk, if you define a mnemonic using "&" and the string has an
- -- underscore, then make sure that the mnemonic comes before the
- -- underscore.
- --
- -- In GTK, if the MARKUP attribute is defined then the title string can
- -- contains pango markup commands. Works only if a mnemonic is NOT
- -- defined in the title. Not valid for menus.
- do
- iup_open.set_attribute(Current, "TITLE", name)
- end
- get_title: STRING
- -- Return the title of the element.
- do
- Result := iup_open.get_attribute(Current, "TITLE")
- end
- end
- -- The MIT License (MIT)
- -- Copyright (c) 2016, 2017, 2019 by German A. Arias
- -- 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.
|