Last active
December 4, 2019 10:08
-
-
Save rohman/5300469 to your computer and use it in GitHub Desktop.
make popup yes no with kivy
This file contains 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
import kivy | |
from kivy.app import App | |
from kivy.lang import Builder | |
from kivy.uix.gridlayout import GridLayout | |
from kivy.uix.popup import Popup | |
from kivy.properties import StringProperty | |
Builder.load_string(''' | |
<ConfirmPopup>: | |
cols:1 | |
Label: | |
text: root.text | |
GridLayout: | |
cols: 2 | |
size_hint_y: None | |
height: '44sp' | |
Button: | |
text: 'Yes' | |
on_release: root.dispatch('on_answer','yes') | |
Button: | |
text: 'No' | |
on_release: root.dispatch('on_answer', 'no') | |
''') | |
class ConfirmPopup(GridLayout): | |
text = StringProperty() | |
def __init__(self,**kwargs): | |
self.register_event_type('on_answer') | |
super(ConfirmPopup,self).__init__(**kwargs) | |
def on_answer(self, *args): | |
pass | |
class PopupTest(App): | |
def build(self): | |
content = ConfirmPopup(text='Do You Love Kivy?') | |
content.bind(on_answer=self._on_answer) | |
self.popup = Popup(title="Answer Question", | |
content=content, | |
size_hint=(None, None), | |
size=(480,400), | |
auto_dismiss= False) | |
self.popup.open() | |
def _on_answer(self, instance, answer): | |
print "USER ANSWER: " , repr(answer) | |
self.popup.dismiss() | |
if __name__ == '__main__': | |
PopupTest().run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment