Results 1 to 2 of 2

Thread: Fancy Browser and Virtual keyboard support

  1. #1
    Join Date
    Mar 2013
    Posts
    8
    Qt products
    Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android

    Default Fancy Browser and Virtual keyboard support

    Hi Experts,
    I am using Fancy Browser, Here i have successfully added Virtual keyboard source code.
    Browser address bar (url text field) is QLineEdit, So When i click the address bar the Virtual Keyboard is pop up’d. I am using the below code in the browser source code.

    locationEdit = new QLineEdit(this);
    lineEditkeyboard = new Keyboard();
    connect ( locationEdit ,SIGNAL ( selectionChanged ( ) ),this,SLOT ( run_keyboard_lineEdit ( ) ) );

    void MainWindow::run_keyboard_lineEdit()
    {
    QLineEdit *line = (QLineEdit *)sender();
    lineEditkeyboard->setLineEdit(line);
    lineEditkeyboard->show();
    }

    My problems are,

    I can view the www.google.com webpage. But When i click the Google search text field in the Webpage the same virtual keyboard not pop up’d. I know we need to add the support in the browser code.

    To get the virtual keyboard when click the input text box (with in a web page) Which even event function/Class/Members i should use? Could you Please give me a sample code to understand.

    Thanks,
    Vignesh

  2. #2
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,373
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Thanks
    3
    Thanked 5,019 Times in 4,795 Posts
    Wiki edits
    10

    Default Re: Fancy Browser and Virtual keyboard support

    Implement an input context plugin.
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


Similar Threads

  1. Fancy Browser and Virtual keyboard support
    By Veerapandian in forum Qt Programming
    Replies: 0
    Last Post: 7th May 2013, 06:27
  2. Fancy Browser, Windows Server 2008 and empty webpage
    By drewpt in forum Qt Programming
    Replies: 1
    Last Post: 14th April 2011, 00:35
  3. Replies: 0
    Last Post: 17th March 2011, 03:17
  4. fancy browser: activate save link... menu
    By fatecasino in forum Qt Programming
    Replies: 0
    Last Post: 17th March 2011, 03:12
  5. Not able to run fancy browser and demo browser example applications
    By GoGetIt in forum Installation and Deployment
    Replies: 1
    Last Post: 16th August 2010, 06:23

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.