template main => sub {
    window {
        attr {
            id => "findfile-window", title => "Find Files", orient => "horizontal",
            xmlns => $::XUL_NAME_SPACE,
        }

        label { attr { value => 'Search for:', control => 'find-text' } }
        textbox { attr { id => 'find-text' } }

        button { attr { id => "find-button", label => 'Find' } }
        button { attr { id => "cancel-button", label => 'Cancel' } }
    };
};
