Sha256: 69d41d66e2fb8c602cb9a6a4355e3ad9131d94d11a0bb322c2bc6ee010029922
Contents?: true
Size: 744 Bytes
Versions: 12
Compression:
Stored size: 744 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 # Layout widget which creates a Qt::TabWidget to contain TABITEM widgets class TabbookWidget < Qt::TabWidget include Widget include LayoutWidget def initialize(parent_layout = nil) super() parent_layout.addWidget(self) if parent_layout end end end
Version data entries
12 entries across 12 versions & 1 rubygems