Sha256: b8e9ad08050d802292fec38f530cbaf878e8d7a1e24eda013960c9853af15c83
Contents?: true
Size: 742 Bytes
Versions: 52
Compression:
Stored size: 742 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' require 'cosmos/tools/tlm_viewer/widgets/layout_widget' module Cosmos class TabitemWidget < Qt::VBoxLayout include Widget include LayoutWidget def initialize(parent_layout, text) super() w = Qt::Widget.new w.setLayout(self) parent_layout.addTab(w, text.to_s) if parent_layout end end end # module Cosmos
Version data entries
52 entries across 52 versions & 1 rubygems