本文整理汇总了Python中Orange.OrangeWidgets.OWGUI.qwtHSlider方法的典型用法代码示例。如果您正苦于以下问题:Python OWGUI.qwtHSlider方法的具体用法?Python OWGUI.qwtHSlider怎么用?Python OWGUI.qwtHSlider使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Orange.OrangeWidgets.OWGUI
的用法示例。
在下文中一共展示了OWGUI.qwtHSlider方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from Orange.OrangeWidgets import OWGUI [as 别名]
# 或者: from Orange.OrangeWidgets.OWGUI import qwtHSlider [as 别名]
def __init__(self, parent=None, signalManager = None):
# self.callbackDeposit = [] # deposit for OWGUI callback functions
OWWidget.__init__(self, parent, signalManager, 'Expression Profiles', 1)
#set default settings
self.ShowAverageProfile = 1
self.ShowSingleProfiles = 0
self.PointWidth = 2
self.CurveWidth = 1
self.AverageCurveWidth = 4
self.BoxPlotWidth = 2
self.SelectedClasses = []
self.Classes = []
self.autoSendSelected = 0
self.selectionChangedFlag = False
self.CutLow = 0; self.CutHigh = 0; self.CutEnabled = 0
self.profileLabel = None
#load settings
self.loadSettings()
# GUI
self.graph = profilesGraph(self, self.mainArea, "")
self.mainArea.layout().addWidget(self.graph)
self.graph.hide()
self.connect(self.graphButton, SIGNAL("clicked()"), self.graph.saveToFile)
# GUI definition
self.tabs = OWGUI.tabWidget(self.space)
# GRAPH TAB
GraphTab = OWGUI.createTabPage(self.tabs, "Graph")
## display options
self.infoLabel = OWGUI.widgetLabel(OWGUI.widgetBox(GraphTab, "Info"), "No data on input.")
displayOptBox = OWGUI.widgetBox(GraphTab, "Display") #QVButtonGroup("Display", GraphTab)
displayOptButtons = ['Majority Class', 'Majority Class Probability', 'Target Class Probability', 'Number of Instances']
OWGUI.checkBox(displayOptBox, self, 'ShowSingleProfiles', 'Expression Profiles', tooltip='', callback=self.updateShowSingleProfiles)
OWGUI.checkBox(displayOptBox, self, 'ShowAverageProfile', 'Box Plot', tooltip='', callback=self.updateShowAverageProfile)
## class selection (classQLB)
self.classQVGB = OWGUI.widgetBox(GraphTab, "Classes") #QVGroupBox(GraphTab)
## self.classQVGB.setTitle("Classes")
self.classQLB = OWGUI.listBox(self.classQVGB, self, "SelectedClasses", "Classes", selectionMode=QListWidget.MultiSelection, callback=self.classSelectionChange) #QListBox(self.classQVGB)
## self.classQLB.setSelectionMode(QListBox.Multi)
self.unselectAllClassedQLB = OWGUI.button(self.classQVGB, self, "Unselect all", callback=self.SUAclassQLB) #QPushButton("(Un)Select All", self.classQVGB)
## self.connect(self.unselectAllClassedQLB, SIGNAL("clicked()"), self.SUAclassQLB)
## self.connect(self.classQLB, SIGNAL("selectionChanged()"), self.classSelectionChange)
## show single/average profile
## self.showAverageQLB = QPushButton("Box Plot", self.classQVGB)
## self.showAverageQLB.setToggleButton(1)
## self.showAverageQLB.setOn(self.ShowAverageProfile)
## self.showSingleQLB = QPushButton("Single Profiles", self.classQVGB)
## self.showSingleQLB.setToggleButton(1)
## self.showSingleQLB.setOn(self.ShowSingleProfiles)
## self.connect(self.showAverageQLB, SIGNAL("toggled(bool)"), self.updateShowAverageProfile)
## self.connect(self.showSingleQLB, SIGNAL("toggled(bool)"), self.updateShowSingleProfiles)
## self.tabs.insertTab(GraphTab, "Graph")
# SETTINGS TAB
SettingsTab = OWGUI.createTabPage(self.tabs, "Settings") #QVGroupBox(self)
self.profileLabelComboBox = OWGUI.comboBox(SettingsTab, self, 'profileLabel', 'Profile Labels', sendSelectedValue=True, valueType=str)
OWGUI.hSlider(SettingsTab, self, 'PointWidth', box='Point Width', minValue=0, maxValue=9, step=1, callback=self.updatePointWidth, ticks=1)
OWGUI.hSlider(SettingsTab, self, 'CurveWidth', box='Profile Width', minValue=1, maxValue=9, step=1, callback=self.updateCurveWidth, ticks=1)
OWGUI.hSlider(SettingsTab, self, 'AverageCurveWidth', box='Average Profile Width', minValue=1, maxValue=9, step=1, callback=self.updateAverageCurveWidth, ticks=1)
OWGUI.hSlider(SettingsTab, self, 'BoxPlotWidth', box='Box Plot Width', minValue=0, maxValue=9, step=1, callback=self.updateBoxPlotWidth, ticks=1)
OWGUI.checkBox(SettingsTab, self, 'graph.renderAntialiased', "Render antialiased", callback=self.graph.setCurveRenderHints)
## graph y scale
box = OWGUI.widgetBox(SettingsTab, "Threshold/ Values") #QVButtonGroup("Threshol/ Values", SettingsTab)
OWGUI.checkBox(box, self, 'CutEnabled', "Enabled", callback=self.setCutEnabled)
self.sliderCutLow = OWGUI.qwtHSlider(box, self, 'CutLow', label='Low:', labelWidth=33, minValue=-20, maxValue=0, step=0.1, precision=1, ticks=0, maxWidth=80, callback=self.updateYaxis)
self.sliderCutHigh = OWGUI.qwtHSlider(box, self, 'CutHigh', label='High:', labelWidth=33, minValue=0, maxValue=20, step=0.1, precision=1, ticks=0, maxWidth=80, callback=self.updateYaxis)
if not self.CutEnabled:
self.sliderCutLow.box.setDisabled(1)
self.sliderCutHigh.box.setDisabled(1)
## self.tabs.insertTab(SettingsTab, "Settings")
self.toolbarSelection = ZoomSelectToolbar(self, self.controlArea, self.graph, self.autoSendSelected, buttons=(ZoomSelectToolbar.IconZoom, ZoomSelectToolbar.IconPan, ZoomSelectToolbar.IconSelect, ZoomSelectToolbar.IconSpace,
ZoomSelectToolbar.IconRemoveLast, ZoomSelectToolbar.IconRemoveAll, ZoomSelectToolbar.IconSendSelection))
cb = OWGUI.checkBox(self.controlArea, self, "autoSendSelected", "Auto send on selection change")
OWGUI.setStopper(self, self.toolbarSelection.buttonSendSelections, cb, "selectionChangedFlag", self.commit)
# inputs
# data and graph temp variables
self.inputs = [("Examples", ExampleTable, self.data, Default + Multiple)]
self.outputs = [("Examples", ExampleTable, Default)]
# temp variables
self.MAdata = []
self.classColor = None
self.classBrighterColor = None
#.........这里部分代码省略.........