The FindInOrder() assumes that existing object pointers in the array are ordered, is it true for your iContects?
Type: Posts; User: chenziteng; Keyword(s):
The FindInOrder() assumes that existing object pointers in the array are ordered, is it true for your iContects?
The "Writing language" menu item (command ID EAknCmdInputLanguage) is added by the avkon fep manager (input method manager). When the app is started (or when an text editor is focused?) the fep...
The code below works for me on S60 3rd Edition emulator.
...
iLabel1->SetEmphasis( CEikLabel::EFullEmphasis);
iLabel1->OverrideColorL( EColorLabelHighlightFullEmphasis, KRgbRed ); //...
Part of the wiki code snippet seems copied from the rich text editor example published by Nokia, check it out to know what exactly the StatusLineHeight is, and I suggest that you start from the...
It's just a warning, I think you can ignore it.
多数UI类都只能在GUI应用程序里使用,因为它们依赖于CONE (Control Environment)。
纯控制台程序要使用UI类有两个办法:
1. 使用Notifier
如果是类似note这样简单的对话框,可以使用S60提供的CAknGlobalNote等"CAknGlobalxxx"系列API。
Code snippet from Notifiers API
Hi,
The reason might be that the Window Server has priority control over the GUI apps. I've not tried but adding the following code to the ConstructL() of your app's AppUI class may help.
...
Hi,
"Nokia AnalyzeTool provides features that enable the detection of memory leaks and other memory issues in Symbian C++ and Qt software for Symbian phones. The tool is available for use in SDK...
:-|, seems Symbian progamming is a good way to kill one's (spare or work) time.
Hi,
I used to load unicode text files to edwins by a single InsertFromTextFileL() call, hope it will work for you too.
"Re: Display Unicode text file to CEikEdWin editor"...
Hi,
"CS000933 - Detecting S60 platform version at run time"
http://www.developer.nokia.com/Community/Wiki/CS000933_-_Detecting_S60_platform_version_at_run_time
"RE: 3rd Edition application...
Hi,
A form is actually a dialog so you should show it by for example ExecuteLD(), and then collect the user input in the OkToExitL() or SaveFormDataL(), see the wiki article:
"How to create a...
Hi,
It seems a documented behavior:
"aEvent: A log event detail object containing the attributes of the event to be added. The Log Engine sets the unique event ID, the UTC time and the event...
Hi,
// 请问一下保存在模拟器E盘里的文件,在电脑上是在哪个文件夹里可以看到?
As I remember by default the E: drive is simulated by a disk image (a .bin file) so you can not explore it easily on Windows. There are two workarounds...
Hi,
How about setting the audio playback thread's priority higher?
TInt err = iAudioThread.Create(...);
...
iAudioThread.SetPriority(EPriorityRealTime); // <==
...
Hi,
Changing the cursor position can be done by calling SetCursorPosL()
"Using CEikEdwin Text Editor - Setting Text on the Editor" (CEikRichTextEditor is a subclass of CEikEdwin)...
Hi,
You can get hold of a bitmap object by duplicating its handle (see below), and it is more efficient than copying the actual content.
...
// iLastFrame->Reset();
//...
Hi,
Do it like this:
"CEikRichTextEditor Text Color"
http://www.developer.nokia.com/Community/Discussion/showthread.php?53343-CEikRichTextEditor-Text-Color
and this:
"Using CParaFormat...
Hi,
See the "Burst Capture" section of the following wiki article.
"Camera Application Engine API"
http://www.developer.nokia.com/Community/Wiki/Camera_Application_Engine_API
Regards
...
Hi,
// ...拍照的图像是预览的最后一帧吗?
Generally the answer is "no", because a traditional camera module (hardware) needs to switch from the viewfinder mode to image capturing mode and then do the exposure,...
Hi,
// ... my real purpose is just to find out which process forgot to close the file handle
There is an API, TOpenFileScan, for this purpose and it is discussed in the following wiki article....
Hi,
The code below may work on S60 3rd Edition FP1 to S60 5th Edition devices (but no guarantee that it will work, anyway if you do want the feature it's worth trying).
// .mmp
...
//...
Hi,
In general the file system will set a limit here, so even if you can get unlimited amount of storage it's still impossible to put "hundreds of billions of" files to a single folder.
As...
A real master should be platform independent :)
Hi,
You should definitely use asynchronous decoding.
Regards
Ziteng Chen