Skip to content

Instantly share code, notes, and snippets.

@ericdill
Created April 15, 2015 17:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericdill/9875d22c2a83806b0010 to your computer and use it in GitHub Desktop.
Save ericdill/9875d22c2a83806b0010 to your computer and use it in GitHub Desktop.
button_menu.enaml
#------------------------------------------------------------------------------
# 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
@ericdill
Copy link
Author

Run this with enaml-run button_menu.enaml

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment