1

我的应用程序中有一个按钮,我希望它的尺寸​​为 23x23 像素,库存图标为 16x16 像素。

我想出了:

closeButton = gtk.ToolButton(gtk.STOCK_CLOSE)
closeButton.set_size_request(23, 23)

但此代码仅更改按钮的大小而不更改图标的大小:/

如何在我的按钮上缩放股票图标?是否有任何小版本的库存商品?像 gtk.STOCK_SMALL_CLOSE 之类的东西?

编辑这是测试创建小库存项目的可能性的示例程序

import gtk

class Tab(gtk.VBox):
    def __init__(self, caption):
        gtk.VBox.__init__(self)
        self.Label = self.__createLabel(caption)
        self.show_all()

    def __createLabel(self, caption):
        hbox = gtk.HBox()
        label = gtk.Label(caption)
        hbox.pack_start(label, True, True)
        closeButton = gtk.ToolButton(self._getCloseIcon())
        hbox.pack_start(closeButton, False, False)
        hbox.show_all()
        return hbox

    def _getCloseIcon(self):
        raise NotImplementedError

class TabWithNormalIcons(Tab):
    def __init__(self, caption):
        Tab.__init__(self, caption)

    def _getCloseIcon(self):
        return gtk.STOCK_CLOSE

class TabWithImage16Icons(Tab):
    def __init__(self, caption):
        Tab.__init__(self, caption)

    def _getCloseIcon(self):
        return gtk.image_new_from_stock(gtk.STOCK_CLOSE, 16)

class TabWithSmallToolbarIcons(Tab):
    def __init__(self, caption):
        Tab.__init__(self, caption)

    def _getCloseIcon(self):
        return gtk.image_new_from_stock(gtk.STOCK_CLOSE, gtk.ICON_SIZE_SMALL_TOOLBAR)

class TabWithMenuIcons(Tab):
    def __init__(self, caption):
        Tab.__init__(self, caption)

    def _getCloseIcon(self):
        return gtk.image_new_from_stock(gtk.STOCK_CLOSE, gtk.ICON_SIZE_MENU)

class App(gtk.Window):
    def __init__(self):
        gtk.Window.__init__(self, gtk.WINDOW_TOPLEVEL)
        self.connect('destroy', lambda event: gtk.main_quit())
        self.set_default_size(640, 480)
        notebook = gtk.Notebook()
        tabNumber = 1

        #Icon normal sizes
        for i in range(3):
            tab = TabWithNormalIcons('Tab %s' % str(tabNumber))
            notebook.append_page(tab, tab.Label)
            tabNumber += 1

        #Icons with 16 pixel Image
        for i in range(3):
            tab = TabWithImage16Icons('Tab %s' % str(tabNumber))
            notebook.append_page(tab, tab.Label)
            tabNumber += 1

        #Icons with small toolbar images
        for i in range(3):
            tab = TabWithSmallToolbarIcons('Tab %s' % str(tabNumber))
            notebook.append_page(tab, tab.Label)
            tabNumber += 1

        #Icons with menu images
        for i in range(3):
            tab = TabWithMenuIcons('Tab %s' % str(tabNumber))
            notebook.append_page(tab, tab.Label)
            tabNumber += 1
        self.add(notebook)
        self.show_all()

a = App()
gtk.main()
4

2 回答 2

2

我有一个类似的问题并在 C 中解决了这个问题,虽然我不是 Python 程序员,但我可以给你一个相关函数的提示,所以你也许可以完成你的任务:

首先,您使用 gtk.Widget.render_icon 从股票图标中创建一个 pixbuf。然后,通过 gtk.gdk.Pixbuf.scale_simple,您可以将其调整为所需的任何大小。作为最后一步,您可以从此 pixbuf 创建图像并将其用作按钮。

与相应的 C 函数完美配合。

于 2012-12-04T02:59:20.470 回答
2

set_size_request仅定义您希望小部件具有的最小尺寸。所以确实,它不会缩放孩子,当它的孩子需要时,它也不会阻止它成长。如果可以,那将不是您想要的:它仍然会绘制大图标,但会将其剪辑到按钮上。

所以你想要的是让你的库存商品具有不同的尺寸。我认为最简单的方法是创建一个 gtk.Image,您可以在其中指定库存大小。然后将该图像小部件插入您的按钮而不是库存值。

所以在代码中:

image = gtk.image_new_from_stock (gtk.STOCK_CLOSE, gtk.ICON_SIZE_SMALL_TOOLBAR)
closeButton = gtk.Button ()
closeButton.add (image)
closeButton.set_size_request (23, 23)
于 2012-12-01T12:35:00.893 回答