当前位置: 首页>>代码示例>>Python>>正文


Python Base.getParam方法代码示例

本文整理汇总了Python中Base.getParam方法的典型用法代码示例。如果您正苦于以下问题:Python Base.getParam方法的具体用法?Python Base.getParam怎么用?Python Base.getParam使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Base的用法示例。


在下文中一共展示了Base.getParam方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

# 需要导入模块: import Base [as 别名]
# 或者: from Base import getParam [as 别名]
 def __init__(self):
     FreeCAD.Console.PrintMessage( 'MyDockWidget init begin\n')
     self.taskmode = Base.getParam("UiMode")
     self.paramcolor = Base.getParam("color")>>8
     self.color = QtGui.QColor(self.paramcolor)
     self.facecolor = QtGui.QColor(204, 204, 204)
     self.linewidth = Base.getParam("linewidth")
     self.fontsize = Base.getParam("textheight")
     self.paramconstr = Base.getParam("constructioncolor")>>8
     self.constrMode = False
     self.continueMode = False
     self.state = None
     self.textbuffer = []
     self.crossedViews = []
     self.tray = None
     self.sourceCmd = None
     self.dockWidget = QtGui.QDockWidget()
     self.mw = getMainWindow()
     self.mw.addDockWidget(QtCore.Qt.TopDockWidgetArea, self.dockWidget)
     self.centralWidget = QtGui.QWidget()
     #self.label = QtGui.QLabel(self.dockWidget)
     #self.label.setText("abc")
     self.dockWidget.setWidget(self.centralWidget)
     self.dockWidget.setVisible(False)
     self.dockWidget.toggleViewAction().setVisible(False)
     self.layout = QtGui.QHBoxLayout(self.centralWidget)
     self.layout.setObjectName("layout")
     self.setupToolBar()
     self.setupTray()
     self.setupStyle()
     FreeCAD.Console.PrintMessage( 'MyDockWidget init done\n')
开发者ID:fcourchesne,项目名称:DDA,代码行数:33,代码来源:drawGui.py

示例2: getDefaultColor

# 需要导入模块: import Base [as 别名]
# 或者: from Base import getParam [as 别名]
 def getDefaultColor(self, type, rgb=False):
     "gets color from the preferences or toolbar"
     if type == "snap":
         color = Base.getParam("snapcolor")
         r = ((color >> 24) & 0xFF) / 255
         g = ((color >> 16) & 0xFF) / 255
         b = ((color >> 8) & 0xFF) / 255
     elif type == "ui":
         r = float(self.color.red() / 255.0)
         g = float(self.color.green() / 255.0)
         b = float(self.color.blue() / 255.0)
     elif type == "face":
         r = float(self.facecolor.red() / 255.0)
         g = float(self.facecolor.green() / 255.0)
         b = float(self.facecolor.blue() / 255.0)
     elif type == "constr":
         color = QtGui.QColor(Base.getParam("constructioncolor") >> 8)
         r = color.red() / 255.0
         g = color.green() / 255.0
         b = color.blue() / 255.0
     else: print "draft: error: couldn't get a color for ", type, " type."
     if rgb:
         return("rgb(" + str(int(r * 255)) + "," + str(int(g * 255)) + "," + str(int(b * 255)) + ")")
     else:
         return (r, g, b)
开发者ID:fcourchesne,项目名称:DDA,代码行数:27,代码来源:drawGui.py


注:本文中的Base.getParam方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。