<div dir="ltr"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">2018-09-11 3:37 GMT+02:00 Maziar Parsijani <span dir="ltr"><<a href="mailto:maziar.parsijani@gmail.com" target="_blank">maziar.parsijani@gmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div>Awesome, thanks! <br></div><div>Dear Maurizio<br></div><div>I have to say every time I looked for it but I couldn't find popup.setfont I don't know why but it seems it appears after you said that.</div></div></blockquote><div><br></div><div>Sometimes it happens :-)</div><div><br>Anyway, remember that the GUI side of Qt, like almost any other GUI framework, is always "widget"-based. Everything you see is a widget, which itself can contain other widgets in different ways, like QComboBox that uses a QLineEdit when it's editable, and a QListView for its popup, which, in turn, contains a QScrollBar, which again contains itself abstract buttons used to scroll up and down.</div><div>QCompleter is a bit of a special case, because it is not a widget, but "installs" itself automatically on an editor like QLineEdit when the PopupCompletion flag is set and it actually is a very basic and uneditable QListView, without scrollbars and single row/item selection mode set. That's why you can do to it almost anything you would do to any other widget, including changing its font, palette, etc.. In fact, you can customize it as you would do for any subclass of QAbstractItemView, or create your own custom item view and set it using setPopup(). This can be very handy as you can manipulate the view or the model to create advanced versions of the popup, such as showing icons, change text alignment and visualization, or even set a custom ItemDelegate and show any kind of content, including graphics and animations.<br><br>Good luck! :-)</div><div><br></div><div>Maurizio</div></div><div><br></div>-- <br><div class="gmail_signature">È difficile avere una convinzione precisa quando si parla delle ragioni del cuore. - "Sostiene Pereira", Antonio Tabucchi<br><a href="http://www.jidesk.net" target="_blank">http://www.jidesk.net</a></div>
</div></div></div>