summaryrefslogtreecommitdiff
path: root/graphics/tktexcad/config.py
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /graphics/tktexcad/config.py
Initial commit
Diffstat (limited to 'graphics/tktexcad/config.py')
-rw-r--r--graphics/tktexcad/config.py76
1 files changed, 76 insertions, 0 deletions
diff --git a/graphics/tktexcad/config.py b/graphics/tktexcad/config.py
new file mode 100644
index 0000000000..a6f894ed52
--- /dev/null
+++ b/graphics/tktexcad/config.py
@@ -0,0 +1,76 @@
+### CONFIGURATION FOR TkTeXCad
+
+### Sprache
+### Language
+### langage
+# 0 -> Deutsch, 1 -> English, 2 -> fran,cais
+LANG = 0
+
+### Vergroesserung (pixel pro pt)
+### Magnification (pixel per pt)
+### Agrandissement (pixel par pt)
+# anfangs gewählte ~
+# initial ~
+# ~ initiale
+FAKT = 2
+# anwählbare Vergrößerungen
+# selectable magnification
+# agrandissements sélectionnables
+FAKTS = [1, 2, 3, 5, 8, 11, 14, 17]
+
+### Neue Datei
+### New File
+### Fichier nouveau
+# Größe (x, y [pt]), Name der Hauptbildklasse
+# Size (x, y [pt]), name of the main picture class
+# Largeur (x, y [pt]), nom du classement principal
+NEWPIC = (200, 200, "main")
+
+### Ausgangsgröße des Fensters (x, y [Pixel])
+### Initial window size (x, y [pixel])
+### Taille de la fenêtre initiale (x, y [pixel])
+CANVASWIDTH = 500
+CANVASHEIGHT = 700
+
+### Abstand der Gitternetzlinien in pt
+### space between grid lines (pt)
+### distance entre droites de la quadrillage (pt)
+GRID = 5
+# Netz eingangs zeigen (1), sonst 0
+# Show grid on startup (1), otherwise 0
+# Afficher quadrillage à démarrage (1), sinon (0)
+FGRID = 1
+
+# Für \dashbox: Standardlänge von Linien (pt)
+# \dashbox: initial length of lines (pt)
+# \dashbox: longeur initiale des droites (pt)
+DEFAULTDASHLEN = 1
+
+### Farben
+### Colors
+### Couleurs
+# Hintergrund
+# Background
+#
+CANVASBG = "white"
+# Rahmenfarbe
+# Frame
+# fond
+PICFRAMECOL = "red" # Rahmen
+# markierte Elemente
+# marked Elements
+# elements sélectionnés
+SELECTCOL = "blue" # Markierung markierter Elemente
+# Netz
+# Grid
+# Quadrillage
+GRIDCOL = "yellow" # Farbe des Netzes
+# "Rahmen" eine \makebox
+# "Frame" of a \makebox
+# "cadre" d'un \makebox
+MAKEBOXCOL = "gray"
+
+# exportierte Dateien
+# exported files
+# fichiers exportés
+SUFFIX = ".tex"