|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Enum
com.trolltech.qt.core.QSettings.Format
public static final class QSettings.Format
This enum type specifies the storage format used by QSettings
. On Unix, NativeFormat
and IniFormat
mean the same thing, except that the file extension is different (.conf for NativeFormat
, .ini for IniFormat
).
The INI file format is a Windows file format that Qt supports on all platforms. In the absence of an INI standard, we try to follow what Microsoft does, with the following exceptions:
QVariant
can't convert to QString (e.g., QPoint
, QRect
, and QSize
), Qt uses an @-based syntax to encode the type. For example: pos = @Point(100 100)To minimize compatibility issues, any @ that doesn't appear at the first position in the value or that isn't followed by a Qt type (Point, Rect, Size, etc.) is treated as a normal character.
windir = C:\Windows
QSettings
always treats backslash as a special character and provides no API for reading or writing such entries.setPath()
.
Field Summary | |
---|---|
static QSettings.Format |
CustomFormat1
|
static QSettings.Format |
CustomFormat10
|
static QSettings.Format |
CustomFormat11
|
static QSettings.Format |
CustomFormat12
|
static QSettings.Format |
CustomFormat13
|
static QSettings.Format |
CustomFormat14
|
static QSettings.Format |
CustomFormat15
|
static QSettings.Format |
CustomFormat16
|
static QSettings.Format |
CustomFormat2
|
static QSettings.Format |
CustomFormat3
|
static QSettings.Format |
CustomFormat4
|
static QSettings.Format |
CustomFormat5
|
static QSettings.Format |
CustomFormat6
|
static QSettings.Format |
CustomFormat7
|
static QSettings.Format |
CustomFormat8
|
static QSettings.Format |
CustomFormat9
|
static QSettings.Format |
IniFormat
Store the settings in INI files. |
static QSettings.Format |
InvalidFormat
Special value returned by registerFormat(). |
static QSettings.Format |
NativeFormat
Store the settings using the most appropriate storage format for the platform. |
Method Summary | |
---|---|
static QSettings.Format |
resolve(int value)
|
int |
value()
This function should return an integer value for the enum values of the enumeration that implements this interface. |
static QSettings.Format |
valueOf(java.lang.String name)
|
static QSettings.Format[] |
values()
|
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final QSettings.Format NativeFormat
public static final QSettings.Format IniFormat
public static final QSettings.Format InvalidFormat
public static final QSettings.Format CustomFormat1
public static final QSettings.Format CustomFormat2
public static final QSettings.Format CustomFormat3
public static final QSettings.Format CustomFormat4
public static final QSettings.Format CustomFormat5
public static final QSettings.Format CustomFormat6
public static final QSettings.Format CustomFormat7
public static final QSettings.Format CustomFormat8
public static final QSettings.Format CustomFormat9
public static final QSettings.Format CustomFormat10
public static final QSettings.Format CustomFormat11
public static final QSettings.Format CustomFormat12
public static final QSettings.Format CustomFormat13
public static final QSettings.Format CustomFormat14
public static final QSettings.Format CustomFormat15
public static final QSettings.Format CustomFormat16
Method Detail |
---|
public static QSettings.Format[] values()
public static QSettings.Format valueOf(java.lang.String name)
public int value()
value
in interface QtEnumerator
public static QSettings.Format resolve(int value)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |