限制StaticText宽度

时间:2011-11-28 21:06:33

标签: python wxpython

我有一个带有几个大小调整器和一些仪表的面板,我想扩展到放置面板的区域或框架的大小,其工作正常。我遇到了一个问题,但是当静态文本增加到大于可用空间的大小时,会将面板边缘和仪表扩展到屏幕或可见区域。我想知道是否有一种方法可以阻止文本通过使用...来缩短它而不指定精确的大小,基本上它就知道显示区域的边缘在哪里。我可以通过将我更新的文本移动到他们自己的面板上来解决这个问题,这样我就可以在他们的面板上调用Update,让测量仪的尺寸相同,但是文本仍然用完了我的StaticBox并且显示屏上没有理想的。

我可以将文本包装成一行,但我注意到空格处的换行符,因为我的长文本是一个文件路径,它可能没有空格,是否可以打破除空格之外的其他内容?

包装或截断都可以,只是为了阻止它在

上运行

1 个答案:

答案 0 :(得分:2)

你无法包装StaticText内容,那么我唯一的解决方案 可以看到是“椭圆化”它,即通过前置或缩短它 将“...”附加到文件路径。然而,要做到这一点,我相信你的 最好的选择是去所有者绘制(或简单的子类 wx.lib.stattext),测量OnSize事件的文本大小 控制,如果需要,在你的路径前面加上/ ......“

附上一个概念证明,最后是“椭圆化”(即, 附加“...”并在末尾截断文件名)。我收集它 将...扩展到“...”而不是“...”是微不足道的 追加。

哦,顺便说一句,在wxPython 2.9中你也可以使用 wx.StaticText.Ellipsize到(也许)做同样的事情,虽然我有 从来没有用过它。

代码示例:

import wx
from wx.lib.stattext import GenStaticText as StaticText

if wx.Platform == "__WXMAC__":
    from Carbon.Appearance import kThemeBrushDialogBackgroundActive


class EllipticStaticText(StaticText):

    def __init__(self, parent, id=wx.ID_ANY, label='', pos=wx.DefaultPosition, size=wx.DefaultSize,
                 style=0, name="ellipticstatictext"):
        """
        Default class constructor.

        :param `parent`: the L{EllipticStaticText} parent. Must not be ``None``;
        :param `id`: window identifier. A value of -1 indicates a default value;
        :param `label`: the text label;
        :param `pos`: the control position. A value of (-1, -1) indicates a default position,
         chosen by either the windowing system or wxPython, depending on platform;
        :param `size`: the control size. A value of (-1, -1) indicates a default size,
         chosen by either the windowing system or wxPython, depending on platform;
        :param `style`: the static text style;
        :param `name`: the window name.
        """

        StaticText.__init__(self, parent, id, label, pos, size, style, name)

        self.Bind(wx.EVT_SIZE, self.OnSize)
        self.Bind(wx.EVT_PAINT, self.OnPaint)
        self.Bind(wx.EVT_ERASE_BACKGROUND, self.OnEraseBackground)


    def OnSize(self, event):
        """
        Handles the ``wx.EVT_SIZE`` event for L{EllipticStaticText}.

        :param `event`: a `wx.SizeEvent` event to be processed.
        """

        event.Skip()
        self.Refresh()


    def OnEraseBackground(self, event):
        """
        Handles the ``wx.EVT_ERASE_BACKGROUND`` event for L{EllipticStaticText}.

        :param `event`: a `wx.EraseEvent` event to be processed.

        :note: This is intentionally empty to reduce flicker.
        """

        pass


    def OnPaint(self, event):
        """
        Handles the ``wx.EVT_PAINT`` event for L{EllipticStaticText}.

        :param `event`: a `wx.PaintEvent` to be processed.
        """

        dc = wx.BufferedPaintDC(self)        
        width, height = self.GetClientSize()

        if not width or not height:
            return

        clr = self.GetBackgroundColour()

        if wx.Platform == "__WXMAC__":
            # if colour is still the default then use the theme's  background on Mac
            themeColour = wx.MacThemeColour(kThemeBrushDialogBackgroundActive)
            backBrush = wx.Brush(themeColour)
        else:
            backBrush = wx.Brush(clr, wx.SOLID)

        dc.SetBackground(backBrush)
        dc.Clear()

        if self.IsEnabled():
            dc.SetTextForeground(self.GetForegroundColour())
        else:
            dc.SetTextForeground(wx.SystemSettings.GetColour(wx.SYS_COLOUR_GRAYTEXT))

        dc.SetFont(self.GetFont())

        label = self.GetLabel()
        text = self.ChopText(dc, label, width)

        dc.DrawText(text, 0, 0)


    def ChopText(self, dc, text, max_size):
        """
        Chops the input `text` if its size does not fit in `max_size`, by cutting the
        text and adding ellipsis at the end.

        :param `dc`: a `wx.DC` device context;
        :param `text`: the text to chop;
        :param `max_size`: the maximum size in which the text should fit.
        """

        # first check if the text fits with no problems
        x, y = dc.GetTextExtent(text)

        if x <= max_size:
            return text

        textLen = len(text)
        last_good_length = 0

        for i in xrange(textLen, -1, -1):
            s = text[0:i]
            s += "..."

            x, y = dc.GetTextExtent(s)
            last_good_length = i

            if x < max_size:
                break

        ret = text[0:last_good_length] + "..."    
        return ret


    def Example():

        app = wx.PySimpleApp()
        frame = wx.Frame(None, -1, "EllipticStaticText example ;-)", size=(400, 300))

        panel = wx.Panel(frame, -1)
        sizer = wx.BoxSizer(wx.VERTICAL)

        elliptic = EllipticStaticText(panel, -1, r"F:\myreservoir\re\util\python\hm_evaluation\data\HM_Evaluation_0.9.9.7.exe")
        whitePanel = wx.Panel(panel, -1)
        whitePanel.SetBackgroundColour(wx.WHITE)

        sizer.Add(elliptic, 0, wx.ALL|wx.EXPAND, 10)
        sizer.Add(whitePanel, 1, wx.ALL|wx.EXPAND, 10)

        panel.SetSizer(sizer)
        sizer.Layout()

        frame.CenterOnScreen()
        frame.Show()

        app.MainLoop()


    if __name__ == "__main__":

        Example()