Transitions compare the value of a keyword with a specified value. If the operator condition is met, a message is sent to the specified target object. Transitions have the following prototype: addTransition(keyword, operator, value, tgt, sel, ptr) For example, when the user selects Wireframe as the render style in the dialog box, Abaqus/CAE does the following:
These transitions can be described as follows:
You can write these transitions with the Abaqus GUI Toolkit as follows: self.addTransition(form.renderStyleKw, AFXTransition.EQ, WIREFRAME.getId(), showDottedBtn, MKUINT(FXWindow.ID_DISABLE, SEL_COMMAND), None) self.addTransition(form.renderStyleKw, AFXTransition.EQ, WIREFRAME.getId(), showEdgesBtn, MKUINT(FXWindow.ID_DISABLE, SEL_COMMAND), None) self.addTransition(form.renderStyleKw, AFXTransition.EQ, WIREFRAME.getId(), showSilhouetteBtn, MKUINT(FXWindow.ID_ENABLE, SEL_COMMAND), None) You can also pass additional user data to the object using the last argument of the addTransition method. Figure 1 shows an example that uses transitions to control how the application stipples widgets. Figure 1. An example of using transitions to control how the application
stipples widgets.
|