Sha256: 8385ebbcc92d21239e347be0877a6260873a0f68f680267c7dec54f54e0cfe3e
Contents?: true
Size: 668 Bytes
Versions: 64
Compression:
Stored size: 668 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/gui/qt' module Cosmos # Widget which contains the plot for editing class PlotEditor < Qt::Widget # Overall frame for this plot type attr_accessor :plot def initialize(parent, plot) super(parent) @plot = plot end end # class PlotEditor end # module Cosmos
Version data entries
64 entries across 64 versions & 1 rubygems