示例#1
0
文件: CustomButton.py 项目: Afey/pyjs
    def onClick(self, sender=None):
        """
        Called when the user finishes clicking on this button.
        The default behavior is to fire the click event to
        listeners. Subclasses that override onClickStart() should
        override this method to restore the normal widget display.
        """
        # Allow the click we're about to synthesize to pass through to the
        # superclass and containing elements. Element.dispatchEvent() is
        # synchronous, so we simply set and clear the flag within this method.
        self.allowClick = True

        # Mouse coordinates are not always available (e.g., when the click is
        # caused by a keyboard event).
        evt = None # we NEED to initialize evt, to be in the same namespace
                   # as the evt *inside* of JS block

        # We disallow setting the button here, because IE doesn't provide the
        # button property for click events.

        # there is a good explanation about all the arguments of initMouseEvent
        # at: https://developer.mozilla.org/En/DOM:event.initMouseEvent

        DOM.buttonClick(self.getElement())
        self.allowClick = False
示例#2
0
    def onClick(self, sender=None):
        """
        Called when the user finishes clicking on this button.
        The default behavior is to fire the click event to
        listeners. Subclasses that override onClickStart() should
        override this method to restore the normal widget display.
        """
        # Allow the click we're about to synthesize to pass through to the
        # superclass and containing elements. Element.dispatchEvent() is
        # synchronous, so we simply set and clear the flag within this method.
        self.allowClick = True

        # Mouse coordinates are not always available (e.g., when the click is
        # caused by a keyboard event).
        evt = None # we NEED to initialize evt, to be in the same namespace
                   # as the evt *inside* of JS block

        # We disallow setting the button here, because IE doesn't provide the
        # button property for click events.

        # there is a good explanation about all the arguments of initMouseEvent
        # at: https://developer.mozilla.org/En/DOM:event.initMouseEvent

        DOM.buttonClick(self.getElement())
        self.allowClick = False
示例#3
0
文件: EventTest.py 项目: Afey/pyjs
    def testButtonClick(self):

        self.buttonClickTestOccurred = False

        self.b = Button("Click Me", self)
        RootPanel('tests').add(self.b)
        self.write_test_output('addButton')

        # simulate button click
        DOM.buttonClick(self.b.getElement())

        if not RootPanel('tests').remove(self.b):
            self.fail("Button added but apparently not owned by RootPanel()")
        self.write_test_output('removeButton')
示例#4
0
    def testButtonClick(self):

        self.buttonClickTestOccurred = False

        self.b = Button("Click Me", self)
        RootPanel('tests').add(self.b)
        self.write_test_output('addButton')

        # simulate button click
        DOM.buttonClick(self.b.getElement())

        if not RootPanel('tests').remove(self.b):
            self.fail("Button added but apparently not owned by RootPanel()")
        self.write_test_output('removeButton')