Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Simple Rebol Menu (See related posts)

Here's a quick way to add menus to your Rebol scripts. It's taken from the tutorial at http://musiclessonz.com/rebol_tutorial.html. See that page for the fully commented example.


Rebol [Title: "Simple Menu Example"]

view center-face gui: layout/size [

    at 100x100 H3 "You selected:"
    display: field

    origin 2x2 space 5x5 across
    at -200x-200 file-menu: text-list "item1" "item2" "quit" [
        switch value [
            "item1" [
                face/offset: -200x-200
                show file-menu
                ; PUT YOUR CODE HERE:
                set-face display "File / item1"
            ]
            "item2" [
                face/offset: -200x-200
                show file-menu
                ; PUT YOUR CODE HERE:
                set-face display "File / item2"
            ]
            "quit" [quit]
        ]
    ]

    at 2x2
    text bold "File" [
        either (face/offset + 0x22) = file-menu/offset [
            file-menu/offset: -200x-200
            show file-menu
        ][
            file-menu/offset: (face/offset + 0x22)
            show file-menu
        ]
    ]

    text bold "Help" [
        file-menu/offset: -200x-200
        show file-menu
        ; PUT YOUR CODE HERE:
        set-face display "Help"
    ]
] 400x300

Comments on this post

gregg.irwin posts on Feb 14, 2006 at 19:25
Nice Nick! Could you add some tags to this so I can find it again later (e.g. REBOL, menu). Thanks!
peter posts on Feb 14, 2006 at 20:41
I've added the tags. This inspires me to add the "add this snippet to my collection" feature sometime soon.. :)
Nick_Antonaccio posts on Feb 15, 2006 at 15:28
Peter: Thanks for doing that (and for a great site!)
Gregg: Your contributions have always been a great motivator for me :) I'm digging through your _113_ posts right now!

You need to create an account or log in to post comments to this site.


Click here to browse all 5059 code snippets

Related Posts