Sha256: 53f6647c65087a9ed05c912ba23eab095e09f07c71f12b42e90c22e9ebda1eb5

Contents?: true

Size: 777 Bytes

Versions: 24

Compression:

Stored size: 777 Bytes

Contents

# encoding: ascii-8bit

# Copyright 2014 Ball Aerospace & Technologies Corp.
# All Rights Reserved.
#
# This program is free software; you can modify and/or redistribute it
# under the terms of the GNU General Public License
# as published by the Free Software Foundation; version 3 with
# attribution addendums as found in the LICENSE.txt

require 'cosmos/tools/tlm_viewer/widgets/widget'

module Cosmos

  class ComboboxWidget < Qt::ComboBox
    include Widget

    def initialize (parent_layout, *combobox_items)
      super()
      addItems(combobox_items)
      self.maxVisibleItems = combobox_items.length > 6 ? 6 : combobox_items.length
      parent_layout.addWidget(self) if parent_layout
    end

    def text
      self.currentText
    end
  end

end # module Cosmos

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
cosmos-3.8.2 lib/cosmos/tools/tlm_viewer/widgets/combobox_widget.rb
cosmos-3.8.1 lib/cosmos/tools/tlm_viewer/widgets/combobox_widget.rb
cosmos-3.8.0 lib/cosmos/tools/tlm_viewer/widgets/combobox_widget.rb
cosmos-3.7.1 lib/cosmos/tools/tlm_viewer/widgets/combobox_widget.rb
cosmos-3.7.0 lib/cosmos/tools/tlm_viewer/widgets/combobox_widget.rb
cosmos-3.6.3 lib/cosmos/tools/tlm_viewer/widgets/combobox_widget.rb
cosmos-3.6.2 lib/cosmos/tools/tlm_viewer/widgets/combobox_widget.rb
cosmos-3.6.1 lib/cosmos/tools/tlm_viewer/widgets/combobox_widget.rb
cosmos-3.6.0 lib/cosmos/tools/tlm_viewer/widgets/combobox_widget.rb
cosmos-3.5.3 lib/cosmos/tools/tlm_viewer/widgets/combobox_widget.rb
cosmos-3.5.2 lib/cosmos/tools/tlm_viewer/widgets/combobox_widget.rb
cosmos-3.5.0 lib/cosmos/tools/tlm_viewer/widgets/combobox_widget.rb
cosmos-3.4.2 lib/cosmos/tools/tlm_viewer/widgets/combobox_widget.rb
cosmos-3.4.1 lib/cosmos/tools/tlm_viewer/widgets/combobox_widget.rb
cosmos-3.4.0 lib/cosmos/tools/tlm_viewer/widgets/combobox_widget.rb
cosmos-3.3.3 lib/cosmos/tools/tlm_viewer/widgets/combobox_widget.rb
cosmos-3.3.2 lib/cosmos/tools/tlm_viewer/widgets/combobox_widget.rb
cosmos-3.3.1 lib/cosmos/tools/tlm_viewer/widgets/combobox_widget.rb
cosmos-3.3.0 lib/cosmos/tools/tlm_viewer/widgets/combobox_widget.rb
cosmos-3.2.1 lib/cosmos/tools/tlm_viewer/widgets/combobox_widget.rb