Method: GGLib::GUIWindow#setStickyFocus

Defined in:
lib/window.rb

#setStickyFocus(object) ⇒ Object



161
162
163
164
165
166
167
168
169
# File 'lib/window.rb', line 161

def setStickyFocus(object)
  if @stickfocused!=nil
    @stickfocused.onStickyBlur
  end
  @stickfocused=object
  if @stickfocused!=nil
    @stickfocused.onStickyFocus
  end
end