Qt Connect Signal And Slot With Different Parameters

Parameters
Hello,
I'm making a Sudoku (solving/generating) program in Qt. Now, I'm just a beginner as a programmer, and I have no experience with Qt. I'm stuck in a strange situation. I want to connect a signal and slot with different parameters.
My grid is made up of an array of QLineEdits, and here's how I'm making the connections:
The 3 parameters of checkInput() are the minigrid, row and column numbers of the respective box in the grid. Qt doesn't accept Signals and Slots with different parameters, so how do I go about doing this?
Do I:
1) Overload returnPressed() of QLineEdit ? Is this even possible?
2) Create my own Signal in the Grid class? If so, how do I connect this signal to returnPressed() ? (if I do, then both will need to have void parameters. What how do I get the values of minigrid, row and column then?)
3) Change the structure of my grid? Use 81 connect statements ?
4) Can I subclass QLineEdit, and make my own signal in it?
Any help with this will be greatly appreciated...

Qt Connect Signal Slot With Parameters

Qt Connect Signal And Slot With Different Parameters

Qt Connect Signal And Slot With Different Parameters Card

Hello,
I'm making a Sudoku (solving/generating) program in Qt. Now, I'm just a beginner as a programmer, and I have no experience with Qt. I'm stuck in a strange situation. I want to connect a signal and slot with different parameters.
My grid is made up of an array of QLineEdits, and here's how I'm making the connections:
The 3 parameters of checkInput() are the minigrid, row and column numbers of the respective box in the grid. Qt doesn't accept Signals and Slots with different parameters, so how do I go about doing this?
Do I:
1) Overload returnPressed() of QLineEdit ? Is this even possible?
2) Create my own Signal in the Grid class? If so, how do I connect this signal to returnPressed() ? (if I do, then both will need to have void parameters. What how do I get the values of minigrid, row and column then?)
3) Change the structure of my grid? Use 81 connect statements ?
4) Can I subclass QLineEdit, and make my own signal in it?
Any help with this will be greatly appreciated...

Qt Connect Signal And Slot With Different Parameters Games

Passing extra arguments to PyQt slots April 25, 2011 at 13., Qt. A frequent question coming up when programming with PyQt is how to pass extra arguments to slots. After all, the signal-slot connection mechanism only specifies how to connect a signal to a slot - the signal's arguments are passed to the slot, but no additional (user-defined.