Initial revision
[swftools.git] / pdf2swf / xpdf / GString.h
1 //========================================================================
2 //
3 // GString.h
4 //
5 // Simple variable-length string type.
6 //
7 // Copyright 1996 Derek B. Noonburg
8 //
9 //========================================================================
10
11 #ifndef GSTRING_H
12 #define GSTRING_H
13
14 #ifdef __GNUC__
15 #pragma interface
16 #endif
17
18 #include <string.h>
19
20 class GString {
21 public:
22
23   // Create an empty string.
24   GString();
25
26   // Create a string from a C string.
27   GString(const char *s1);
28
29   // Create a string from <length1> chars at <s1>.  This string
30   // can contain null characters.
31   GString (const char *s1, int length1);
32
33   // Copy a string.
34   GString(GString *str);
35   GString *copy() { return new GString(this); }
36
37   // Concatenate two strings.
38   GString(GString *str1, GString *str2);
39
40   // Convert an integer to a string.
41   static GString *fromInt(int x);
42
43   // Destructor.
44   ~GString();
45
46   // Get length.
47   int getLength() { return length; }
48
49   // Get C string.
50   char *getCString() { return s; }
51
52   // Get <i>th character.
53   char getChar(int i) { return s[i]; }
54
55   // Change <i>th character.
56   void setChar(int i, char c) { s[i] = c; }
57
58   // Clear string to zero length.
59   GString *clear();
60
61   // Append a character or string.
62   GString *append(char c);
63   GString *append(GString *str);
64   GString *append(const char *str);
65   GString *append(const char *str, int length1);
66
67   // Insert a character or string.
68   GString *insert(int i, char c);
69   GString *insert(int i, GString *str);
70   GString *insert(int i, const char *str);
71   GString *insert(int i, const char *str, int length1);
72
73   // Delete a character or range of characters.
74   GString *del(int i, int n = 1);
75
76   // Convert string to all-upper/all-lower case.
77   GString *upperCase();
78   GString *lowerCase();
79
80   // Compare two strings:  -1:<  0:=  +1:>
81   // These functions assume the strings do not contain null characters.
82   int cmp(GString *str) { return strcmp(s, str->getCString()); }
83   int cmpN(GString *str, int n) { return strncmp(s, str->getCString(), n); }
84   int cmp(const char *s1) { return strcmp(s, s1); }
85   int cmpN(const char *s1, int n) { return strncmp(s, s1, n); }
86
87 private:
88
89   int length;
90   char *s;
91
92   void resize(int length1);
93 };
94
95 #endif