User:Barre

From KitwarePublic
Jump to navigationJump to search

<kw_bread_crumbs>prefix=» |small=1|bgcolor=F9F9F9|trim_prefix=User:|on_top_hack=1</kw_bread_crumbs>

Wiki

Slicer

C/C++

CMake stuff

  • Add a 'cvsupdate' target to update the source tree from the build tree:
ADD_CUSTOM_TARGET(cvsupdate ${CMAKE_COMMAND} -E chdir "${CMAKE_SOURCE_DIR}" "${CVSCOMMAND}" update)

State Machine

This is a graph with borders and nodes. Maybe there is an Imagemap used so the nodes may be linking to some Pages.

Wizard Workflow

This is a graph with borders and nodes. Maybe there is an Imagemap used so the nodes may be linking to some Pages.

Another one

digraph G {

 rankdir=LR;
 node [fontcolor="#000000", fontsize=9, fontname="Helvetica"];
 edge [fontcolor="#0000ff", fontsize=8, fontname="Helvetica"];
 1 [label="Operator|I\n[e]"];
 2 [label="Operator|V"];
 3 [label="Operand 1|I\n[e]"];
 4 [label="Operand 1|V"];
 5 [label="Operand 2|I\n[e]"];
 6 [label="Operand 2|V"];
 7 [label="Result|I\n[e]"];
 8 [label="Result|V"];
 9 [label="Go To"];
 1 -> 2 [label="validate [e]"];
 2 -> 1 [label="invalid"];
 3 -> 4 [label="validate [e]"];
 4 -> 3 [label="invalid"];
 2 -> 3 [label="valid [s]"];
 3 -> 1 [label="back to: Operator [s]"];
 5 -> 6 [label="validate [e]"];
 6 -> 5 [label="invalid"];
 4 -> 5 [label="valid [s]"];
 5 -> 3 [label="back to: Operand 1 [s]"];
 7 -> 8 [label="validate [e]"];
 8 -> 7 [label="invalid"];
 6 -> 7 [label="valid [s]"];
 7 -> 5 [label="back to: Operand 2 [s]"];
 4 -> 7 [label="valid 1/1 [s]"];
 7 -> 3 [label="back to: Operand 1 [s]"];
 1 -> 9 [label="go to: Result [e]"];
 9 -> 7 [label="go to: Result"];
 9 -> 1 [label="back to: Operator"];
 7 -> 1 [label="back to: Operator [s]"];
 3 -> 9 [label="go to: Result [e]"];
 9 -> 3 [label="back to: Operand 1"];
 5 -> 9 [label="go to: Result [e]"];
 9 -> 5 [label="back to: Operand 2"];
 subgraph cluster1 {
   fontcolor="#000000"; fontsize=10; fontname="Helvetica"; 
   style=dashed;
   label="Operator"
   1; 2; 
 }
 subgraph cluster2 {
   fontcolor="#000000"; fontsize=10; fontname="Helvetica"; 
   style=dashed;
   label="Operand 1"
   3; 4; 
 }
 subgraph cluster3 {
   fontcolor="#000000"; fontsize=10; fontname="Helvetica"; 
   style=dashed;
   label="Operand 2"
   5; 6; 
 }
 subgraph cluster4 {
   fontcolor="#000000"; fontsize=10; fontname="Helvetica"; 
   style=dashed;
   label="Result"
   7; 8; 
 }
 fontcolor="#000000";
 fontsize=12;
 fontname="Helvetica";
 label="KWWizardDialogExample 1.0";

}