Package pyjamas :: Package ui :: Module DoubleControl :: Class DoubleControl
[hide private]
[frames] | no frames]

Class DoubleControl

source code

              object --+                    
                       |                    
                 Applier --+                
                           |                
           UIObject.UIObject --+            
                               |            
                   Widget.Widget --+        
                                   |        
      FocusListener.FocusHandler --+        
                                   |        
KeyboardListener.KeyboardHandler --+        
                                   |        
                      object --+   |        
                               |   |        
      MouseListener.MouseHandler --+        
                                   |        
                      object --+   |        
                               |   |        
      ClickListener.ClickHandler --+        
                                   |        
                Focus.FocusMixin --+        
                                   |        
             FocusWidget.FocusWidget --+    
                                       |    
                          object --+   |    
                                   |   |    
          MouseListener.MouseHandler --+    
                                       |    
                         Control.Control --+
                                           |
                                          DoubleControl

Instance Methods [hide private]
 
__init__(self, element, min_value, max_value, start_value_xy=None, step_xy=None, **kwargs)
use this to apply properties as a dictionary, e.g.
source code
 
processValue(self, value)
rounds and limits the value to acceptable range
source code
 
setValue(self, (new_value_x, new_value_y), notify=1) source code
 
onControlValueChanged(self, value_old_xy, value_new_xy) source code
 
onKeyDown(self, sender, keycode, modifiers) source code

Inherited from Control.Control: addControlValueListener, isDragable, moveControl, onClick, onFocus, onKeyPress, onKeyUp, onLoseFocus, onLostFocus, onMouseDown, onMouseEnter, onMouseLeave, onMouseMove, onMouseUp, removeControlValueListener, setDragable

Inherited from Widget.Widget: doAttachChildren, doDetachChildren, getID, getLayoutData, getParent, isAttached, onAttach, onBrowserEvent, onDetach, onLoad, removeFromParent, setContextMenu, setID, setLayoutData, setParent

Inherited from UIObject.UIObject: addStyleDependentName, addStyleName, getAbsoluteLeft, getAbsoluteTop, getElement, getHeight, getOffsetHeight, getOffsetWidth, getStyleName, getStylePrimaryName, getTitle, getWidth, isVisible, removeStyleDependentName, removeStyleName, setElement, setHeight, setPixelSize, setSize, setStyleName, setTitle, setVisible, setWidth, setzIndex, sinkEvents, unsinkEvents

Inherited from FocusListener.FocusHandler: addFocusListener, removeFocusListener

Inherited from KeyboardListener.KeyboardHandler: addKeyboardListener, removeKeyboardListener

Inherited from MouseListener.MouseHandler: addMouseListener, removeMouseListener

Inherited from ClickListener.ClickHandler: addClickListener, addDoubleClickListener, onDoubleClick, removeClickListener, removeDoubleClickListener

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Inherited from Focus.FocusMixin: getTabIndex, isEnabled, isReadonly, setAccessKey, setEnabled, setFocus, setReadonly, setTabIndex

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, element, min_value, max_value, start_value_xy=None, step_xy=None, **kwargs)
(Constructor)

source code 
use this to apply properties as a dictionary, e.g.
    x = klass(..., StyleName='class-name')
will do:
    x = klass(...)
    x.setStyleName('class-name')

and:
    x = klass(..., Size=("100%", "20px"), Visible=False)
will do:
    x = klass(...)
    x.setSize("100%", "20px")
    x.setVisible(False)

Overrides: object.__init__
(inherited documentation)

processValue(self, value)

source code 

rounds and limits the value to acceptable range

Overrides: Control.Control.processValue

setValue(self, (new_value_x, new_value_y), notify=1)

source code 
Overrides: Control.Control.setValue

onKeyDown(self, sender, keycode, modifiers)

source code 
Overrides: KeyboardListener.KeyboardHandler.onKeyDown