Another FEP question

Login to reply to this topic.
Tue, 2005-04-05 15:59
Joined: 2004-06-08
Forum posts: 148
What should I dot to be able to switch ON/Off my FEP from Control Panel/ Text Input? I've copied it to system/fep and I can install/uninstall it from another app but it does not appear in Control Panel.

Thu, 2005-04-07 11:40
Joined: 2004-06-08
Forum posts: 148
Another FEP question
I found it.
EXPORT_C void QuartzFepDescription(TQuartzFepDescription& aFepDescription)
   {
   aFepDescription.iFepName.Zero();
   aFepDescription.iFepName.Copy(_L("myFep"));
   aFepDescription.iFepType = TQuartzFepDescription::EFepTypeFloatingInABox;
   }
Thu, 2006-02-09 07:09
Joined: 2005-02-17
Forum posts: 26
Re: Another FEP question
Could you please give more information on your FEP program. I am also implementing the same EXPORT_C void QuartzFepDescription(TQuartzFepDescription& aFepDescription)
method but it does not display in the Control Panel -> Text input area. Is there something else besides this that is necessary?

Thank you very much.

Niimidan

Wed, 2006-02-15 17:09
Joined: 2004-06-08
Forum posts: 148
Re: Another FEP question
I am very sorry to say that, but I lost this code by mistake:( The whole fep project was like a test for me, and cinse it was about a year ago I really don't remember how I managed to put my fep int the control panel. I am really sorry that I can't help:/
Thu, 2006-02-16 08:10
Joined: 2005-02-17
Forum posts: 26
Re: Another FEP question
No problem filio.  I since figured out what my problem was.

The problem I was having was because my definition file for a THUMB build was not in the correct order. The definitions file needs to have this order and mine for some reason was getting mangled. NewFepL needs to be at ordinal 1 or there are problems like I was having.

EXPORTS
   NewFepL__FR7CCoeEnvRC7TDesC16RC17CCoeFepParameters @ 1 NONAME R3UNUSED ; NewFepL(CCoeEnv &, TDesC16 const &, CCoeFepParameters const &)
   SynchronouslyExecuteSettingsDialogL__FR7CCoeEnvRC7TDesC16 @ 2 NONAME R3UNUSED ; SynchronouslyExecuteSettingsDialogL(CCoeEnv &, TDesC16 const &)
   Reserved_1__Fv @ 3 NONAME R3UNUSED ; Reserved_1(void)
   Reserved_2__Fv @ 4 NONAME R3UNUSED ; Reserved_2(void)
   Reserved_3__Fv @ 5 NONAME R3UNUSED ; Reserved_3(void)
   Reserved_4__Fv @ 6 NONAME R3UNUSED ; Reserved_4(void)
   Reserved_5__Fv @ 7 NONAME R3UNUSED ; Reserved_5(void)
   Reserved_6__Fv @ 8 NONAME R3UNUSED ; Reserved_6(void)
   Reserved_7__Fv @ 9 NONAME R3UNUSED ; Reserved_7(void)
   Reserved_8__Fv @ 10 NONAME R3UNUSED ; Reserved_8(void)
   QuartzFepDescription__FR21TQuartzFepDescription @ 11 NONAME R3UNUSED ; QuartzFepDescription(TQuartzFepDescription &)




Niimidan

Fri, 2006-09-01 11:13
Joined: 2005-02-24
Forum posts: 278
Re: Another FEP question
Any chance anybody will ever publish a sample source for UIQ FEP?  Undecided

-- JumpJack --

Fri, 2006-09-01 11:15
Joined: 2005-02-24
Forum posts: 278
Re: Another FEP question

-- JumpJack --

  • Login to reply to this topic.