Class: Glimmer::SWT::MenuProxy

Inherits:
WidgetProxy show all
Defined in:
lib/glimmer/swt/menu_proxy.rb

Overview

Proxy for org.eclipse.swt.widgets.Menu

Functions differently from other widget proxies.

Glimmer automatically detects if this is a drop down menu or pop up menu from its parent if no SWT style is passed in.

There are 3 possibilities:

  • SWT :bar style is passed in: Menu Bar

  • Parent is ShellProxy: Pop Up Menu (having style :pop_up)

  • Parent is another Menu: Drop Down Menu (having style :drop_down)

In order to get the SWT Menu object, one must call ‘#swt_widget`.

In the case of a Drop Down menu, this automatically creates an SWT MenuItem object with style :cascade

In order to retrieve the menu item widget proxy, one must call ‘#menu_item_proxy`

Follows the Proxy Design Pattern

Constant Summary collapse

STYLE =
<<~CSS
  .menu.menu-bar {
    position: absolute;
    top: -30px;
    border-radius: 0;
    width: 100%;
  }
  .menu.menu-bar .menu {
    border-radius: 0;
  }
  .menu-bar .menu-item {
    width: 180px;
  }
  .menu-bar > .menu-item {
    display: inline-block;
    width: 150px;
  }
  li.menu-item {
    padding-left: initial;
    padding-right: initial;
  }
  .menu {
    /* TODO consider auto-sizing in the future */
    font-size: initial;
    border-radius: 5px;
  }
  .menu:not(.menu-bar) {
    width: 150px;
  }
  .menu-bar .ui-menu:not(.menu-bar) {
    width: 180px;
  }
  .ui-menu-item:first-child > .ui-menu-item-wrapper {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  .ui-menu-item:last-child > .ui-menu-item-wrapper {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .menu-bar .ui-menu-item:first-child > .ui-menu-item-wrapper {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .menu-bar .ui-menu-item:last-child > .ui-menu-item-wrapper {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  
CSS

Constants inherited from WidgetProxy

WidgetProxy::DEFAULT_INITIALIZERS

Instance Attribute Summary collapse

Attributes inherited from WidgetProxy

#args, #background, #children, #disposed?, #focus, #font, #foreground, #menu, #menu_requested, #parent, #path, #rendered

Instance Method Summary collapse

Methods inherited from WidgetProxy

#add_content_on_render, #add_css_class, #add_css_classes, #add_observer, #apply_property_type_converters, #build_dom, #clear_css_classes, #content, #content_on_render_blocks, #css_classes, #default_observation_request_to_event_mapping, #dispose, #dom_element, #effective_observation_request_to_event_mapping, #event_listener_proxies, for, #get_data, #has_style?, #id, #id=, #layout, #listener_dom_element, #listener_path, max_id_number_for, max_id_numbers, #method_missing, #name, next_id_number_for, #observation_request_to_event_mapping, #observation_requests, #pack, #parent_dom_element, #parent_path, #post_dispose_child, #property_type_converters, #remove_all_listeners, #remove_css_class, #remove_css_classes, #remove_event_listener_proxies, reset_max_id_numbers!, #selector, #set_attribute, #set_data, #set_focus, #skip_content_on_render_blocks?, #style_element, #swt_widget, underscored_widget_name, widget_class, widget_exists?, #widget_property_listener_installers

Methods included from PropertyOwner

#attribute_getter, #attribute_setter, #get_attribute, #set_attribute

Constructor Details

#initialize(parent, args) ⇒ MenuProxy

Returns a new instance of MenuProxy.



101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# File 'lib/glimmer/swt/menu_proxy.rb', line 101

def initialize(parent, args)
  # TODO refactor/simplify code below
  @children = []
  index = args.delete(args.last) if args.last.is_a?(Numeric)
  args = args.map {|arg| arg.is_a?(String) ? arg.to_sym : arg}
  if parent.is_a?(ShellProxy)
    args = args.unshift(:bar)
  elsif parent.is_a?(MenuProxy)
    args = args.unshift(:drop_down)
  else
    args = args.unshift(:pop_up)
  end
  if parent.is_a?(MenuProxy)
    @menu_item_proxy = SWT::WidgetProxy.for('menu_item', parent, [:cascade] + [index].compact)
    super(@menu_item_proxy, args)
    @menu_item_proxy.menu = self
  elsif parent.is_a?(ShellProxy)
    super(parent, args)
  else # widget pop up
    super(parent, args)
  end

  if bar?
    # Assumes a parent shell
    parent.menu_bar = self
  elsif pop_up?
    parent.menu = self
  end
  # TODO IMPLEMENT PROPERLY
#         on_focus_lost {
#           dispose
#         }
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Glimmer::SWT::WidgetProxy

Instance Attribute Details

Returns the value of attribute menu_item_proxy.



99
100
101
# File 'lib/glimmer/swt/menu_proxy.rb', line 99

def menu_item_proxy
  @menu_item_proxy
end

Returns the value of attribute menu_parent.



99
100
101
# File 'lib/glimmer/swt/menu_proxy.rb', line 99

def menu_parent
  @menu_parent
end

Instance Method Details

#bar?Boolean

Returns:

  • (Boolean)


135
136
137
# File 'lib/glimmer/swt/menu_proxy.rb', line 135

def bar?
  args.include?(:bar)
end

#can_handle_observation_request?(observation_request, super_only: false) ⇒ Boolean

Returns:

  • (Boolean)


169
170
171
172
173
174
175
176
# File 'lib/glimmer/swt/menu_proxy.rb', line 169

def can_handle_observation_request?(observation_request, super_only: false)
  super_result = super(observation_request)
  if observation_request.start_with?('on_') && !super_result && !super_only
    return menu_item_proxy.can_handle_observation_request?(observation_request)
  else
    super_result
  end
end

#closeObject



236
237
238
239
# File 'lib/glimmer/swt/menu_proxy.rb', line 236

def close
  dom_element.remove
  Element['body'].off('click', &@close_event_handler)
end

#domObject



259
260
261
262
263
264
265
266
267
268
# File 'lib/glimmer/swt/menu_proxy.rb', line 259

def dom
  css_class = name
  css_class += ' menu-bar' if bar?
  css_class += ' menu-drop-down' if drop_down?
  css_class += ' menu-pop-up' if pop_up?
  @dom ||= html {
    ul(id: id, class: css_class) {
    }
  }.to_s
end

Returns:

  • (Boolean)


143
144
145
# File 'lib/glimmer/swt/menu_proxy.rb', line 143

def drop_down?
  args.include?(:drop_down)
end

#elementObject



255
256
257
# File 'lib/glimmer/swt/menu_proxy.rb', line 255

def element
  'ul'
end

#enabledObject



155
156
157
158
159
160
161
# File 'lib/glimmer/swt/menu_proxy.rb', line 155

def enabled
  if drop_down?
    menu_item_proxy.enabled
  else
    true
  end
end

#enabled=(value) ⇒ Object



163
164
165
166
167
# File 'lib/glimmer/swt/menu_proxy.rb', line 163

def enabled=(value)
  if drop_down?
    menu_item_proxy.enabled = value
  end
end

#handle_observation_request(observation_request, block) ⇒ Object



178
179
180
181
182
183
184
# File 'lib/glimmer/swt/menu_proxy.rb', line 178

def handle_observation_request(observation_request, block)
  if can_handle_observation_request?(observation_request, super_only: true)
    super
  else
    menu_item_proxy.handle_observation_request(observation_request, block)
  end
end

#parent_menuObject



251
252
253
# File 'lib/glimmer/swt/menu_proxy.rb', line 251

def parent_menu
  parent.parent unless root_menu?
end

#pop_up?Boolean

Returns:

  • (Boolean)


139
140
141
# File 'lib/glimmer/swt/menu_proxy.rb', line 139

def pop_up?
  args.include?(:pop_up)
end

#post_add_contentObject



196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
# File 'lib/glimmer/swt/menu_proxy.rb', line 196

def post_add_content
  if bar?
    # delay this till all children rendered (perhaps post_add_content block)
    parent_dom_element.css('position', 'relative')
    parent_dom_element.css('margin-top', '30px')
    redraw
    `$(#{path}).menu({
      position: { my: "top", at: "bottom" },
      icons: { submenu: "ui-icon-blank" }
    });`
    the_element = dom_element
    the_element.on('mouseover') { |event|
      if event.page_x.between?(the_element.offset.left, the_element.offset.left + the_element.width) and
         event.page_y.between?(the_element.offset.top, the_element.offset.top + the_element.height)
        `$(#{path}).menu('option', 'position', { my: 'left top', at: 'left bottom' })`
      end
    }
    the_element.on('menublur') {
      `$(#{path}).menu('option', 'position', { my: 'left top', at: 'right top' })`
    }
    minimum_width = children.to_a.map(&:dom_element).map(&:width).reduce(:+)
    the_element.css('min-width', minimum_width)
  end
end

#post_initialize_child(child) ⇒ Object



186
187
188
189
190
191
192
193
194
# File 'lib/glimmer/swt/menu_proxy.rb', line 186

def post_initialize_child(child)
  if child && !@children.include?(child)
    if child.is_a?(MenuItemProxy)
      @children << child
    else
      @children << child.menu_item_proxy
    end
  end
end

#render(custom_parent_dom_element: nil, brand_new: false) ⇒ Object



221
222
223
224
225
226
227
228
229
230
231
232
233
234
# File 'lib/glimmer/swt/menu_proxy.rb', line 221

def render(custom_parent_dom_element: nil, brand_new: false)
  # TODO attach to top nav bar if parent is shell
  # TODO attach listener to parent to display on right click
  if parent.is_a?(MenuProxy) || parent.is_a?(MenuItemProxy) || parent.menu_requested? || parent.is_a?(ShellProxy)
    super(custom_parent_dom_element: custom_parent_dom_element, brand_new: brand_new)
    if root_menu? && !bar?
      `$(#{path}).menu();`
      @close_event_handler = lambda do |event|
        close if event.target.parents('.ui-menu').empty?
      end
      Element['body'].on('click', &@close_event_handler)
    end
  end
end

#root_menuObject



245
246
247
248
249
# File 'lib/glimmer/swt/menu_proxy.rb', line 245

def root_menu
  the_menu = self
  the_menu = the_menu.parent_menu until the_menu.root_menu?
  the_menu
end

#root_menu?Boolean

Returns:

  • (Boolean)


241
242
243
# File 'lib/glimmer/swt/menu_proxy.rb', line 241

def root_menu?
  !parent.is_a?(MenuProxy) && !parent.is_a?(MenuItemProxy)
end

#textObject



147
148
149
# File 'lib/glimmer/swt/menu_proxy.rb', line 147

def text
  @menu_item_proxy&.text
end

#text=(text_value) ⇒ Object



151
152
153
# File 'lib/glimmer/swt/menu_proxy.rb', line 151

def text=(text_value)
  @menu_item_proxy&.text = text_value
end