Sha256: 3216b7b70423e0128f9c62377ee7ed19ba8ff76ef194ba0ba2cd97f8c3b02f66
Contents?: true
Size: 1.1 KB
Versions: 52
Compression:
Stored size: 1.1 KB
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/gui/utilities/screenshot' module Cosmos class ScreenshotbuttonWidget < Qt::PushButton include Widget def initialize (parent_layout, button_text = 'Screenshot', screenshot_directory = nil) super(nil, nil, nil, nil, button_text.to_s) if screenshot_directory @screenshot_directory = screenshot_directory else @screenshot_directory = System.paths['LOGS'] end parent_layout.addWidget(self) if parent_layout connect(SIGNAL('clicked()')) do filename = File.join(@screenshot_directory, File.build_timestamped_filename([@screen.full_name], '.png')) Screenshot.screenshot_window(@screen.window, filename) end end end end # module Cosmos
Version data entries
52 entries across 52 versions & 1 rubygems