Large SIP - screen placement and languages other than english

  • Thread starter Thread starter Magnus Hedberg
  • Start date Start date
M

Magnus Hedberg

Hello,

I'm having problems using the large SIP provided in PB4.1.

I would like to move it around programatically on screen,
now it always starts to the upper left and the user has to
move it around manually. The Top/Left properties are
readonly, is there another way to control the SIP window?
I'm using Visual Studio and programming in C#.

I would also like to present a SIP which is meaningful for
the language selected but only the english layout is
supplied in PB4.1 and there is no key for diachritical
characters (åäö etc) as the small SIP has.
Any suggestions?

Magnus
 
The SIP can express a preference for a default location in the
CInputMethod::GetInfo() method implementation. Perhaps the large SIP wants
to be in the upper left corner for some reason. You can change that by
altering the code. There is also window movement in
CInputMethod::ReceiveSipInfo(). You may need to change that, also.

As far as the other characters, modify the SIP as necessary to make them
available. There's nothing you can do from outside the SIP itself to make
them work.

Paul T.

Hello,

I'm having problems using the large SIP provided in PB4.1.

I would like to move it around programatically on screen,
now it always starts to the upper left and the user has to
move it around manually. The Top/Left properties are
readonly, is there another way to control the SIP window?
I'm using Visual Studio and programming in C#.

I would also like to present a SIP which is meaningful for
the language selected but only the english layout is
supplied in PB4.1 and there is no key for diachritical
characters (åäö etc) as the small SIP has.
Any suggestions?

Magnus
 
Back
Top