Created
April 15, 2015 17:44
-
-
Save ericdill/9875d22c2a83806b0010 to your computer and use it in GitHub Desktop.
button_menu.enaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#------------------------------------------------------------------------------ | |
# Copyright (c) 2013, Nucleic Development Team. | |
# | |
# Distributed under the terms of the Modified BSD License. | |
# | |
# The full license is in the file COPYING.txt, distributed with this software. | |
#------------------------------------------------------------------------------ | |
""" An example of using the `Menu` widget as a context menu. | |
<< autodoc-me >> | |
""" | |
from enaml.widgets.api import * | |
from enaml.stdlib.fields import FloatField | |
enamldef SampleAction(Action): | |
text = '%s action %d' % (parent.title, parent.children.index(self)) | |
triggered :: print text | |
enamldef SampleMenu(Menu): | |
SampleAction: pass | |
SampleAction: pass | |
SampleAction: pass | |
Container: | |
Form: | |
Label: | |
text = 'Energy' | |
FloatField: | |
value = 10. | |
enamldef Main(Window): | |
Container: | |
Field: | |
text = 'foo' | |
Field: | |
text = 'bar' | |
SampleMenu: | |
title = 'bar' | |
context_menu = True | |
Field: | |
text = 'baz' | |
SampleMenu: | |
title = 'baz' | |
context_menu = True | |
PushButton: | |
text = 'its a button!' | |
SampleMenu: | |
title = 'button menu' | |
context_menu = True |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Run this with
enaml-run button_menu.enaml