Skip to content
Snippets Groups Projects
Select Git revision
  • 5e4c55f8150c44a1bb9ab70a827658b7b890c0c4
  • master default protected
  • develop protected
  • cmake_boost_refactor
  • ubuntu_ci
  • mmtf
  • non-orthogonal-maps
  • no_boost_filesystem
  • data_viewer
  • 2.11.1
  • 2.11.0
  • 2.10.0
  • 2.9.3
  • 2.9.2
  • 2.9.1
  • 2.9.0
  • 2.8.0
  • 2.7.0
  • 2.6.1
  • 2.6.0
  • 2.6.0-rc4
  • 2.6.0-rc3
  • 2.6.0-rc2
  • 2.6.0-rc
  • 2.5.0
  • 2.5.0-rc2
  • 2.5.0-rc
  • 2.4.0
  • 2.4.0-rc2
29 results

line_trace_widget.py

Blame
  • user avatar
    stefan authored
    git-svn-id: https://dng.biozentrum.unibas.ch/svn/openstructure/trunk@1792 5a81b35b-ba03-0410-adc8-b2c5c5119f08
    5e4c55f8
    History
    line_trace_widget.py 2.99 KiB
    #------------------------------------------------------------------------------
    # This file is part of the OpenStructure project <www.openstructure.org>
    #
    # Copyright (C) 2008-2010 by the OpenStructure authors
    #
    # This library is free software; you can redistribute it and/or modify it under
    # the terms of the GNU Lesser General Public License as published by the Free
    # Software Foundation; either version 3.0 of the License, or (at your option)
    # any later version.
    # This library is distributed in the hope that it will be useful, but WITHOUT
    # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
    # FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
    # details.
    #
    # You should have received a copy of the GNU Lesser General Public License
    # along with this library; if not, write to the Free Software Foundation, Inc.,
    # 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
    #------------------------------------------------------------------------------
    # -*- coding: utf-8 -*-
    
    from ost import gui
    from ost import gfx
    from PyQt4 import QtCore, QtGui
    from render_mode_widget import RenderModeWidget
    
    #Simple Render Options
    class LineTraceWidget(RenderModeWidget):
      def __init__(self, parent=None):
        RenderModeWidget.__init__(self, parent)
        
        #Title
        self.text_ = "Fast Trace"
        
        #Set Render Mode
        self.mode_ = gfx.RenderMode.LINE_TRACE
        
        #Defaults
        min_line_width = 0.01
        max_line_width = 20
            
        #Create Ui elements
        self.radius_spinbox_ = QtGui.QDoubleSpinBox()
        self.radius_spinbox_.setRange(min_line_width, max_line_width)
        self.radius_spinbox_.setDecimals(2)
        self.radius_spinbox_.setSingleStep(0.1)
        
        self.aa_rendering_cb_ = QtGui.QCheckBox()
        
        sline_label = QtGui.QLabel("Trace Settings")
        font = sline_label.font()
        font.setBold(True)
        
        radius_label = QtGui.QLabel("Line Width")
        aa_label = QtGui.QLabel("AA-Lines")
        grid = QtGui.QGridLayout()
        grid.addWidget(sline_label, 0, 0, 1, 1)
        grid.addWidget(radius_label, 1, 0, 1, 3)
        grid.addWidget(self.radius_spinbox_, 1, 2, 1, 1)
        grid.addWidget(aa_label, 2, 0, 1, 3)
        grid.addWidget(self.aa_rendering_cb_, 2, 2, 1, 1)
        grid.setRowStretch(3,1)
        self.setLayout(grid)
    
        QtCore.QObject.connect(self.radius_spinbox_, 
                               QtCore.SIGNAL("valueChanged(double)"), 
                               self.UpdateLineWidth)
        QtCore.QObject.connect(self.aa_rendering_cb_, 
                               QtCore.SIGNAL("stateChanged(int)"), 
                               self.UpdateAA)
    
        self.setMinimumSize(250,90)
        
      def UpdateAA(self, value):
        self.GetOptions().SetAALines(value)
        
      def UpdateLineWidth(self, value):
        self.GetOptions().SetLineWidth(value)
        
      def UpdateGui(self,options):
        self.aa_rendering_cb_.setChecked(options.GetAALines())    
        self.radius_spinbox_.setValue(options.GetLineWidth())
    
      def GetText(self):
        return self.text_
    
      def GetRenderMode(self):
        return self.mode_