class CApaApplication : public CBase |
Defines the basic behaviour for applications.
The class defines the basic twin roles of an application class as a factory that creates concrete document objects, and as a supplier of utility functions not specific to any particular instance of a document. For example, returning an application's caption, or accessing its .ini file.
The class is derived from by the UI framework and is further derived from by the UI application.
CEikApplication
Public Member Functions | |
---|---|
~CApaApplication () | |
TUid | AppDllUid () |
IMPORT_C TFileName | AppFullName () |
void | Capability ( TDes8 &) |
CApaDocument * | CreateDocumentL ( CApaProcess *) |
IMPORT_C TFileName | DllName () |
IMPORT_C TInt | GenerateFileName ( RFs &, TFileName &) |
IMPORT_C void | NewAppServerL ( CApaAppServer *&) |
IMPORT_C CDictionaryStore * | OpenIniFileL ( RFs &) |
CDictionaryStore * | OpenIniFileLC ( RFs &) |
void | PreDocConstructL () |
void | SetAppFileNameRef (const RBuf &) |
Protected Member Functions | |
---|---|
CApaApplication () |
Private Member Functions | |
---|---|
IMPORT_C void | CApaApplication_Reserved1 () |
IMPORT_C void | CApaApplication_Reserved2 () |
Private Attributes | |
---|---|
const RBuf * | iAppFileNameRef |
TInt | iCApaApplication_Reserved1 |
TUid | iEComDtorKey |
TUid | AppDllUid | ( | ) | const [pure virtual] |
Gets the application specific UID.
The UID is used to differentiate between UI applications.
An implementation of this function must be supplied by the UI application.
IMPORT_C TFileName | AppFullName | ( | ) | const [virtual] |
Returns the full name and path of the application.
The default implementation returns the full path name of the application DLL.
An application can provide its own implementation.
IMPORT_C void | CApaApplication_Reserved1 | ( | ) | [private, virtual] |
Reserved for future use
IMPORT_C void | CApaApplication_Reserved2 | ( | ) | [private, virtual] |
Reserved for future use
void | Capability | ( | TDes8 & | aInfo | ) | const [pure virtual] |
Returns the capabilities of the application.
Application capability information is represented by an instance of a TApaAppCapability object wrapped in a packaged modifiable buffer descriptor.
The function is called from a number of places within the application framework.
An implementation of this function is supplied by the UI framework.
CEikApplication TApaAppCapability TPckgBuf
TDes8 & aInfo | A packaged modifiable buffer descriptor (a TPckgBuf), encapsulating a TApaAppCapability object. |
CApaDocument * | CreateDocumentL | ( | CApaProcess * | aProcess | ) | [pure virtual] |
Creates a document object.
The function is called by the application process when a new document is required. The application process adds the new document to its list of documents.
An implementation of this function is supplied by the UI framework.
CApaProcess * aProcess | A pointer to the process associated with the application. |
IMPORT_C TFileName | DllName | ( | ) | const |
Returns the full name and path of the loaded application DLL.
IMPORT_C TInt | GenerateFileName | ( | RFs & | aFs, |
TFileName & | aRootName | |||
) | [static] |
Generates a unique filename based on the file name contained within the specified full path name.
If necessary, the function creates the directory structure that is defined in the specified full path name.
If the file name does not yet exist, then this is the file name chosen. If this file name already exists, then a file name of the form: name(nn) is generated, where nn are decimal digits. The value of nn is incremented until a name is generated that is unique within the directory structure. A minimum of two decimal digits is generated.
The function is used by the UI framework.
CEikAppUi
IMPORT_C void | NewAppServerL | ( | CApaAppServer *& | aAppServer | ) | [virtual] |
Virtual function called by the framework when the application has been launched as a server application. Applications that wish to be used as server applications must override this function to return their implemetation of the server.
CApaAppServer *& aAppServer | The server pointer to be set. |
IMPORT_C CDictionaryStore * | OpenIniFileL | ( | RFs & | aFs | ) | const |
Opens the .ini file associated with the application, constructs the dictionary store object and returns a pointer to it.
The implementation of this function is provided by the OpenIniFileLC() function. The function pops the pointer returned by OpenIniFileLC() from the cleanup stack.
RFs & aFs | Handle to a file server session. |
CDictionaryStore * | OpenIniFileLC | ( | RFs & | aFs | ) | const [pure virtual] |
Opens the .ini file associated with the application, constructs the dictionary store object, returns a pointer to it and puts the pointer onto the cleanupstack.
The .ini file must be created, if it does not already exist.
An implementation of this function is supplied by the UI framework.
CEikApplication
RFs & aFs | Handle to a file server session |
void | PreDocConstructL | ( | ) | [pure virtual] |
Completes construction of this application object.
The function is called after an instance of a derived class has been successfully created using the ordinal 1 function of the application DLL.
After calling this function, an application can create document objects.
An implementation of this function is supplied by the UI framework.
CEikApplication
void | SetAppFileNameRef | ( | const RBuf & | aFileName | ) |
const RBuf & aFileName |
Copyright ©2010 Nokia Corporation and/or its subsidiary(-ies).
All rights
reserved. Unless otherwise stated, these materials are provided under the terms of the Eclipse Public License
v1.0.