Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Qcompleter lineedit issue

Qcompleter lineedit issue

Scheduled Pinned Locked Moved General and Desktop
2 Posts 2 Posters 975 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    saravanavelu39
    wrote on last edited by
    #1

    Hi all,

    @QStringList str;
    str<<"sar"<<"sign"<<"super";
    QCompleter complete = new QCompleter(str);

    complete->setCaseSensitivity(Qt::CaseInsensitive);
    complete->setCompletionMode(QCompleter::PopupCompletion);
    

    complete->setMaxVisibleItems(1);
    complete->popup()->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
    QFont font( "Newyork", 20);
    complete->popup()->setFont(font);
    complete->popup()->setStyleSheet("background-color:#0000FF;color:white;");
    ui->lineedit->setCompleter(complete);@
    I have a one problem in Qcompleter,,I used lineedit for this Qcompleter,,When i type the lineedit that time Qcompleter is popup the list,,For example if i type 's' means three values are popup in in the lineedit,,in that time if i enter in the lineeditmeans i need to pick the first value,,How to get the first value in the Qcompleter when i press the enter key,,please give me a suggesstion,,Thanks,,

    1 Reply Last reply
    0
    • dheerendraD Offline
      dheerendraD Offline
      dheerendra
      Qt Champions 2022
      wrote on last edited by
      #2

      You should use the completer->currentCompletion() and get the current selected text from completer. This you need to set to your lineEdit.

      Dheerendra
      @Community Service
      Certified Qt Specialist
      http://www.pthinks.com

      1 Reply Last reply
      0

      • Login

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved