-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gui.chart-function.xml
More file actions
101 lines (101 loc) · 4.8 KB
/
Copy pathsettings.gui.chart-function.xml
File metadata and controls
101 lines (101 loc) · 4.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?xml version="1.0" encoding="UTF-8"?>
<gui>
<toplevel geometry="400x450" resizable-x="False" resizable-y="False" takefocus="True" title="Function Chart Options">
<frame bd="2" padx="10" pady="10" relief="sunken">
<pack expand="True" fill="both" />
<row num="0" weight="1" />
<row num="1" weight="0" />
<row num="2" weight="0" />
<tabs>
<grid column="0" sticky="wnes" row="0">
<column num="0" weight="1" />
</grid>
<tab text="Beschriftung">
<frame bd="2" padx="10" pady="10" relief="raised">
<grid column="0" sticky="wnes" row="0">
<column num="0" weight="1" />
</grid>
<labelframe padx="5" pady="7" text="Beschriftung">
<grid column="0" sticky="wne" row="0">
<column num="0" weight="1" />
</grid>
<label text="Diagramm Titel">
<grid column="0" sticky="w" row="0" />
</label>
<entry id="options-chart-title-chart" textvariable="">
<grid column="0" sticky="nwe" row="1" />
</entry>
<label text="Abszissenachse:">
<grid column="0" sticky="w" row="2" />
</label>
<entry id="options-chart-title-abscissa" textvariable="">
<grid column="0" sticky="nwe" row="3" />
</entry>
<label text="Ordinatenachse:">
<grid column="0" sticky="w" row="4" />
</label>
<entry id="options-chart-title-ordinate" textvariable="">
<grid column="0" sticky="nwe" row="5" />
</entry>
<label text=" ">
<grid column="0" sticky="w" row="4" />
</label>
<checkbutton id="options-chart-legend" textvariable="Legende anzeigen">
<grid column="0" sticky="nwe" row="6" />
</checkbutton>
</labelframe>
</frame>
</tab>
<tab text="Extrapolation">
<frame bd="2" padx="10" pady="10" relief="raised">
<grid column="0" sticky="wnes" row="0">
<column num="0" weight="1" />
</grid>
<labelframe padx="5" pady="7" text="Splines">
<grid column="0" sticky="wne" row="1">
<column num="0" weight="1" />
</grid>
<label text="Splines aktiviert:">
<grid column="0" sticky="w" row="0" />
</label>
<checkbutton id="options-chart-splines" textvariable="Splines aktiviert">
<grid column="0" sticky="w" row="1" />
</checkbutton>
<label text="Neue Länge:">
<grid column="0" sticky="w" row="2" />
</label>
<entry id="options-chart-splines-new-length" textvariable="">
<grid column="0" sticky="nwe" row="3" />
</entry>
</labelframe>
</frame>
</tab>
</tabs>
<frame pady="9">
<grid column="0" sticky="esw" row="1">
<column num="0" weight="1" />
</grid>
<label text=" ">
<pack />
</label>
</frame>
<frame>
<grid column="0" sticky="esw" row="1">
<column num="0" weight="1" />
</grid>
<frame>
<pack side="right" />
<button id="options-button-chart-function" padx="3" text="Erstellen">
<pack />
</button>
</frame>
<frame padx="10">
<pack side="right" />
<button id="options-button-abort" padx="3" text="Abbrechen">
<pack />
</button>
</frame>
</frame>
</frame>
</toplevel>
</gui>