Changeset 10605

Show
Ignore:
Timestamp:
03/02/11 17:44:38 (2 years ago)
Author:
Snyder.Jason
Message:

changed 'update as you go' to 'update properties on refresh'. added a section about programming with the wavedash backend

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • documentation/ossie/user-guide-0.8.1/WaveDash.tex

    r10396 r10605  
    108108component properties update immediately after adjusting a slider or after 
    109109pressing 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. This 
     110properties at the same time, choose Options and check Update Properties on Refresh. This 
    111111will enable the green refresh arrows on components and for the waveform, as 
    112112shown in figure~\ref{fig:wavedash:wavedash_uncheck_update_as_you_go}.  
     
    115115\begin{center} 
    116116\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} 
    118118\label{fig:wavedash:wavedash_uncheck_update_as_you_go} 
    119119\end{center} 
    120120\end{figure} 
    121121 
    122 When Update As You Go is unchecked, properties will not update until the refresh 
     122When Update Properties on Refresh is checked, properties will not update until the refresh 
    123123buttons are clicked, allowing the user to change several properties on one or 
    124124more components and update them all at the same time.  
     
    217217\end{figure} 
    218218 
    219  
     219\subsection{Wavedash Programming} 
     220\label{section:wavedash_architecture} 
     221Wavedash 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