1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
#------------------------------------------------------------------------------
# This file is part of the OpenStructure project <www.openstructure.org>
#
# Copyright (C) 2008-2020 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 PyQt5 import QtCore, QtWidgets
from .render_mode_widget import RenderModeWidget
#Trace Render Options
class TraceWidget(RenderModeWidget):
def __init__(self, parent=None):
RenderModeWidget.__init__(self, parent)
#Title
self.text_ = "Trace"
#Set Render Mode
self.mode_ = gfx.RenderMode.TRACE
min_arc_detail = 1
max_arc_detail = 20
min_width = 0.1
max_width = 2.5
max_tube_width= 2.0
#########UI##########
#Arc Label
arc_label = QtWidgets.QLabel("Arc Detail")
self.arc_spinbox_ = QtWidgets.QSpinBox()
self.arc_spinbox_.setRange(min_arc_detail, max_arc_detail)
#Tube Radius
radius_tube_label = QtWidgets.QLabel("Radius")
self.width_tube_spinbox_ = QtWidgets.QDoubleSpinBox()
self.width_tube_spinbox_.setRange(min_width, max_tube_width)
self.width_tube_spinbox_.setDecimals(1)
self.width_tube_spinbox_.setSingleStep(0.1)
self.width_tube_slider_ = QtWidgets.QSlider(QtCore.Qt.Horizontal, self)
self.width_tube_slider_.setRange(int(min_width*10.0), int(max_tube_width*10.0))
self.width_tube_slider_.setTickPosition(QtWidgets.QSlider.NoTicks)
self.width_tube_slider_.setTickInterval(1)
grid = QtWidgets.QGridLayout()
grid.addWidget(arc_label,3,0,1,3)
grid.addWidget(self.arc_spinbox_,3,4,1,1)
grid.addWidget(radius_tube_label, 5, 0, 1, 1)
grid.addWidget(self.width_tube_slider_, 5, 1, 1, 3)
grid.addWidget(self.width_tube_spinbox_, 5, 4, 1, 1)
grid.setRowStretch(15,1)
self.setLayout(grid)
self.arc_spinbox_.valueChanged.connect(self.UpdateArcDetail)
self.width_tube_spinbox_.valueChanged.connect(self.UpdateTubeRadius)
self.width_tube_slider_.valueChanged.connect(self.UpdateSliderTubeRadius)
self.setMinimumSize(250,60) #2*30
########/UI########
def UpdateGui(self,options):
self.arc_spinbox_.setValue(options.GetArcDetail())
self.UpdateTubeRadiusGui(options.GetTubeRadius())
def UpdatePolyMode(self, value):
self.GetOptions().SetPolyMode(value)
self.ApplyOptions()
def UpdateArcDetail(self, value):
self.GetOptions().SetArcDetail(value)
self.ApplyOptions()
def UpdateTubeRadius(self, value):
self.GetOptions().SetTubeRadius(value)
def UpdateSliderTubeRadius(self, value):
self.GetOptions().SetTubeRadius(value/10.0)
def UpdateTubeRadiusGui(self,value):
value = round(value, 2)
if(abs(value*10.0 - self.width_tube_slider_.value())>=self.width_tube_slider_.singleStep()):
self.width_tube_slider_.setValue(int(value*10.0))
if(abs(value - self.width_tube_spinbox_.value())>=self.width_tube_spinbox_.singleStep()):
self.width_tube_spinbox_.setValue(value)
def GetText(self):
return self.text_
def GetRenderMode(self):
return self.mode_
|