Sha256: 3de1fc42f78a336c6154bd61a23db96006176fe6feccd4a5025a97ce84d0e4d9
Contents?: true
Size: 681 Bytes
Versions: 52
Compression:
Stored size: 681 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 # LabelWidget class # class LabelWidget < Qt::Label include Widget def initialize(parent_layout, text) super() self.text = text.remove_quotes parent_layout.addWidget(self) if parent_layout end end end # module Cosmos
Version data entries
52 entries across 52 versions & 1 rubygems