Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
39 views

Invalid use of Ui

I'm a student programmer and I'm doing some GUI programing for my company and I have recently ran into an issue that I feel I need some assistance with. Im using Qt and some of its widgets are still ...
2
votes
1answer
126 views

How can I add a QLineEdit to Menubar

I am attempting to reclaim some screen real estate in my application. I've got a search bar that is a basic QLineEdit and takes up space. In my menu bar, I easily have enough room to fit this search ...
2
votes
3answers
2k views

How to know if a QLineEdit got focus?

I want to be able to know if in the QLineEdit it was a click. So I guess I should reimplement the following function(??): void QLineEdit::focusInEvent ( QFocusEvent * e ) [virtual protected] How ...
2
votes
2answers
1k views

QValidator for hex input

I have a Qt widget which should only accept a hex string as input. It is very simple to restrict the input characters to [0-9A-Fa-f], but I would like to have it display with a delimiter between ...
2
votes
1answer
1k views

How to make QLineEdit expand inside QScrollArea

I have a QLabel and a QLineEdit inside a QWidget. When I have the widget inside a QScrollArea, the line edit does not expand to occupy the excess width of the window. When the widget is not inside the ...
1
vote
2answers
58 views

silently transfer keyPressEvent to one child , and make it focus?

When user types in a QWidget based window, I wanted a QLineEdit to process all input keys, so I tried the following two solution in keyPressEvent() of that QWidget: A. void Window::keyPressEvent ...
1
vote
3answers
167 views

customizing QlineEdit in Qt

I am making a name field using QlineEdit. I want the entry in this field is entered such that the first character of every word is always uppercase. I don't know how to set the inputmask for that, ...
1
vote
2answers
345 views

QLineEdit placeholder text not working in Qt 4.6.3

I am using Qt 4.6.3, and tried to set some placeholder text on a QLineEdit. But these methods didn't work: using Qt designer (uic) through code ui->lineedit.setPlaceholderText("phtext") ...
1
vote
1answer
846 views

QLineEdit Validation for {[A-Z] [a-z][0-9]} text input

I want to accept new username from user in my application. I want the username string should contain only (A-Z or a-z or 0-9 and maxLength of 8). So I want to validate the input from QLineEdit. I went ...
1
vote
1answer
800 views

Select text of QLineEdit on focus

I have created a dialog using qt designer. There is a QLineEdit object in the dialog with some default content. When dialog initializes focus goes to the QLineEdit, I want the default content to be ...
1
vote
2answers
1k views

Showing tooltip of QLineEdit upon focus in Qt

I found that I can set a tooltip on a QLineEdit as such: equation = new QLineEdit(); equation->setToolTip("Example: a*b+c+~c"); However, I would like the tooltip to be displayed when that ...
1
vote
1answer
641 views

Determining object types in Qt

I have a series of QTextEdits and QLineEdits connected to a slot through a QSignalMapper(which emits a textChanged(QWidget*) signal). When the connected slot is called (pasted below), I need to be ...
1
vote
1answer
977 views

Connecting multiple signals to a single slot in Qt

I'm trying to keep track of the textChanged() signal on for handful of QTextEdits. I want to do the same thing regardless of the text edit emitting the signal: uncheck its associated checkbox in a ...
1
vote
2answers
2k views

Saving QList<T> to a file?

I've got a QList of QLineEdit*'s QList<QLineEdit*> example; Example will hold 100 items of lineEdits. When I try to save or load to a file, it fails to save or load the QList properly, if ...
0
votes
1answer
16 views

QCompleter and Tab key

I'm trying to make a Completion , when pressing tab , you get the first completion of all possibilities. But , in a QWidget based main window , pressing tab will make that QLineEdit lost focus , and ...
0
votes
1answer
49 views

Qt moc_file issues

I'm a student programmer and I am using Qt to build some GUI applications for work and I have been running into moc issues over and over again. I was hoping for a solution to the current problem that ...
0
votes
3answers
45 views

QLineEdit: Is there an elegant solution to tell multiple QLineEdit widgets apart in event handler?

I have multiple QLineEdit widgets on a configuration widget. When the configuration text is changed I want to store the updated value (there are a few of them so I don't want to pass them in one ...
0
votes
2answers
91 views

Pyside: Use button to copy text from qlineEdit to a label and to a string var

I'm trying to get a pyside button to copy text from a qlineEdit field to a label and to a string variable. I have been through almost all of the Zetcode tutorials, but obviously I am missing ...
0
votes
2answers
32 views

Trim a QLineEdit automatically , possible?

I wanted to limit the input of QLineEdit, no heading space , is that possible ? I shouldn't be using , e.g the textEdited() signal , right ? Thanks !
0
votes
0answers
86 views

QML - Embedded QLineEdit - editingFinished only raised by hitting Enterkey

I have a standard QLineEdit that is embedded in a QGraphicsProxyWidget, in a sperate wrapperclass, to make it accessible in QML. In my wrapperclass i make a reconnect of the signal "editingFinished" ...
0
votes
0answers
151 views

Python Qt get values QLineEdit QPushButton

I want to get values of a QLineEdit and QPushButton.setMenu(QtGui.QMenu())-Actions and save them into variables after clicking on a QPushButton. I tried too google for it a lot only thing I was able ...
0
votes
1answer
124 views

QLineEdit in QDialog does not show the text that is typed in it

I am developing an application in QT For Symbian 3. I have a QDialog that takes text input from user. Everything works fine except that the text entered in QLineEdit cannot be seen. The text is there ...
0
votes
2answers
294 views

Qt - Radiobutton in diff dialog(window) -> taking result to the mainwindow into lineedit

my problem looks like that. I got dialog window and i know how to get result from checked radiobutton but only in this window. How to take result into different window(mainwindow). button(Pobierz) is ...
0
votes
1answer
226 views

making password line edit in qt

i wanna make an application that contains a line edit and a button that when you write correct password and press button it quits from window but i can't connect my button and my line edit and i ...
0
votes
2answers
467 views

model/view QCompleter in a QLineEdit

ubuntu 10.04, KDE 4.4.5 python 2.6.4 qt 4.6.2 pyqt 4.6.2 I'm trying to create a QCompleter, which works fine if I just build the QLineEdit. However if I drop the QLineEdit into a QMainWindow, the ...
0
votes
0answers
111 views

Qt: qlineedit cursor lost when switching between layouts

Programming with Qt 4.7.0 under Windows, I came across a very strange problem that i cannot solve. The code has now grown so big, that i cannot find the guilty excerpt to upload it here. In my ...
0
votes
1answer
1k views

Retrieve value of QTableWidget cells which are QLineEdit widgets

I create a QLineEdit,set a validator and put it on the table with this code: ui->moneyTableWidget->setCellWidget(rowsNum, 1, newQLineEdit); Then I've got another class for manipulating the ...
0
votes
1answer
454 views

PyQt4: AttributeError: 'QLineEdit' object has no attribute 'setPlaceholderText'

I have a QLineEdit, and I want to set a placeholder text. When I call setPlaceholderText(string) I get an AttributeError, but: >>> from PyQt4 import QtCore >>> ...
0
votes
2answers
4k views

How to get text in QlineEdit when QpushButton is pressed in a string?

I have given my code below, have problem in implementing a function I want the text in lineedit with objectname 'host' in a string say 'shost'. when the user click the pushbutton with name ...
0
votes
1answer
837 views

Setting focus on QLineEdit while showing the QListView view

In Qt, there is a QCompleter class which provides auto-complete funtionanity. I want to use QListView to finish the same thing. In the following code, When the QListView shows, QLineEdit will lose ...