Class: SearchTable::Item

Inherits:
Qt::TableWidgetItem
  • Object
show all
Defined in:
lib/searchwin.rb

Direct Known Subclasses

NumItem

Instance Method Summary collapse

Constructor Details

#initialize(text) ⇒ Item

Returns a new instance of Item.



7
8
9
10
# File 'lib/searchwin.rb', line 7

def initialize(text)
    super(text)
    self.flags = Qt::ItemIsSelectable | Qt::ItemIsEnabled
end