Qyoto  4.0.5
Qyoto is a C# language binding for Qt
 All Classes Namespaces Functions Variables Typedefs Enumerations Properties
QtCore.QLatin1String Class Reference

The QLatin1String class provides a thin wrapper around an US-ASCII/Latin-1 encoded string literal. More...

Inheritance diagram for QtCore.QLatin1String:
Collaboration diagram for QtCore.QLatin1String:

Public Member Functions

override bool Equals (object o)
 
override int GetHashCode ()
 
 QLatin1String (QLatin1String copy)
 
 
 QLatin1String (string s)
 
 
virtual void CreateProxy ()
 
new string Latin1 ()
 
 
new void Dispose ()
 

Static Public Member Functions

static bool operator!= (QLatin1String arg1, QStringRef arg2)
 
 
static bool operator== (QLatin1String arg1, QStringRef arg2)
 
 
static bool operator!= (QLatin1String arg1, string arg2)
 
 
static bool operator< (QLatin1String arg1, string arg2)
 
 
static bool operator<= (QLatin1String arg1, string arg2)
 
 
static bool operator== (QLatin1String arg1, string arg2)
 
 
static bool operator> (QLatin1String arg1, string arg2)
 
 
static bool operator>= (QLatin1String arg1, string arg2)
 
 

Protected Member Functions

 QLatin1String (System.Type dummy)
 

Protected Attributes

SmokeInvocation interceptor
 

Properties

virtual System.IntPtr SmokeObject [get, set]
 

Detailed Description

The QLatin1String class provides a thin wrapper around an US-ASCII/Latin-1 encoded string literal.

Many of QString's member functions are overloaded to accept const char * instead of QString. This includes the copy constructor, the assignment operator, the comparison operators, and various other functions such as insert(), replace(), and indexOf(). These functions are usually optimized to avoid constructing a QString object for the const char * data. For example, assuming str is a QString,

if (str == "auto" || str == "extern"

|| str == "static" || str == "register") {

...

}

is much faster than

if (str == QString("auto") || str == QString("extern")

|| str == QString("static") || str == QString("register")) {

...

}

because it doesn't construct four temporary QString objects and make a deep copy of the character data.

Applications that define QT_NO_CAST_FROM_ASCII (as explained in the QString documentation) don't have access to QString's const char * API. To provide an efficient way of specifying constant Latin-1 strings, Qt provides the QLatin1String, which is just a very thin wrapper around a const char *. Using QLatin1String, the example code above becomes

if (str == QLatin1String("auto")

|| str == QLatin1String("extern")

|| str == QLatin1String("static")

|| str == QLatin1String("register") {

...

}

This is a bit longer to type, but it provides exactly the same benefits as the first version of the code, and is faster than converting the Latin-1 strings using QString::fromLatin1().

Thanks to the QString(const QLatin1String &) constructor, QLatin1String can be used everywhere a QString is expected. For example:

QLabel *label = new QLabel(QLatin1String("MOD"), this);

See also QString and QLatin1Char.

Constructor & Destructor Documentation

QtCore.QLatin1String.QLatin1String ( System.Type  dummy)
protected
QtCore.QLatin1String.QLatin1String ( QLatin1String  copy)

Constructs a QLatin1String object that stores str. Note that if str is 0, an empty string is created; this case is handled by QString.

The string data is not copied. The caller must be able to guarantee that str will not be deleted or modified as long as the QLatin1String object exists.

See also latin1().

QtCore.QLatin1String.QLatin1String ( string  s)

Constructs a QLatin1String object that stores str. Note that if str is 0, an empty string is created; this case is handled by QString.

The string data is not copied. The caller must be able to guarantee that str will not be deleted or modified as long as the QLatin1String object exists.

See also latin1().

Member Function Documentation

virtual void QtCore.QLatin1String.CreateProxy ( )
virtual
new void QtCore.QLatin1String.Dispose ( )
override bool QtCore.QLatin1String.Equals ( object  o)
override int QtCore.QLatin1String.GetHashCode ( )
new string QtCore.QLatin1String.Latin1 ( )

Returns the Latin-1 string stored in this object.

static bool QtCore.QLatin1String.operator!= ( QLatin1String  arg1,
QStringRef  arg2 
)
static

Returns true if this string is not equal to string other; otherwise returns false.

The comparison is based exclusively on the numeric Unicode values of the characters and is very fast, but is not what a human would expect. Consider sorting user-interface strings with QString::localeAwareCompare().

static bool QtCore.QLatin1String.operator!= ( QLatin1String  arg1,
string  arg2 
)
static

Returns true if this string is not equal to string other; otherwise returns false.

The comparison is based exclusively on the numeric Unicode values of the characters and is very fast, but is not what a human would expect. Consider sorting user-interface strings with QString::localeAwareCompare().

static bool QtCore.QLatin1String.operator< ( QLatin1String  arg1,
string  arg2 
)
static

Returns true if this string is lexically less than the other string; otherwise returns false.

The comparison is based exclusively on the numeric Unicode values of the characters and is very fast, but is not what a human would expect. Consider sorting user-interface strings using the QString::localeAwareCompare() function.

static bool QtCore.QLatin1String.operator<= ( QLatin1String  arg1,
string  arg2 
)
static

Returns true if this string is lexically less than or equal to string other; otherwise returns false.

The comparison is based exclusively on the numeric Unicode values of the characters and is very fast, but is not what a human would expect. Consider sorting user-interface strings with QString::localeAwareCompare().

static bool QtCore.QLatin1String.operator== ( QLatin1String  arg1,
QStringRef  arg2 
)
static

Returns true if this string is equal to string other; otherwise returns false.

The comparison is based exclusively on the numeric Unicode values of the characters and is very fast, but is not what a human would expect. Consider sorting user-interface strings with QString::localeAwareCompare().

static bool QtCore.QLatin1String.operator== ( QLatin1String  arg1,
string  arg2 
)
static

Returns true if this string is equal to string other; otherwise returns false.

The comparison is based exclusively on the numeric Unicode values of the characters and is very fast, but is not what a human would expect. Consider sorting user-interface strings with QString::localeAwareCompare().

static bool QtCore.QLatin1String.operator> ( QLatin1String  arg1,
string  arg2 
)
static

Returns true if this string is lexically greater than string other; otherwise returns false.

The comparison is based exclusively on the numeric Unicode values of the characters and is very fast, but is not what a human would expect. Consider sorting user-interface strings with QString::localeAwareCompare().

static bool QtCore.QLatin1String.operator>= ( QLatin1String  arg1,
string  arg2 
)
static

Returns true if this string is lexically greater than or equal to string other; otherwise returns false.

The comparison is based exclusively on the numeric Unicode values of the characters and is very fast, but is not what a human would expect. Consider sorting user-interface strings with QString::localeAwareCompare().

Member Data Documentation

SmokeInvocation QtCore.QLatin1String.interceptor
protected

Property Documentation

virtual System.IntPtr QtCore.QLatin1String.SmokeObject
getset