User:Barre: Difference between revisions
From KitwarePublic
Jump to navigationJump to search
Line 23: | Line 23: | ||
digraph G { | digraph G { | ||
rankdir=LR; | rankdir=LR; | ||
node [fontcolor="#000000", fontsize= | node [fontcolor="#000000", fontsize=9, fontname="Helvetica"]; | ||
edge [fontcolor="#0000ff", fontsize=9, fontname="Helvetica"]; | edge [fontcolor="#0000ff", fontsize=9, fontname="Helvetica"]; | ||
Line 46: | Line 46: | ||
fontcolor="#000000"; | fontcolor="#000000"; | ||
fontsize= | fontsize=12; | ||
fontname="Helvetica"; | fontname="Helvetica"; | ||
label="State Machine Example"; | label="State Machine Example"; | ||
} | } | ||
</graphviz> | |||
== Wizard Workflow == | |||
<graphviz> | |||
digraph G { | |||
rankdir=LR; | |||
node [fontcolor="#000000", fontsize=9, fontname="Helvetica"]; | |||
edge [fontcolor="#0000ff", fontsize=9, fontname="Helvetica"]; | |||
1 [label="Start", peripheries=2]; | |||
2 [label="Finish", peripheries=2]; | |||
3 [label="Step1|Interaction"]; | |||
4 [label="Step1|Validation"]; | |||
5 [label="Step2|Interaction"]; | |||
6 [label="Step2|Validation"]; | |||
7 [label="Step3|Interaction"]; | |||
8 [label="Step3|Validation"]; | |||
3 -> 4 [label="Next"]; | |||
4 -> 3 [label="Invalid"]; | |||
5 -> 6 [label="Next"]; | |||
6 -> 5 [label="Invalid"]; | |||
4 -> 5 [label="Valid"]; | |||
7 -> 8 [label="Next"]; | |||
8 -> 7 [label="Invalid"]; | |||
6 -> 7 [label="Valid"]; | |||
1 -> 3 [label="Next"]; | |||
8 -> 2 [label="Valid"]; | |||
subgraph cluster1 { | |||
fontcolor="#000000"; | |||
fontsize=10; | |||
style=dashed; | |||
fontname="Helvetica"; | |||
label="Step1" | |||
3; | |||
4; | |||
} | |||
subgraph cluster2 { | |||
fontcolor="#000000"; | |||
fontsize=10; | |||
style=dashed; | |||
fontname="Helvetica"; | |||
label="Step2" | |||
5; | |||
6; | |||
} | |||
subgraph cluster3 { | |||
fontcolor="#000000"; | |||
fontsize=10; | |||
style=dashed; | |||
fontname="Helvetica"; | |||
label="Step3" | |||
7; | |||
8; | |||
} | |||
fontcolor="#000000"; | |||
fontsize=12; | |||
fontname="Helvetica"; | |||
label="Wizard Workflow Example"; | |||
} | |||
</graphviz> | </graphviz> |
Revision as of 17:38, 7 November 2006
<kw_bread_crumbs>prefix=» |small=1|bgcolor=F9F9F9|trim_prefix=User:|on_top_hack=1</kw_bread_crumbs>
Wiki
- MediaWiki topics, including my MediaWiki extensions
- TWiki topics
- DokuWiki
- Wiki Engine Comparison
Slicer
- Slicer topics
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
Wizard Workflow