Results 1 to 20 of 66

Thread: linking of combox with lineEdit.

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Jul 2009
    Posts
    55
    Thanks
    3

    Default Re: linking of combox with lineEdit.

    i dun think this will work with my current code. argh talking in forum is pretty hard man. i cant possible post my whole source code here.

    do you have a msn or something? so i could end you my whole program. and u help me take a look?

  2. #2
    Join Date
    Jun 2007
    Location
    India
    Posts
    1,042
    Thanks
    8
    Thanked 133 Times in 128 Posts
    Qt products
    Qt3 Qt4 Qt/Embedded
    Platforms
    MacOS X Unix/X11 Windows

    Default Re: linking of combox with lineEdit.

    sorry man .. this is the best i can do...

  3. #3
    Join Date
    Jul 2009
    Posts
    55
    Thanks
    3

    Default Re: linking of combox with lineEdit.

    oh man. i seriously need some help here. anybody?

  4. #4
    Join Date
    Jul 2009
    Posts
    55
    Thanks
    3

    Default Re: linking of combox with lineEdit.

    no reply from anyone else?

  5. #5
    Join Date
    Jan 2008
    Location
    Poland
    Posts
    687
    Thanks
    4
    Thanked 140 Times in 132 Posts
    Qt products
    Qt4 Qt5
    Platforms
    Unix/X11 Windows

    Default Re: linking of combox with lineEdit.

    I think that it is hard to give you some example because we don't know what is that yellow node. Is it some widget or what? A picture? Diagram in some other application? There are some signals in QLineEdit which you can use (like textChanged() ) so you can connect them to your slots, where you can check the current combo box selection and change proper node (yellow or any other you want). But how would I know how to change that yellow node? Paint it with QPainter or what?
    I would like to be a "Guru"

    Useful hints (try them before asking):
    1. Use Qt Assistant
    2. Search the forum

    If you haven't found solution yet then create new topic with smart question.

  6. #6
    Join Date
    Jul 2009
    Posts
    55
    Thanks
    3

    Default Re: linking of combox with lineEdit.

    Quote Originally Posted by faldżip View Post
    I think that it is hard to give you some example because we don't know what is that yellow node. Is it some widget or what? A picture? Diagram in some other application? There are some signals in QLineEdit which you can use (like textChanged() ) so you can connect them to your slots, where you can check the current combo box selection and change proper node (yellow or any other you want). But how would I know how to change that yellow node? Paint it with QPainter or what?
    alright. the yellow node is drawn using Qpainter. and the text in the yellow node user "sprintf" to display.

  7. #7
    Join Date
    Jan 2006
    Location
    Germany
    Posts
    4,380
    Thanks
    19
    Thanked 1,005 Times in 913 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows Symbian S60
    Wiki edits
    5

    Default Re: linking of combox with lineEdit.

    Quote Originally Posted by Devoraz View Post
    do you have a msn or something? so i could end you my whole program. and u help me take a look?
    That's a bad idea, because then all other board members can't learn from your problem.

    Quote Originally Posted by Devoraz View Post
    no reply from anyone else?
    We live in different time zones, so sometimes we have to sleep


    And as to your question: It's also not very clear to me what you want to achieve: Change the yellow bubble text on the fly while typing in the line edit, or after the dialog has closed?

    For the first, emit a signal from the dialog whenever the text changes. catch that in your main window and manipulate the corresponding node.

  8. #8
    Join Date
    Jul 2009
    Posts
    55
    Thanks
    3

    Default Re: linking of combox with lineEdit.

    Quote Originally Posted by Lykurg View Post
    And as to your question: It's also not very clear to me what you want to achieve: Change the yellow bubble text on the fly while typing in the line edit, or after the dialog has closed?
    .
    after closing the dialog. i would need to use case method with the combobox i think? as there are 8 choice to select.

  9. #9
    Join Date
    Jan 2006
    Location
    Germany
    Posts
    4,380
    Thanks
    19
    Thanked 1,005 Times in 913 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows Symbian S60
    Wiki edits
    5

    Default Re: linking of combox with lineEdit.

    Quote Originally Posted by Devoraz View Post
    after closing the dialog. i would need to use case method with the combobox i think? as there are 8 choice to select.
    After closing the dialog use QComboBox::currentIndex() or QComboBox::currentText() to determinate the box. Either use switch or if/else unless you don't have stored your nodes in a QList etc.

  10. #10
    Join Date
    Jul 2009
    Posts
    55
    Thanks
    3

    Default Re: linking of combox with lineEdit.

    okay first of all. to kickstart. i suppose i have to connect the combobox to the qlineEdit right?

    i had look through the some examples and the QT Assistant. but i am still confuse of how to go about connecting it.

  11. #11
    Join Date
    Jan 2006
    Location
    Germany
    Posts
    4,380
    Thanks
    19
    Thanked 1,005 Times in 913 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows Symbian S60
    Wiki edits
    5

    Default Re: linking of combox with lineEdit.

    Quote Originally Posted by Devoraz View Post
    okay first of all. to kickstart. i suppose i have to connect the combobox to the qlineEdit right?

    i had look through the some examples and the QT Assistant. but i am still confuse of how to go about connecting it.
    Come on, what's the problem QCombobox::currentIndexChanged(const QString&) -> QLineEdit::setText()! REad about signal and slot mechanism.

  12. #12
    Join Date
    Jul 2009
    Posts
    55
    Thanks
    3

    Post Re: linking of combox with lineEdit.

    come on. i am very new to this QT library. i am dump to do this project for my Final Year of Diaploma. please be patience with me

  13. #13
    Join Date
    Jun 2007
    Location
    India
    Posts
    1,042
    Thanks
    8
    Thanked 133 Times in 128 Posts
    Qt products
    Qt3 Qt4 Qt/Embedded
    Platforms
    MacOS X Unix/X11 Windows

    Default Re: linking of combox with lineEdit.

    Quote Originally Posted by Devoraz View Post
    come on. i am very new to this QT library. i am dump to do this project for my Final Year of Diaploma. please be patience with me
    then first of all stop using words that made us think you are exp. And use the newbie section..

  14. #14
    Join Date
    Jan 2008
    Location
    Poland
    Posts
    687
    Thanks
    4
    Thanked 140 Times in 132 Posts
    Qt products
    Qt4 Qt5
    Platforms
    Unix/X11 Windows

    Default Re: linking of combox with lineEdit.

    hmm so i think your problem is quite simple:
    1. You open a dialog with combo box and line edit
    2. Then you edit this dialog and close it
    3. After close you want to set the right bubble (yellow for example) with the right text.
    Right?

    If yes then:
    1. If you have some custom dialog (your own subclass of QDialog) just make two methods for it: one to get the selected index and one to get the line edit text. I assume you use QDialog::exec() to open it, so after exec() just read those values and set the right bubble with right text calling your method which paints it (whith QPainter and so on).

    2. If you have QDialog object and you set the ui to it (setupUi()) then you can get the values staight form ui object (Ui::SomeDialog).
    I would like to be a "Guru"

    Useful hints (try them before asking):
    1. Use Qt Assistant
    2. Search the forum

    If you haven't found solution yet then create new topic with smart question.

  15. The following user says thank you to faldzip for this useful post:

    Devoraz (27th July 2009)

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

    Default Re: linking of combox with lineEdit.

    Guys, just reminding you we're dealing with a school project here. Remember about our policy on helping with school projects - only hints, no ready solutions. The guy has to learn and based on the content of this lenghty thread, he needs it. Foremost the "concept of programming" is required. The programming language is just a tool.
    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. Qt linking problem
    By LovesTha in forum Newbie
    Replies: 3
    Last Post: 30th March 2009, 23:31
  2. How to update lineEdit
    By HelloDan in forum Qt Programming
    Replies: 9
    Last Post: 17th February 2009, 07:01
  3. Copy / Paste doesn't work with LineEdit
    By ia32 in forum Qt Tools
    Replies: 2
    Last Post: 5th May 2008, 21:44
  4. Replies: 4
    Last Post: 20th February 2006, 09:11
  5. subclassing or redrawing a lineEdit
    By jayw710 in forum Qt Programming
    Replies: 2
    Last Post: 7th February 2006, 18:26

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
  •  
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide.