Le 12/10/16 à 14:28, Denis Kudriashov a écrit :
Hi Stef.

It is really good idea. And it makes me think why we ask users for real icon Form and not just name?

We could say any component which shows icons should be created with concrete ThemeIcons ("Smalltalk ui icons" by default) to retrieve actual form by name. And users should always specify icon names instead of forms.

I think that tools should be parametrized with an icon provider object.

Stef


What you think?


2016-10-12 13:25 GMT+02:00 stepharo <steph...@free.fr <mailto:steph...@free.fr>>:

    Hi glamourers and other

    Hi

    I'm currently enhancing the API of Settings to propose to the
    users to pass not an icon but an icon named so that all the
    clients are not force to use. See below.

    Now it would be great if Glamour could do the same.

    Doru and Andrei?


    menuOn: aBuilder
        "Specify the menu used when writing text."
        <contextMenu>
        <RubLineNumberMenu>
        (aBuilder item: #'Find...' translated)
            keyText: 'f';
            selector: #find;
            icon: (Smalltalk ui icons iconNamed: #smallFindIcon)

    ====>

    menuOn: aBuilder
        "Specify the menu used when writing text."
        <contextMenu>
        <RubLineNumberMenu>
        (aBuilder item: #'Find...' translated)
            keyText: 'f';
            selector: #find;
            iconNamed: #smallFindIcon


    Stef





Reply via email to