Slot
-
wrote on 18 Feb 2011, 04:51 last edited by
Hi Everybody...Warm greetings to All.I need a help from you guys.Am very new to coding and presently my work is with Qt.So I started with it and I have a problem in connecting the slot.
My idea is to connect a lineEdit to the LCD,whenever I type a number in the lineEdit,the LCD should display the same.
Am using QtCreator for doing this.Please help me to proceed further.
Thank you All in advance.
-
wrote on 18 Feb 2011, 05:04 last edited by
Post a small code example of what you are trying to do, so that we may help you with the details.
-
wrote on 18 Feb 2011, 05:44 last edited by
I got it done with the QtCreator.
I used the following code to validate my lineEdit to accept only numbers.QRegExp rx( "^[0-9]*$" );
QValidator *validator = new QRegExpValidator(rx, this);
lineEdit->setValidator( validator );Thank You
-
wrote on 18 Feb 2011, 05:59 last edited by
How to check the overflow of LCD in Qt?
-
wrote on 18 Feb 2011, 06:42 last edited by
Check this signal:
-
wrote on 18 Feb 2011, 12:32 last edited by
[quote author="Revu" date="1298007867"]I got it done with the QtCreator.
I used the following code to validate my lineEdit to accept only numbers.QRegExp rx( "^[0-9]*$" );
QValidator *validator = new QRegExpValidator(rx, this);
lineEdit->setValidator( validator );Thank You[/quote]
You could also use "QSpinBox":http://doc.qt.nokia.com/4.7/qspinbox.html instead of a line editor or use a ready built "QIntValidator":http://doc.qt.nokia.com/4.7/qintvalidator.html on your line edit.
-
wrote on 18 Feb 2011, 12:58 last edited by
Go through this link...This may be helpful to you..
-
wrote on 22 Feb 2011, 07:01 last edited by
@All thank you
-
wrote on 22 Feb 2011, 07:10 last edited by
Now I have a new problem.
I have two forms in QtCreator.How do I link both?
A click of a button on the main window should display the other window.
Can I do this by saving both the forms into the same folder and then create a slot in the mainwindow?Please help me...
Reply at the earliest will help me a lot.Thanks in advance
-
wrote on 22 Feb 2011, 07:25 last edited by
First: for new questions, a new thread would be fine, so the topics are separated.
Regarding your problem: You have a class that implements your form. In this class you have the slots for the buttons. There you can show the other form, same as showing dialogs etc.
-
wrote on 22 Feb 2011, 07:33 last edited by
@Geroif:ok sorry for that...
I thought this is concerned with slot so i could post here..
Well still am not clear about the solution.It would be better if it is in steps.
Thank you
-
wrote on 22 Feb 2011, 07:42 last edited by
The normal way of using designer created forms is:
create them in designer
in your project, create a class that uses the QtDesigner created ui stuff to build it's UI and implement the logic in the class
in this class you implement the slots, so you can also implement a slot for a button (see the docs, bock, examples...)
in that slot you can show your second form. (MyDesignerClass2.show() ) where MyDesignerClass2 is the class you use for implementing the UI for the second form. It can't be done directly in QtDesigner.
-
wrote on 22 Feb 2011, 09:08 last edited by
@Geroif:I will try out with it .
Thank You -
wrote on 22 Feb 2011, 11:04 last edited by
@Geroif:I think almost is done.But how to declare the second designer form in the scope of first form in its .cpp file.
-
wrote on 22 Feb 2011, 11:12 last edited by
[quote author="Revu" date="1298372699"]@Geroif:I think almost is done.But how to declare the second designer form in the scope of first form in its .cpp file.[/quote]
The usual way is to have one cpp class per form file (.ui). To use one of the forms in another cpp file, include the headers as you do for ordinary classes too.
-
wrote on 22 Feb 2011, 11:21 last edited by
Yes.
-
wrote on 22 Feb 2011, 12:06 last edited by
Of course!
Each form should be a class, and a class should have header and cpp (if its not pure inline or template).
The designer is only some helper tool to not do all the coding for ui representation by hand (what I personally prefer). -
wrote on 23 Feb 2011, 05:31 last edited by
am not able to get it done...how could I attach my code with the message to get help ?
-
wrote on 23 Feb 2011, 09:31 last edited by
Am getting error after compiling.The code is as follows:
@#include <QtGui>#include "mainwindow.h"
#include "subWindow.h"int main(int argc , char *argv[])
{
QApplication app(argc,argv);mainwindow mWindow; mWindow.show(); subWindow window; window.show(); QObject::connect( &mWindow, SIGNAL(Clicked()), &window, SLOT(on_next_clicked())); return app.exec();
}
@the error is:
main.cpp: In function ‘int main(int, char**)’:
main.cpp:10: error: ‘mainwindow’ was not declared in this scope
main.cpp:10: error: expected ‘;’ before ‘mWindow’
main.cpp:11: error: ‘mWindow’ was not declared in this scope
make: *** [main.o] Error 1please help
1/28