honki_tonks_zivilisationen_0.5.5305_cfbe2104/src/Globales/GlobaleKonstanten/Datentypen/TextKonstanten.ads

 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
with Ada.Strings.Wide_Wide_Unbounded; use Ada.Strings.Wide_Wide_Unbounded;

with BetriebssystemKonstanten;

package TextKonstanten is
   pragma Elaborate_Body;
   
   TrennzeichenTextdateien : constant Wide_Wide_Character := '#';
   TrennzeichenUnterschiedlich : constant Wide_Wide_Character := '|';
   Trennzeichen : constant Wide_Wide_Character := '/';
   
   LeerString : constant Wide_Wide_String := "";
   Leerzeichen : constant Wide_Wide_String (1 .. 1) := " ";
   Trennstrich : constant Wide_Wide_String (1 .. 3) := " - ";
   StandardAbstand : constant Wide_Wide_String (1 .. 4) := "    ";
   LangerAbstand : constant Wide_Wide_String (1 .. 10) := "          ";
   UmbruchAbstand : constant Wide_Wide_String (1 .. 5) := BetriebssystemKonstanten.LF & StandardAbstand;
   UnendlichGeklammert : constant Wide_Wide_String (1 .. 4) := " (∞)";
   Unendlich : constant Wide_Wide_String (1 .. 2) := " ∞";
   Haken : constant Wide_Wide_String (1 .. 2) := " ✔";
   Kreuz : constant Wide_Wide_String (1 .. 2) := " ✘";
   
   FehlenderText : constant Unbounded_Wide_Wide_String := To_Unbounded_Wide_Wide_String (Source => "ÄÖÜ Hier wurde kein Text eingelesen ÜÖÄ");
   LeerUnboundedString : constant Unbounded_Wide_Wide_String := To_Unbounded_Wide_Wide_String (Source => LeerString);
   LeerzeichenUnboundedString : constant Unbounded_Wide_Wide_String := To_Unbounded_Wide_Wide_String (Source => Leerzeichen);
   
end TextKonstanten;