I do, and I'm using Stevens unmodified code. I don't get those messages you are 
getting, independant of wether I comment the VK_UP and VK_DOWN parts out or not.

Atm it's a bit useless for me though because I can't import shiboken which is 
needed to get the equivalent if sip's wrapinstance method, I'm still looking 
for a solution to the problem.
It's also kind of strange Nokia does not provide 64 bit binaries of PySide :-(


Tony asks "are other people using it with PySide rather than PyQt?"

He's looking through the source code for PySide and isn't finding anything
there.

-B

On Mon, Oct 15, 2012 at 6:51 PM, Steven Caron <[email protected]> wrote:

hmm, weird. no one has mentioned this before and i can't reproduce it
locally. there is something about your configuration that is bringing this
to light.

that code might be used in the future if we use cpp to do the key events.

s


On Mon, Oct 15, 2012 at 3:32 PM, Bradley Gabe <[email protected]> wrote:

Okay, problem solved.

Tony removed that questionable code block and recompiled. I just tested a
QTextEdit widget to make sure the up and down arrow keys weren't nuked as a
result, and everything seems to be functioning properly.

Thanks for checking up on the code on your end. I'm having Tony add a
comment to github.

-Bradley

On Mon, Oct 15, 2012 at 6:11 PM, Steven Caron <[email protected]> wrote:

also, i do not get this message when i hit up and down arrow keys.

s


On Mon, Oct 15, 2012 at 3:08 PM, Steven Caron <[email protected]> wrote:

we would have to ask jo, but i always thought that was key up and key
down... not arrow up and arrow down. after a bit of looking it seems its
arrow up and down...

http://msdn.microsoft.com/en-us/library/ms927178.aspx

it might not be the start of code jo was writing to handle all the key
code mapping in c++ instead of in python. regardless, we are not logging
the message you are referring to... we are just switching on it.

s


On Mon, Oct 15, 2012 at 3:02 PM, Bradley Gabe <[email protected]>wrote:

Tony is curious as to what's going on with this block, since it
directly refers to VK_UP. Why are the up and down arrow keys the only ones
with a mention in the compiled code?

LRESULT CALLBACK

        listener(int ncode, WPARAM wparam, LPARAM lparam)









        {

                if (sianchor) {









                        switch (wparam)









                        {

                        case (VK_UP):









                                {

                                        QKeyEvent e = 
QKeyEvent(QEvent::KeyPress, Q_KEY_UP, 0);









                                        for (int i=0; 
i<sianchor->children().count(); ++i) {









                                                
QApplication::sendEvent(sianchor->children().at(i), &e);









                                        }

                                }
                        case (VK_DOWN):









                                {

                                        QKeyEvent e = 
QKeyEvent(QEvent::KeyPress, Q_KEY_DOWN, 0);









                                        for (int i=0; 
i<sianchor->children().count(); ++i) {









                                                
QApplication::sendEvent(sianchor->children()[i], &e);









                                        }

                                }
                        }









                }

                return CallNextHookEx(hook, ncode, wparam, lparam);









        }










______________________________________________________________________
This email has been scanned by the Symantec Email Security.cloud service.
For more information please visit http://www.symanteccloud.com
______________________________________________________________________







--
-------------------------------------------
Stefan Kubicek                   Co-founder
-------------------------------------------
          keyvis digital imagery
         Wehrgasse 9 - GrĂ¼ner Hof
           1050 Vienna  Austria
        Phone:    +43/699/12614231
--- www.keyvis.at  [email protected] ---
--  This email and its attachments are
--confidential and for the recipient only--

Reply via email to