Repeat Button
A Repeat Button in TouchGFX is a widget that is aware of touch events and can send a callback when the Repeat Button is pressed. The button activates its pressed action immediately, then after a given delay, then repeatedly after an interval. Each state, Pressed and Released, is associated with an image.
The Repeat Button can be replicated with the Flex Button. A Flex Button is a more configurable button that takes up a bit more RAM in exchange for flexibility.
Widget Group
The Repeat Button can be found in the Buttons widget group in TouchGFX Designer.
Properties
The properties for a Repeat Button in TouchGFX Designer.
Property Group | Property Descriptions |
---|---|
Name | Name of the widget. Name is the unique identifier used in TouchGFX Designer and code. |
Location | X and Y specify the top left corner of the widget relative to its parent. W and H specify the width and height of the widget. The size of a Repeat Button is determined by the size of the selected images. Lock specifies if the widget should be locked in its current X, Y, W and H. Locking the widget also disables interacting with the widget through the screen. Visible specifies the visibility of the widget. Making the widget invisible also disables interacting with the widget through the screen. |
Style | Style specifies a predefined setup of the widget, that sets select properties to predefined values. These styles contain images that are free to use. |
Image | Released Image and Pressed Image specify the images assigned to the Pressed and Release states from the Designer skin library or the Project folder. |
Settings | Delay specifies the time (ms) to wait when the button is pressed before starting the loop of triggers. Interval specifies the time (ms) in between every trigger. Designer accepts inputs of milliseconds and converts them into ticks. |
Appearance | Alpha specifies the transparency of the widget. The alpha value ranges between 0 and 255 for the widget. 0 is fully transparent and 255 is solid. |
Mixins | Draggable specifies if the widget is draggable at runtime. ClickListener specifies if the widget emits a callback when clicked. FadeAnimator specifies if the widget can animate changes to its Alpha value. MoveAnimator specifies if the widget can animate changes to X and Y values. |
Interactions
The actions and triggers supported by the Repeat Button are described in the following sections.
Actions
Standard widget actions | Description |
---|---|
Move widget | Move a widget to a new position over time. |
Fade widget | Modify alpha value of widget over time. |
Hide widget | Hides a widget (sets visibility to false). |
Show widget | Make a hidden widget visible (sets visibility to true). |
Triggers
Trigger | Description |
---|---|
Button is clicked | A button has been clicked. |
Performance
A Repeat Button is composed of two images and is dependent on image drawing. Therefore, a Repeat Button is considered a fast performing widget on most platforms.
For more details on image drawing performance, read the General UI Component Performance section.
Examples
Generated Code
In the generated code for the View base class we can see how TouchGFX Designer sets up a Repeat Button.
Screen1ViewBase.cpp
#include <gui_generated/screen1_screen/Screen1ViewBase.hpp>
#include "BitmapDatabase.hpp"
Screen1ViewBase::Screen1ViewBase() :
buttonCallback(this, &Screen1ViewBase::buttonCallbackHandler)
{
repeatButtonName.setXY(155, 106);
repeatButtonName.setBitmaps(touchgfx::Bitmap(BITMAP_BLUE_BUTTONS_ROUND_EDGE_SMALL_ID), touchgfx::Bitmap(BITMAP_BLUE_BUTTONS_ROUND_EDGE_SMALL_PRESSED_ID));
repeatButtonName.setDelay(12); // Set at 200 (ms) in Designer
repeatButtonName.setInterval(20); // Set at 333 (ms) in Designer
repeatButtonName.setAction(buttonCallback);
add(repeatButtonName);
}
void Screen1ViewBase::buttonCallbackHandler(const touchgfx::AbstractButton& src)
{
if (&src == &repeatButtonName)
{
//InteractionName
//When repeatButtonName clicked calls the new virtual function "functionName()" set by the user
functionName();
}
}
Tip
repeatButtonName.invalidate()
if you change the appearance of the widget.