#include <fixstr32.h>
Inheritance diagram for String_32:
Public Member Functions | |
String_32 (const TCHAR *psz=TEXT("")) | |
Constructs a string of the appropriate maximum length. | |
String_32 (const StringBase &other) | |
String_32 (const String_32 &other) | |
String_32 (UINT32 resID, UINT32 hinst=0) | |
Loads the string resource into this String. | |
String_32 (const wxString &wxs) | |
Constructs a string of the appropriate maximum length. | |
virtual | ~String_32 () |
Destroys this fixed-length string. | |
virtual BOOL | Alloc (INT32 nSize) |
Fixes Alloc() for fixed-length strings, which CAN be safely changed# to use a buffer on the heap. Scope: Public. | |
Private Member Functions | |
void | CopyConstruct (const StringBase &other) |
Duplicates the text of the other string. | |
Private Attributes | |
TCHAR | fixedbuf [(((32)+1)*2)] |
Static Private Attributes | |
static const INT32 | FIX_LEN_BUFSIZE |
class String_32 : public StringBase
Definition at line 115 of file fixstr32.h.
|
Constructs a string of the appropriate maximum length.
Definition at line 117 of file fixstr32.cpp. 00118 { 00119 *(text = fixedbuf) = 0; 00120 length = FIX_LEN_BUFSIZE; 00121 if (psz != 0) 00122 { 00123 ERROR3IF(camStrlen(psz) >= length, "String_32::String_32 overflow"); 00124 camStrcpy(text, psz); 00125 } 00126 }
|
|
Definition at line 124 of file fixstr32.h. 00124 { CopyConstruct( other ); }
|
|
Definition at line 125 of file fixstr32.h. 00125 { CopyConstruct( other ); }
|
|
Loads the string resource into this String.
Definition at line 172 of file fixstr32.cpp. 00173 { 00174 *(text = fixedbuf) = 0; 00175 length = FIX_LEN_BUFSIZE; 00176 if (!Load(resID, hinst)) 00177 { 00178 ERROR3("String resource failed to load"); 00179 TCHAR buf[128]; 00180 camSnprintf(buf, 128, TEXT("<%X:%X>"), (INT32) resID, (INT32) hinst); 00181 camStrcpy(text, (camStrlen(buf) <= 32) ? buf : TEXT("!")); 00182 } 00183 }
|
|
Constructs a string of the appropriate maximum length.
Definition at line 199 of file fixstr32.cpp. 00200 { 00201 *(text = fixedbuf) = 0; 00202 length = FIX_LEN_BUFSIZE; 00203 ERROR3IF(wxs.Len() >= length, "String_32::String_32 overflow"); 00204 camStrcpy(text, (LPCTSTR)wxs); 00205 }
|
|
Destroys this fixed-length string.
Definition at line 147 of file fixstr32.h. 00148 { 00149 // If the string is using the fixed-length buffer then make sure the 00150 // base class doesn't try to delete[] it. 00151 if (text == fixedbuf) text = 0; 00152 }
|
|
Fixes Alloc() for fixed-length strings, which CAN be safely changed# to use a buffer on the heap. Scope: Public.
Reimplemented from StringBase. Definition at line 220 of file fixstr32.cpp. 00221 { 00222 if (text == fixedbuf) text = 0; 00223 return StringBase::Alloc(nSize); 00224 }
|
|
Duplicates the text of the other string.
Definition at line 143 of file fixstr32.cpp. 00144 { 00145 *(text = fixedbuf) = 0; 00146 length = FIX_LEN_BUFSIZE; 00147 ERROR3IF((const TCHAR*) other == 0, "StringBase to be copied has not been ALLOCated"); 00148 ERROR3IF(camStrlen((const TCHAR*) other) >= length, 00149 "Constructed String_32 not large enough to hold StringBase copy"); 00150 camStrcpy(text, (const TCHAR*) other); 00151 }
|
|
Definition at line 117 of file fixstr32.h. |
|
Definition at line 133 of file fixstr32.h. |