Sha256: 21fb15b4ed82feb77378d876bdff81abe6ae37589c1ee8098ba5ecdf3a3aec91
Contents?: true
Size: 728 Bytes
Versions: 24
Compression:
Stored size: 728 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' require 'cosmos/tools/tlm_viewer/widgets/widget' module Cosmos class RadiobuttonWidget < Qt::RadioButton include Widget def initialize (parent_layout, radiobutton_text) super() setText(radiobutton_text.to_s) parent_layout.addWidget(self) if parent_layout end def checked? self.isChecked() end end end # module Cosmos
Version data entries
24 entries across 24 versions & 1 rubygems