Class ViewSpinButton

class ooodev.dialog.dl_control.view.view_spin_button.ViewSpinButton(component)[source]

Bases: UnoControlSpinButtonComp

View for the Spin Button control.

Parameters:

component (UnoControlSpinButton) –

__init__(component)

Constructor

Parameters:

component (Any) – Component that implements com.sun.star.awt.UnoControlSpinButton service.

add_adjustment_listener(listener)

Registers an adjustment event listener.

Return type:

None

Parameters:

listener (com.sun.star.awt.XAdjustmentListener) –

add_event_listener(listener)

Adds an event listener to the component.

Parameters:

listener (XEventListener) – The event listener to be added.

Return type:

None

add_focus_listener(listener)

Adds a focus listener to the object.

Return type:

None

Parameters:

listener (com.sun.star.awt.XFocusListener) –

add_key_listener(listener)

Adds a key listener to the object.

Return type:

None

Parameters:

listener (com.sun.star.awt.XKeyListener) –

add_mouse_listener(listener)

Adds a mouse listener to the object.

Return type:

None

Parameters:

listener (com.sun.star.awt.XMouseListener) –

add_mouse_motion_listener(listener)

Adds a mouse motion listener to the object.

Return type:

None

Parameters:

listener (com.sun.star.awt.XMouseMotionListener) –

add_paint_listener(listener)

Adds a paint listener to the object.

Return type:

None

Parameters:

listener (com.sun.star.awt.XPaintListener) –

add_window_listener(listener)

Adds a window listener to the object.

Return type:

None

Parameters:

listener (com.sun.star.awt.XWindowListener) –

create_peer(toolkit, parent)

Creates a child window on the screen.

If the parent is None, then the desktop window of the toolkit is the parent.

Return type:

None

Parameters:
  • toolkit (com.sun.star.awt.XToolkit) –

  • parent (com.sun.star.awt.XWindowPeer) –

dispose()

Disposes the component.

Return type:

None

draw(x, y)

Draws the object at the specified position.

If the output should be clipped, the caller has to set the clipping region.

Parameters:
  • x (int | UnitT) – X coordinate in device units. If int then pixel units.

  • y (int | UnitT) – Y coordinate in device units. If int then pixel units.

Return type:

None

get_context()

Gets the context of the control.

Return type:

XInterface

get_graphics()

Gets the output device which was set using the method XView.setGraphics().

Return type:

XGraphics

get_maximum()

Gets the currently set maximum value of the control

Return type:

int

get_minimum()

returns the currently set minimum value of the control

Return type:

int

get_model()

Gets the model for this control.

Return type:

XControlModel

get_orientation()

returns the current orientation of the control

Return type:

int

get_peer()

Gets the peer which was previously created or set.

Return type:

XWindowPeer

get_pos_size()

Gets the outer bounds of the window.

Return type:

SizePosPX

get_size()

Gets the size of the object in device units.

A device must be set before.

Returns:

Size of the object in pixel units.

Return type:

SizePX

get_spin_increment()

Returns the value by which the current value of the control should be incremented or decremented upon spinning.

Return type:

int

get_value()

returns the current value of the control.

Return type:

int

get_view()

Gets the view of this control.

Return type:

XView

is_design_mode()

Returns True if the control is in design mode, False otherwise.

Return type:

bool

is_transparent()

Returns True if the control is transparent, False otherwise.

Return type:

bool

remove_adjustment_listener(listener)

Un-registers an adjustment event listener.

Return type:

None

Parameters:

listener (com.sun.star.awt.XAdjustmentListener) –

remove_event_listener(listener)

Removes an event listener from the component.

Parameters:

listener (XEventListener) – The event listener to be removed.

Return type:

None

remove_focus_listener(listener)

Removes the specified focus listener from the listener list.

Return type:

None

Parameters:

listener (com.sun.star.awt.XFocusListener) –

remove_key_listener(listener)

Removes the specified key listener from the listener list.

Return type:

None

Parameters:

listener (com.sun.star.awt.XKeyListener) –

remove_mouse_listener(listener)

Removes the specified mouse listener from the listener list.

Return type:

None

Parameters:

listener (com.sun.star.awt.XMouseListener) –

remove_mouse_motion_listener(listener)

Removes the specified mouse motion listener from the listener list.

Return type:

None

Parameters:

listener (com.sun.star.awt.XMouseMotionListener) –

remove_paint_listener(listener)

Removes the specified paint listener from the listener list.

Return type:

None

Parameters:

listener (com.sun.star.awt.XPaintListener) –

remove_window_listener(listener)

Removes the specified window listener from the listener list.

Return type:

None

Parameters:

listener (com.sun.star.awt.XWindowListener) –

set_context(ctx)

Sets the context of the control.

Return type:

None

Parameters:

ctx (com.sun.star.uno.XInterface) –

set_design_mode(on)

Sets the design mode for use in a design editor.

Normally the control will be painted directly without a peer.

Return type:

None

Parameters:

on (bool) –

set_enable(enable)

Enables or disables the window depending on the parameter.

Return type:

None

Parameters:

enable (bool) –

set_focus()

sets the focus to the window.

Return type:

None

set_graphics(device)

Sets the output device.

Return type:

bool

Parameters:

device (com.sun.star.awt.XGraphics) –

set_maximum(max_value)

Sets the maximum value which can be set on the control

Return type:

None

Parameters:

max_value (int) –

set_minimum(min_value)

Sets the minimum value which can be set on the control

Return type:

None

Parameters:

min_value (int) –

set_model(model)

Sets a model for the control.

Return type:

bool

Parameters:

model (com.sun.star.awt.XControlModel) –

set_orientation(orientation)

controls the orientation of the control

Raises:

com.sun.star.lang.NoSupportExceptionNoSupportException

Return type:

None

Parameters:

orientation (int) –

set_pos_size(x, y, width, height, flags=15)

Sets the outer bounds of the window.

Parameters:
  • x (int, UnitT) – The x-coordinate of the window. In Pixels or UnitT.

  • y (int, UnitT) – The y-coordinate of the window. In Pixels or UnitT.

  • width (int, UnitT) – The width of the window. In Pixels or UnitT.

  • height (int, UnitT) – The height of the window. In Pixels or UnitT.

  • flags (int, UnitT) – A combination of com.sun.star.awt.PosSize flags. Default set to PosSize.POSSIZE.

Return type:

None

set_spin_increment(spin_increment)

sets the value by which the current value of the control should be incremented or decremented upon spinning.

Return type:

None

Parameters:

spin_increment (int) –

set_value(value)

Sets the current value of the control

Return type:

None

Parameters:

value (int) –

set_values(min_value, max_value, current_value)

Sets the value and value range of the control

Return type:

None

Parameters:
  • min_value (int) –

  • max_value (int) –

  • current_value (int) –

set_visible(visible)

Shows or hides the window depending on the parameter.

Return type:

None

Parameters:

visible (bool) –

set_zoom(x, y)

Sets the zoom factor.

The zoom factor only affects the content of the view, not the size.

Return type:

None

Parameters:
  • x (float) –

  • y (float) –

property component: com.sun.star.awt.UnoControlSpinButton

UnoControlSpinButton Component

Return type:

UnoControlSpinButton