本文整理汇总了Python中Orange.OrangeWidgets.OWGUI.toolButton方法的典型用法代码示例。如果您正苦于以下问题:Python OWGUI.toolButton方法的具体用法?Python OWGUI.toolButton怎么用?Python OWGUI.toolButton使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Orange.OrangeWidgets.OWGUI
的用法示例。
在下文中一共展示了OWGUI.toolButton方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from Orange.OrangeWidgets import OWGUI [as 别名]
# 或者: from Orange.OrangeWidgets.OWGUI import toolButton [as 别名]
def __init__(self, parent=None, signalManager=None):
OWWidget.__init__(self, parent, signalManager, "Parallel Coordinates", True)
#add a graph widget
self.graph = OWParallelGraph(self, self.mainArea)
self.mainArea.layout().addWidget(self.graph)
self.showAllAttributes = 0
self.inputs = [("Data", ExampleTable, self.setData, Default),
("Data Subset", ExampleTable, self.setSubsetData),
("Features", AttributeList, self.setShownAttributes)]
self.outputs = [("Selected Data", ExampleTable),
("Other Data", ExampleTable),
("Features", AttributeList)]
#set default settings
self.data = None
self.subsetData = None
self.autoSendSelection = 1
self.attrDiscOrder = "Unordered"
self.attrContOrder = "Unordered"
self.projections = None
self.correlationDict = {}
self.middleLabels = "Correlations"
self.attributeSelectionList = None
self.toolbarSelection = 0
self.colorSettings = None
self.selectedSchemaIndex = 0
self.graph.jitterSize = 10
self.graph.showDistributions = 1
self.graph.showStatistics = 0
self.graph.showAttrValues = 1
self.graph.useSplines = 0
self.graph.enabledLegend = 1
#load settings
self.loadSettings()
#GUI
self.tabs = OWGUI.tabWidget(self.controlArea)
self.GeneralTab = OWGUI.createTabPage(self.tabs, "Main")
self.SettingsTab = OWGUI.createTabPage(self.tabs, "Settings")
self.createShowHiddenLists(self.GeneralTab, callback=self.updateGraph)
self.connect(self.shownAttribsLB, SIGNAL('itemDoubleClicked(QListWidgetItem*)'), self.flipAttribute)
self.optimizationDlg = ParallelOptimization(self, signalManager=self.signalManager)
self.optimizationDlgButton = OWGUI.button(self.GeneralTab, self, "Optimization Dialog",
callback=self.optimizationDlg.reshow, debuggingEnabled=0)
self.zoomSelectToolbar = OWToolbars.ZoomSelectToolbar(self, self.GeneralTab, self.graph, self.autoSendSelection,
buttons=(1, 2, 0, 7, 8))
self.connect(self.zoomSelectToolbar.buttonSendSelections, SIGNAL("clicked()"), self.sendSelections)
#connect controls to appropriate functions
self.connect(self.graphButton, SIGNAL("clicked()"), self.graph.saveToFile)
# ####################################
# SETTINGS functionality
box = OWGUI.widgetBox(self.SettingsTab, "Transparency")
OWGUI.hSlider(box, self, 'graph.alphaValue', label="Examples: ", minValue=0, maxValue=255, step=10,
callback=self.updateGraph, tooltip="Alpha value used for drawing example lines")
OWGUI.hSlider(box, self, 'graph.alphaValue2', label="Rest: ", minValue=0, maxValue=255, step=10,
callback=self.updateGraph, tooltip="Alpha value used to draw statistics, example subsets, ...")
box = OWGUI.widgetBox(self.SettingsTab, "Jittering Options")
OWGUI.comboBox(box, self, "graph.jitterSize", label='Jittering size (% of size): ', orientation='horizontal',
callback=self.setJitteringSize, items=self.jitterSizeNums, sendSelectedValue=1, valueType=float)
# visual settings
box = OWGUI.widgetBox(self.SettingsTab, "Visual Settings")
OWGUI.checkBox(box, self, 'graph.showAttrValues', 'Show attribute values', callback=self.updateGraph)
OWGUI.checkBox(box, self, 'graph.useAntialiasing', 'Use antialiasing', callback=self.updateGraph)
OWGUI.checkBox(box, self, 'graph.useSplines', 'Show splines', callback=self.updateGraph,
tooltip="Show lines using splines")
OWGUI.checkBox(box, self, 'graph.enabledLegend', 'Show legend', callback=self.updateGraph)
box = OWGUI.widgetBox(self.SettingsTab, "Axis Distance")
resizeColsBox = OWGUI.widgetBox(box, 0, "horizontal", 0)
OWGUI.label(resizeColsBox, self, "Increase/decrease distance: ")
OWGUI.toolButton(resizeColsBox, self, "+", callback=self.increaseAxesDistance,
tooltip="Increase the distance between the axes", width=30, height=20)
OWGUI.toolButton(resizeColsBox, self, "-", callback=self.decreaseAxesDistance,
tooltip="Decrease the distance between the axes", width=30, height=20)
OWGUI.rubber(resizeColsBox)
OWGUI.checkBox(box, self, "graph.autoUpdateAxes", "Auto scale X axis",
tooltip="Auto scale X axis to show all visualized attributes", callback=self.updateGraph)
box = OWGUI.widgetBox(self.SettingsTab, "Statistical Information")
OWGUI.comboBox(box, self, "graph.showStatistics", label="Statistics: ", orientation="horizontal", labelWidth=90,
items=["No statistics", "Means, deviations", "Median, quartiles"], callback=self.updateGraph,
sendSelectedValue=0, valueType=int)
OWGUI.comboBox(box, self, "middleLabels", label="Middle labels: ", orientation="horizontal", labelWidth=90,
items=["No labels", "Correlations", "VizRank"], callback=self.updateGraph,
tooltip="The information do you wish to view on top in the middle of coordinate axes",
sendSelectedValue=1, valueType=str)
OWGUI.checkBox(box, self, 'graph.showDistributions', 'Show distributions', callback=self.updateGraph,
#.........这里部分代码省略.........