本文整理汇总了Python中wx.DOT属性的典型用法代码示例。如果您正苦于以下问题:Python wx.DOT属性的具体用法?Python wx.DOT怎么用?Python wx.DOT使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类wx
的用法示例。
在下文中一共展示了wx.DOT属性的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: DrawBoundingBoxes
# 需要导入模块: import wx [as 别名]
# 或者: from wx import DOT [as 别名]
def DrawBoundingBoxes(self, bboxes, dc=None):
"""
Draw a list of bounding box on Viewer in the order given using XOR
logical function
@param bboxes: List of bounding boxes to draw on viewer
@param dc: Device Context of Viewer (default None)
"""
# Get viewer Device Context if not given
if dc is None:
dc = self.Viewer.GetLogicalDC()
# Save current viewer scale factors before resetting them in order to
# avoid rubberband pen to be scaled
scalex, scaley = dc.GetUserScale()
dc.SetUserScale(1, 1)
# Set DC drawing style
dc.SetPen(wx.Pen(wx.WHITE, style=wx.DOT))
dc.SetBrush(wx.TRANSPARENT_BRUSH)
dc.SetLogicalFunction(wx.XOR)
# Draw the bounding boxes using viewer scale factor
for bbox in bboxes:
if bbox is not None:
dc.DrawRectangle(
bbox.x * scalex, bbox.y * scaley,
bbox.width * scalex, bbox.height * scaley)
dc.SetLogicalFunction(wx.COPY)
# Restore Viewer scale factor
dc.SetUserScale(scalex, scaley)
示例2: Normal
# 需要导入模块: import wx [as 别名]
# 或者: from wx import DOT [as 别名]
def Normal(headerFontName="Gill Sans", rowFontName="Times New Roman"):
"""
Return a reasonable default format for a report
"""
fmt = ReportFormat()
fmt.IsShrinkToFit = True
fmt.PageHeader.Font = wx.FFont(12, wx.FONTFAMILY_DEFAULT, face=headerFontName)
fmt.PageHeader.Line(wx.BOTTOM, wx.BLUE, 2, space=5)
fmt.PageHeader.Padding = (0, 0, 0, 12)
fmt.ListHeader.Font = wx.FFont(26, wx.FONTFAMILY_SWISS, wx.FONTFLAG_BOLD, face=headerFontName)
fmt.ListHeader.TextColor = wx.WHITE
fmt.ListHeader.Padding = (0, 12, 0, 12)
fmt.ListHeader.TextAlignment = wx.ALIGN_LEFT
fmt.ListHeader.Background(wx.BLUE, wx.WHITE, space=(16, 4, 0, 4))
fmt.GroupTitle.Font = wx.FFont(14, wx.FONTFAMILY_DEFAULT, face=headerFontName)
fmt.GroupTitle.Line(wx.BOTTOM, wx.BLUE, 4, toColor=wx.WHITE, space=5)
fmt.GroupTitle.Padding = (0, 12, 0, 12)
fmt.PageFooter.Font = wx.FFont(10, wx.FONTFAMILY_DEFAULT, face=headerFontName)
fmt.PageFooter.Background(wx.WHITE, wx.BLUE, space=(0, 4, 0, 4))
fmt.ColumnHeader.Font = wx.FFont(14, wx.FONTFAMILY_DEFAULT, wx.FONTFLAG_BOLD, face=headerFontName)
fmt.ColumnHeader.CellPadding = 2
fmt.ColumnHeader.Background(wx.Colour(192, 192, 192))
fmt.ColumnHeader.GridPen = wx.Pen(wx.WHITE, 1)
fmt.ColumnHeader.Padding = (0, 0, 0, 12)
fmt.ColumnHeader.AlwaysCenter = True
fmt.Row.Font = wx.FFont(12, wx.FONTFAMILY_DEFAULT, face=rowFontName)
fmt.Row.Line(wx.BOTTOM, pen=wx.Pen(wx.BLUE, 1, wx.DOT), space=3)
fmt.Row.CellPadding = 2
fmt.Row.CanWrap = True
return fmt
示例3: TooMuch
# 需要导入模块: import wx [as 别名]
# 或者: from wx import DOT [as 别名]
def TooMuch(headerFontName="Chiller", rowFontName="Gill Sans"):
"""
Return a reasonable default format for a report
"""
fmt = ReportFormat()
fmt.IsShrinkToFit = False
fmt.PageHeader.Font = wx.FFont(12, wx.FONTFAMILY_DECORATIVE, wx.FONTFLAG_BOLD, face=headerFontName)
fmt.PageHeader.TextColor = wx.WHITE
fmt.PageHeader.Background(wx.GREEN, wx.RED, space=(16, 4, 0, 4))
fmt.PageHeader.Padding = (0, 0, 0, 12)
fmt.ListHeader.Font = wx.FFont(24, wx.FONTFAMILY_DECORATIVE, face=headerFontName)
fmt.ListHeader.TextColor = wx.WHITE
fmt.ListHeader.Padding = (0, 12, 0, 12)
fmt.ListHeader.TextAlignment = wx.ALIGN_CENTER
fmt.ListHeader.Background(wx.RED, wx.GREEN, space=(16, 4, 0, 4))
fmt.GroupTitle.Font = wx.FFont(14, wx.FONTFAMILY_DECORATIVE, wx.FONTFLAG_BOLD, face=headerFontName)
fmt.GroupTitle.TextColor = wx.BLUE
fmt.GroupTitle.Padding = (0, 12, 0, 12)
fmt.GroupTitle.Line(wx.BOTTOM, wx.GREEN, 4, toColor=wx.WHITE, space=5)
fmt.PageFooter.Font = wx.FFont(10, wx.FONTFAMILY_DECORATIVE, face=headerFontName)
fmt.PageFooter.Line(wx.TOP, wx.GREEN, 2, toColor=wx.RED, space=3)
fmt.PageFooter.Padding = (0, 16, 0, 0)
fmt.ColumnHeader.Font = wx.FFont(14, wx.FONTFAMILY_SWISS, wx.FONTFLAG_BOLD, face=headerFontName)
fmt.ColumnHeader.Background(wx.Colour(255, 215, 0))
fmt.ColumnHeader.CellPadding = 5
fmt.ColumnHeader.GridPen = wx.Pen(wx.Colour(192, 192, 192), 1)
fmt.Row.Font = wx.FFont(12, wx.FONTFAMILY_SWISS, face=rowFontName)
fmt.Row.CellPadding = 5
fmt.Row.GridPen = wx.Pen(wx.BLUE, 1, wx.DOT)
fmt.Row.CanWrap = True
fmt.Watermark.TextColor = wx.Colour(233, 150, 122)
return fmt
#----------------------------------------------------------------------------