Archived:FEP causing browser to crash on S60 2nd and 3rd Editions (Known Issue)
m (1 revision(s)) |
m (Lpvalente - - →Solution) |
||
| (12 intermediate revisions by 4 users not shown) | |||
| Line 1: | Line 1: | ||
| − | + | {{Archived|timestamp=20120418154519|user=[[User:Lpvalente|Lpvalente]]}} | |
| − | + | [[Category:Known Issue]][[Category:Symbian C++]][[Category:S60 2nd Edition (initial release)]][[Category:S60 3rd Edition (initial release)]][[Category:S60 2nd Edition FP1]][[Category:S60 2nd Edition FP2]][[Category:S60 2nd Edition FP3]] | |
| − | {| | + | |
| − | | | + | |
| − | + | ||
| − | + | ||
| − | |- | + | {{ArticleMetaData <!-- v1.2 --> |
| − | | | + | |sourcecode= <!-- Link to example source code (e.g. [[Media:The Code Example ZIP.zip]]) --> |
| − | ===== | + | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> |
| − | | | + | |devices= <!-- Devices tested against - e.g. ''devices=Nokia 6131 NFC, Nokia C7-00'') --> |
| + | |sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> | ||
| + | |platform= S60 2nd Edition, S60 2nd Edition FP1, S60 2nd Edition FP2, S60 2nd Edition FP3, S60 3rd Edition | ||
| + | |devicecompatability= <!-- Compatible devices (e.g.: All* (must have GPS) ) --> | ||
| + | |dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 --> | ||
| + | |signing= <!-- Empty or one of Self-Signed, DevCert, Manufacturer --> | ||
| + | |capabilities= <!-- Capabilities required by the article/code example (e.g. Location, NetworkServices. --> | ||
| + | |keywords= <!-- APIs, classes and methods (e.g. QSystemScreenSaver, QList, CBase --> | ||
| + | |language= <!-- Language category code for non-English topics - e.g. Lang-Chinese --> | ||
| + | |translated-by= <!-- [[User:XXXX]] --> | ||
| + | |translated-from-title= <!-- Title only --> | ||
| + | |translated-from-id= <!-- Id of translated revision --> | ||
| + | |review-by= <!-- After re-review: [[User:username]] --> | ||
| + | |review-timestamp= <!-- After re-review: YYYYMMDD --> | ||
| + | |update-by= <!-- After significant update: [[User:username]]--> | ||
| + | |update-timestamp= <!-- After significant update: YYYYMMDD --> | ||
| + | |creationdate= 20060921 | ||
| + | |author= [[User:Technical writer 1]] | ||
| + | <!-- The following are not in current metadata --> | ||
| + | |subcategory= | ||
| + | |id= KIS000411 | ||
| + | }} | ||
| − | + | ==Overview== | |
| − | + | {{Abstract|There is a bug in S60 browser code that can cause a crash with 3rd-party FEPs. After installing a 3rd-party FEP, the browser crashes on launch, causing a KERN-EXEC 3 panic.}} | |
| − | + | ||
| − | | | + | |
| − | + | ==Description== | |
| − | + | This bug can be worked around by implementing your own MAknEditingStateIndicator that has empty methods. This will avert the browser from crashing but may have unexpected behavior with some other components, so extended testing with other editors is advised.<br>To implement this indicator interface you will need a header file which is not part of the SDK until S60 3rd Edition, Feature Pack 1. The header (akneditstateindicator.h), included in the S60 3rd Edition, FP1 SDK, can be used also with previous S60 platform versions that are affected by this issue. | |
| − | + | ||
| − | + | ||
| − | + | ==Solution== | |
| − | + | The dummy indicator implementation would be something like this: | |
| − | + | ||
| − | + | ||
| − | + | <code cpp> | |
| − | + | // FepIndicator.h: | |
| − | + | #include <akneditstateindicator.h> // for MAknEditingStateIndicator | |
| − | + | class CFepIndicator : public CBase, public MAknEditingStateIndicator | |
| + | { | ||
| + | public: | ||
| + | enum TIndicatorState | ||
| + | { | ||
| + | EStateNone = 1, | ||
| + | EStateNumeric, | ||
| + | EStateAlphabat | ||
| + | }; | ||
| + | public: | ||
| + | static CFepIndicator* NewL(); | ||
| + | ~CFepIndicator(); | ||
| + | virtual void SetState(TIndicatorState aState); | ||
| + | // From MAknEditingStateIndicator | ||
| + | void SetState(TAknEditingState aState); | ||
| + | CAknIndicatorContainer* IndicatorContainer(); | ||
| + | // ... | ||
| + | }; | ||
| + | // FepControl.cpp: | ||
| + | void CExampleFepControl::ConstructL() | ||
| + | { | ||
| + | CreateWindowL(); | ||
| + | SetNonFocusing(); | ||
| + | RWindow& window = Window(); | ||
| + | window.SetOrdinalPosition(0, ECoeWinPriorityFep); | ||
| + | TPoint fepControlPos(0, 0); | ||
| + | SetExtent(fepControlPos, TSize(0,0)); | ||
| + | window.SetExtent(fepControlPos, TSize(0,0)); | ||
| + | window.SetNonFading(ETrue); | ||
| + | // Create multi-tap input engine | ||
| + | iMultiTapEngine = CExampleFepMultiTapEngine::NewL(*this); | ||
| + | // Create status pane indicator | ||
| + | iIndicator = CFepIndicator::NewL(); | ||
| + | CAknEnv::Static()->SwapEditingStateIndicator(iIndicator); | ||
| + | } | ||
| + | // FepIndicator.cpp: | ||
| + | void CFepIndicator::SetState(TAknEditingState */aState*/) | ||
| + | { | ||
| + | } | ||
| + | CAknIndicatorContainer* CFepIndicator::IndicatorContainer() | ||
| + | { | ||
| + | return NULL; | ||
| + | } | ||
| − | + | </code> | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
Latest revision as of 17:39, 11 November 2012
The article is believed to be still valid for the original topic scope.
Article Metadata
Compatibility
Article
Overview
There is a bug in S60 browser code that can cause a crash with 3rd-party FEPs. After installing a 3rd-party FEP, the browser crashes on launch, causing a KERN-EXEC 3 panic.
Description
This bug can be worked around by implementing your own MAknEditingStateIndicator that has empty methods. This will avert the browser from crashing but may have unexpected behavior with some other components, so extended testing with other editors is advised.
To implement this indicator interface you will need a header file which is not part of the SDK until S60 3rd Edition, Feature Pack 1. The header (akneditstateindicator.h), included in the S60 3rd Edition, FP1 SDK, can be used also with previous S60 platform versions that are affected by this issue.
Solution
The dummy indicator implementation would be something like this:
// FepIndicator.h:
#include <akneditstateindicator.h> // for MAknEditingStateIndicator
class CFepIndicator : public CBase, public MAknEditingStateIndicator
{
public:
enum TIndicatorState
{
EStateNone = 1,
EStateNumeric,
EStateAlphabat
};
public:
static CFepIndicator* NewL();
~CFepIndicator();
virtual void SetState(TIndicatorState aState);
// From MAknEditingStateIndicator
void SetState(TAknEditingState aState);
CAknIndicatorContainer* IndicatorContainer();
// ...
};
// FepControl.cpp:
void CExampleFepControl::ConstructL()
{
CreateWindowL();
SetNonFocusing();
RWindow& window = Window();
window.SetOrdinalPosition(0, ECoeWinPriorityFep);
TPoint fepControlPos(0, 0);
SetExtent(fepControlPos, TSize(0,0));
window.SetExtent(fepControlPos, TSize(0,0));
window.SetNonFading(ETrue);
// Create multi-tap input engine
iMultiTapEngine = CExampleFepMultiTapEngine::NewL(*this);
// Create status pane indicator
iIndicator = CFepIndicator::NewL();
CAknEnv::Static()->SwapEditingStateIndicator(iIndicator);
}
// FepIndicator.cpp:
void CFepIndicator::SetState(TAknEditingState */aState*/)
{
}
CAknIndicatorContainer* CFepIndicator::IndicatorContainer()
{
return NULL;
}

