diff --git a/diagrams/programming/flowchart.py b/diagrams/programming/flowchart.py new file mode 100644 index 0000000..1e7ecf1 --- /dev/null +++ b/diagrams/programming/flowchart.py @@ -0,0 +1,107 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _Programming + + +class _Flowchart(_Programming): + _type = "flowchart" + _icon_dir = "resources/programming/flowchart" + + +class Action(_Flowchart): + _icon = "action.png" + + +class Collate(_Flowchart): + _icon = "collate.png" + + +class Database(_Flowchart): + _icon = "database.png" + + +class Decision(_Flowchart): + _icon = "decision.png" + + +class Delay(_Flowchart): + _icon = "delay.png" + + +class Display(_Flowchart): + _icon = "display.png" + + +class Document(_Flowchart): + _icon = "document.png" + + +class InputOutput(_Flowchart): + _icon = "input-output.png" + + +class Inspection(_Flowchart): + _icon = "inspection.png" + + +class InternalStorage(_Flowchart): + _icon = "internal-storage.png" + + +class LoopLimit(_Flowchart): + _icon = "loop-limit.png" + + +class ManualInput(_Flowchart): + _icon = "manual-input.png" + + +class ManualLoop(_Flowchart): + _icon = "manual-loop.png" + + +class Merge(_Flowchart): + _icon = "merge.png" + + +class MultipleDocuments(_Flowchart): + _icon = "multiple-documents.png" + + +class OffPageConnectorLeft(_Flowchart): + _icon = "off-page-connector-left.png" + + +class OffPageConnectorRight(_Flowchart): + _icon = "off-page-connector-right.png" + + +class Or(_Flowchart): + _icon = "or.png" + + +class PredefinedProcess(_Flowchart): + _icon = "predefined-process.png" + + +class Preparation(_Flowchart): + _icon = "preparation.png" + + +class Sort(_Flowchart): + _icon = "sort.png" + + +class StartEnd(_Flowchart): + _icon = "start-end.png" + + +class StoredData(_Flowchart): + _icon = "stored-data.png" + + +class SummingJunction(_Flowchart): + _icon = "summing-junction.png" + + +# Aliases diff --git a/docs/nodes/programming.md b/docs/nodes/programming.md index 8240515..06ce37d 100644 --- a/docs/nodes/programming.md +++ b/docs/nodes/programming.md @@ -5,6 +5,33 @@ title: Programming Node classes list of programming provider. +## programming.flowchart + +- **diagrams.programming.flowchart.Action** +- **diagrams.programming.flowchart.Collate** +- **diagrams.programming.flowchart.Database** +- **diagrams.programming.flowchart.Decision** +- **diagrams.programming.flowchart.Delay** +- **diagrams.programming.flowchart.Display** +- **diagrams.programming.flowchart.Document** +- **diagrams.programming.flowchart.InputOutput** +- **diagrams.programming.flowchart.Inspection** +- **diagrams.programming.flowchart.InternalStorage** +- **diagrams.programming.flowchart.LoopLimit** +- **diagrams.programming.flowchart.ManualInput** +- **diagrams.programming.flowchart.ManualLoop** +- **diagrams.programming.flowchart.Merge** +- **diagrams.programming.flowchart.MultipleDocuments** +- **diagrams.programming.flowchart.OffPageConnectorLeft** +- **diagrams.programming.flowchart.OffPageConnectorRight** +- **diagrams.programming.flowchart.Or** +- **diagrams.programming.flowchart.PredefinedProcess** +- **diagrams.programming.flowchart.Preparation** +- **diagrams.programming.flowchart.Sort** +- **diagrams.programming.flowchart.StartEnd** +- **diagrams.programming.flowchart.StoredData** +- **diagrams.programming.flowchart.SummingJunction** + ## programming.framework - **diagrams.programming.framework.Angular** diff --git a/resources/programming/flowchart/action.png b/resources/programming/flowchart/action.png new file mode 100644 index 0000000..28205f4 Binary files /dev/null and b/resources/programming/flowchart/action.png differ diff --git a/resources/programming/flowchart/collate.png b/resources/programming/flowchart/collate.png new file mode 100644 index 0000000..2d5be1c Binary files /dev/null and b/resources/programming/flowchart/collate.png differ diff --git a/resources/programming/flowchart/database.png b/resources/programming/flowchart/database.png new file mode 100644 index 0000000..78eb171 Binary files /dev/null and b/resources/programming/flowchart/database.png differ diff --git a/resources/programming/flowchart/decision.png b/resources/programming/flowchart/decision.png new file mode 100644 index 0000000..40b9293 Binary files /dev/null and b/resources/programming/flowchart/decision.png differ diff --git a/resources/programming/flowchart/delay.png b/resources/programming/flowchart/delay.png new file mode 100644 index 0000000..b859d17 Binary files /dev/null and b/resources/programming/flowchart/delay.png differ diff --git a/resources/programming/flowchart/display.png b/resources/programming/flowchart/display.png new file mode 100644 index 0000000..1d50abf Binary files /dev/null and b/resources/programming/flowchart/display.png differ diff --git a/resources/programming/flowchart/document.png b/resources/programming/flowchart/document.png new file mode 100644 index 0000000..02bb83c Binary files /dev/null and b/resources/programming/flowchart/document.png differ diff --git a/resources/programming/flowchart/input-output.png b/resources/programming/flowchart/input-output.png new file mode 100644 index 0000000..4211d0a Binary files /dev/null and b/resources/programming/flowchart/input-output.png differ diff --git a/resources/programming/flowchart/inspection.png b/resources/programming/flowchart/inspection.png new file mode 100644 index 0000000..64fbdc0 Binary files /dev/null and b/resources/programming/flowchart/inspection.png differ diff --git a/resources/programming/flowchart/internal-storage.png b/resources/programming/flowchart/internal-storage.png new file mode 100644 index 0000000..65baf6e Binary files /dev/null and b/resources/programming/flowchart/internal-storage.png differ diff --git a/resources/programming/flowchart/loop-limit.png b/resources/programming/flowchart/loop-limit.png new file mode 100644 index 0000000..29813f9 Binary files /dev/null and b/resources/programming/flowchart/loop-limit.png differ diff --git a/resources/programming/flowchart/manual-input.png b/resources/programming/flowchart/manual-input.png new file mode 100644 index 0000000..517786a Binary files /dev/null and b/resources/programming/flowchart/manual-input.png differ diff --git a/resources/programming/flowchart/manual-loop.png b/resources/programming/flowchart/manual-loop.png new file mode 100644 index 0000000..13d1e9f Binary files /dev/null and b/resources/programming/flowchart/manual-loop.png differ diff --git a/resources/programming/flowchart/merge.png b/resources/programming/flowchart/merge.png new file mode 100644 index 0000000..d6a5851 Binary files /dev/null and b/resources/programming/flowchart/merge.png differ diff --git a/resources/programming/flowchart/multiple-documents.png b/resources/programming/flowchart/multiple-documents.png new file mode 100644 index 0000000..ed376aa Binary files /dev/null and b/resources/programming/flowchart/multiple-documents.png differ diff --git a/resources/programming/flowchart/off-page-connector-left.png b/resources/programming/flowchart/off-page-connector-left.png new file mode 100644 index 0000000..afc8d5b Binary files /dev/null and b/resources/programming/flowchart/off-page-connector-left.png differ diff --git a/resources/programming/flowchart/off-page-connector-right.png b/resources/programming/flowchart/off-page-connector-right.png new file mode 100644 index 0000000..a128250 Binary files /dev/null and b/resources/programming/flowchart/off-page-connector-right.png differ diff --git a/resources/programming/flowchart/or.png b/resources/programming/flowchart/or.png new file mode 100644 index 0000000..2cb2402 Binary files /dev/null and b/resources/programming/flowchart/or.png differ diff --git a/resources/programming/flowchart/predefined-process.png b/resources/programming/flowchart/predefined-process.png new file mode 100644 index 0000000..f052d7b Binary files /dev/null and b/resources/programming/flowchart/predefined-process.png differ diff --git a/resources/programming/flowchart/preparation.png b/resources/programming/flowchart/preparation.png new file mode 100644 index 0000000..50aab19 Binary files /dev/null and b/resources/programming/flowchart/preparation.png differ diff --git a/resources/programming/flowchart/sort.png b/resources/programming/flowchart/sort.png new file mode 100644 index 0000000..08718b4 Binary files /dev/null and b/resources/programming/flowchart/sort.png differ diff --git a/resources/programming/flowchart/start-end.png b/resources/programming/flowchart/start-end.png new file mode 100644 index 0000000..4772c36 Binary files /dev/null and b/resources/programming/flowchart/start-end.png differ diff --git a/resources/programming/flowchart/stored-data.png b/resources/programming/flowchart/stored-data.png new file mode 100644 index 0000000..972e560 Binary files /dev/null and b/resources/programming/flowchart/stored-data.png differ diff --git a/resources/programming/flowchart/summing-junction.png b/resources/programming/flowchart/summing-junction.png new file mode 100644 index 0000000..47e876b Binary files /dev/null and b/resources/programming/flowchart/summing-junction.png differ