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

The QResource class provides an interface for reading directly from resources. More...

Inheritance diagram for QtCore.QResource:
Collaboration diagram for QtCore.QResource:

Public Member Functions

 QResource (string file="")
  More...
 
 QResource (string file, QLocale locale)
  More...
 
virtual void CreateProxy ()
 
new void Dispose ()
 

Static Public Member Functions

static void AddSearchPath (string path)
  More...
 
static bool RegisterResource (string rccFilename, string resourceRoot="")
  More...
 
static bool RegisterResource (Pointer< byte > rccData, string resourceRoot="")
  More...
 
static bool UnregisterResource (string rccFilename, string resourceRoot="")
  More...
 
static bool UnregisterResource (Pointer< byte > rccData, string resourceRoot="")
  More...
 

Protected Member Functions

 QResource (System.Type dummy)
 

Protected Attributes

SmokeInvocation interceptor
 

Properties

string FileName [get, set]
  More...
 
QLocale Locale [get, set]
  More...
 
string AbsoluteFilePath [get]
  More...
 
System.Collections.Generic.List
< string > 
Children [get]
  More...
 
Pointer< byte > Data [get]
  More...
 
bool IsCompressed [get]
  More...
 
bool IsDir [get]
  More...
 
bool IsFile [get]
  More...
 
bool IsValid [get]
  More...
 
static
System.Collections.Generic.List
< string > 
SearchPaths [get]
  More...
 
long Size [get]
  More...
 
virtual System.IntPtr SmokeObject [get, set]
 

Detailed Description

The QResource class provides an interface for reading directly from resources.

QResource is an object that represents a set of data (and possibly children) relating to a single resource entity. QResource gives direct access to the bytes in their raw format. In this way direct access allows reading data without buffer copying or indirection. Indirection is often useful when interacting with the resource entity as if it is a file, this can be achieved with QFile. The data and children behind a QResource are normally compiled into an application/library, but it is also possible to load a resource at runtime. When loaded at run time the resource file will be loaded as one big set of data and then given out in pieces via references into the resource tree.

A QResource can either be loaded with an absolute path, either treated as a file system rooted with a / character, or in resource notation rooted with a : character. A relative resource can also be opened which will be found in the list of paths returned by QDir::searchPaths().

A QResource that is representing a file will have data backing it, this data can possibly be compressed, in which case qUncompress() must be used to access the real data; this happens implicitly when accessed through a QFile. A QResource that is representing a directory will have only children and no data.

Dynamic Resource Loading

A resource can be left out of an application's binary and loaded when it is needed at run-time by using the registerResource() function. The resource file passed into registerResource() must be a binary resource as created by rcc. Further information about binary resources can be found in The Qt Resource System documentation.

This can often be useful when loading a large set of application icons that may change based on a setting, or that can be edited by a user and later recreated. The resource is immediately loaded into memory, either as a result of a single file read operation, or as a memory mapped file.

This approach can prove to be a significant performance gain as only a single file will be loaded, and pieces of data will be given out via the path requested in setFileName().

The unregisterResource() function removes a reference to a particular file. If there are QResources that currently reference resources related to the unregistered file, they will continue to be valid but the resource file itself will be removed from the resource roots, and thus no further QResource can be created pointing into this resource data. The resource itself will be unmapped from memory when the last QResource that points to it is destroyed.

See also The Qt Resource System, QFile, QDir, and QFileInfo.

Constructor & Destructor Documentation

QtCore.QResource.QResource ( System.Type  dummy)
protected
QtCore.QResource.QResource ( string  file = "")

Constructs a QResource pointing to file. locale is used to load a specific localization of a resource data.

See also QFileInfo, QDir::searchPaths(), setFileName(), and setLocale().

Here is the call graph for this function:

QtCore.QResource.QResource ( string  file,
QLocale  locale 
)

Constructs a QResource pointing to file. locale is used to load a specific localization of a resource data.

See also QFileInfo, QDir::searchPaths(), setFileName(), and setLocale().

Here is the call graph for this function:

Member Function Documentation

static void QtCore.QResource.AddSearchPath ( string  path)
static

Use QDir::addSearchPath() with a prefix instead.

Adds path to the search paths searched in to find resources that are not specified with an absolute path. The path must be an absolute path (start with /).

The default search path is to search only in the root (:/). The last path added will be consulted first upon next QResource creation.

virtual void QtCore.QResource.CreateProxy ( )
virtual

Here is the caller graph for this function:

new void QtCore.QResource.Dispose ( )
static bool QtCore.QResource.RegisterResource ( string  rccFilename,
string  resourceRoot = "" 
)
static

Registers the resource with the given rccFileName at the location in the resource tree specified by mapRoot, and returns true if the file is successfully opened; otherwise returns false.

See also unregisterResource().

static bool QtCore.QResource.RegisterResource ( Pointer< byte >  rccData,
string  resourceRoot = "" 
)
static

Registers the resource with the given rccData at the location in the resource tree specified by mapRoot, and returns true if the file is successfully opened; otherwise returns false.

Warning: The data must remain valid throughout the life of any QFile that may reference the resource data.

This function was introduced in Qt 4.3.

See also unregisterResource().

static bool QtCore.QResource.UnregisterResource ( string  rccFilename,
string  resourceRoot = "" 
)
static

Unregisters the resource with the given rccFileName at the location in the resource tree specified by mapRoot, and returns true if the resource is successfully unloaded and no references exist for the resource; otherwise returns false.

See also registerResource().

static bool QtCore.QResource.UnregisterResource ( Pointer< byte >  rccData,
string  resourceRoot = "" 
)
static

Unregisters the resource with the given rccData at the location in the resource tree specified by mapRoot, and returns true if the resource is successfully unloaded and no references exist into the resource; otherwise returns false.

This function was introduced in Qt 4.3.

See also registerResource().

Member Data Documentation

SmokeInvocation QtCore.QResource.interceptor
protected

Property Documentation

string QtCore.QResource.AbsoluteFilePath
get

Returns the real path that this QResource represents, if the resource was found via the QDir::searchPaths() it will be indicated in the path.

See also fileName().

System.Collections.Generic.List<string> QtCore.QResource.Children
get

Returns a list of all resources in this directory, if the resource represents a file the list will be empty.

See also isDir().

Pointer<byte> QtCore.QResource.Data
get

Returns direct access to a read only segment of data that this resource represents. If the resource is compressed the data returns is compressed and qUncompress() must be used to access the data. If the resource is a directory 0 is returned.

See also size(), isCompressed(), and isFile().

string QtCore.QResource.FileName
getset

Returns the full path to the file that this QResource represents as it was passed.

Sets a QResource to point to file. file can either be absolute, in which case it is opened directly, if relative then the file will be tried to be found in QDir::searchPaths().

bool QtCore.QResource.IsCompressed
get

Returns true if the resource represents a file and the data backing it is in a compressed format, false otherwise.

See also data() and isFile().

bool QtCore.QResource.IsDir
get

Returns true if the resource represents a directory and thus may have children() in it, false if it represents a file.

See also isFile().

bool QtCore.QResource.IsFile
get

Returns true if the resource represents a file and thus has data backing it, false if it represents a directory.

See also isDir().

bool QtCore.QResource.IsValid
get

Returns true if the resource really exists in the resource hierarchy, false otherwise.

QLocale QtCore.QResource.Locale
getset

Returns the locale used to locate the data for the QResource.

Sets a QResource to only load the localization of resource to for locale. If a resource for the specific locale is not found then the C locale is used.

System.Collections.Generic.List<string> QtCore.QResource.SearchPaths
staticget

Use QDir::searchPaths() instead.

Returns the current search path list. This list is consulted when creating a relative resource.

See also QDir::addSearchPath() and QDir::setSearchPaths().

long QtCore.QResource.Size
get

Returns the size of the data backing the resource.

See also data() and isFile().

virtual System.IntPtr QtCore.QResource.SmokeObject
getset