Class: Ruber::OutputWidget::TableView

Inherits:
Qt::TableView
  • Object
show all
Defined in:
lib/ruber/output_widget.rb

Overview

Convenience class to be used instead of @Qt::TableView@ in an Ruber::OutputWidget.

The only difference from @Qt::TableVew@ is that it defines a #context_menu_requested signal and emits it from its #contextMenuEvent method

Instance Method Summary collapse

Instance Method Details

#contextMenuEvent(e) ⇒ Object

Override of @Qt::TableView#contextMenuEvent@

It emits the #context_menu_requested signal



1157
1158
1159
1160
# File 'lib/ruber/output_widget.rb', line 1157

def contextMenuEvent e
  super e
  emit context_menu_requested(e.global_pos)
end