bn::rect_window_move_top_left_by_action class

Modifies the position of the top-left corner of a rect_window by a given delta.

Base classes

template<typename Value, typename Property, class PropertyManager>
class by_value_template_action<rect_window, fixed_point, rect_window_top_left_manager>
Modifies the property of a value by a given delta.

Constructors, destructors, conversion operators

rect_window_move_top_left_by_action(rect_window window, fixed delta_top, fixed delta_left)
Constructor.
rect_window_move_top_left_by_action(rect_window window, const fixed_point& delta_top_left)
Constructor.

Public functions

auto window() const -> rect_window
Returns the rect_window to modify.
auto delta_top_left() const -> const fixed_point&
Returns how much to add to the position of the top-left corner of the given rect_window when the action is updated.

Function documentation

bn::rect_window_move_top_left_by_action::rect_window_move_top_left_by_action(rect_window window, fixed delta_top, fixed delta_left)

Constructor.

Parameters
window rect_window to modify.
delta_top How much to add to the position of the top boundary of the given rect_window when the action is updated.
delta_left How much to add to the position of the left boundary of the given rect_window when the action is updated.

bn::rect_window_move_top_left_by_action::rect_window_move_top_left_by_action(rect_window window, const fixed_point& delta_top_left)

Constructor.

Parameters
window rect_window to modify.
delta_top_left How much to add to the position of the top-left corner of the given rect_window when the action is updated.