Changeset 10605
- Timestamp:
- 03/02/11 17:44:38 (2 years ago)
- Files:
-
- 1 modified
-
documentation/ossie/user-guide-0.8.1/WaveDash.tex (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
documentation/ossie/user-guide-0.8.1/WaveDash.tex
r10396 r10605 108 108 component properties update immediately after adjusting a slider or after 109 109 pressing the Enter key. However, if you wish to wait and update several 110 properties at the same time, choose Options and uncheck Update As You Go. This110 properties at the same time, choose Options and check Update Properties on Refresh. This 111 111 will enable the green refresh arrows on components and for the waveform, as 112 112 shown in figure~\ref{fig:wavedash:wavedash_uncheck_update_as_you_go}. … … 115 115 \begin{center} 116 116 \includegraphics[scale=.7]{figures/wavedash/wavedash_uncheck_update_as_you_go} 117 \caption{Wavedash with Update As You Go disabled}117 \caption{Wavedash with Update Properties on Refresh enabled} 118 118 \label{fig:wavedash:wavedash_uncheck_update_as_you_go} 119 119 \end{center} 120 120 \end{figure} 121 121 122 When Update As You Go is unchecked, properties will not update until the refresh122 When Update Properties on Refresh is checked, properties will not update until the refresh 123 123 buttons are clicked, allowing the user to change several properties on one or 124 124 more components and update them all at the same time. … … 217 217 \end{figure} 218 218 219 219 \subsection{Wavedash Programming} 220 \label{section:wavedash_architecture} 221 Wavedash was designed using the Model-View-Controller architecture. This means that the Wavedash User Interface and the backend are separate pieces that can be used independently. If you know how to program using the Python programming language, you can use the Wavedash Controller code to write programs with all of the capabilities of Wavedash. OSSIE comes with a sample program (OSSIEDemo.py) illustrating how to make use of the Wavedash Controller. This program can be found in /usr/local/lib/python2.6/dist-packages/wavedash/src/. 222 223