QPushbutton movable Dynamically
-
Hi,
k, Assume my gui isof width and height 500,500, its resized to 400,400 then button has to change position, can u share sample code, I am not getting how to make
@Apeksha Just add a boolean variable to your class and set it to false in the resizeEvent:
MainWindow::MainWindow(...): firstTime(true) { ... } void MainWindow::resizeEvent(QResizeEvent* event) { qDebug("ResizeEvent"); if (!firstTime) { ui->pushButton->move(0,0); } else { firstTime = false; } QMainWindow::resizeEvent(event); }
-
Hi jsulm,
Thank you so much, its very helpful.
Again If i maximize my gui to original size, how to make button position to original position? -
-
@jsulm Same thing I was confused, Now If my gui is of 500,500(width,height), If i resized it to some 300,400 then button position will change. Now my doubt is if gui is maximized i.e to original size(500,500), how to move buttonto original position?
-
you can just store its old position ?
QRect oldpos; // int the class
void MainWindow::resizeEvent(QResizeEvent* event) { qDebug("ResizeEvent"); if (!firstTime) { oldpos=ui->pushButton->geometry(); ui->pushButton->move(0,0); } else { firstTime = false; } QMainWindow::resizeEvent(event); }
-
@jsulm Same thing I was confused, Now If my gui is of 500,500(width,height), If i resized it to some 300,400 then button position will change. Now my doubt is if gui is maximized i.e to original size(500,500), how to move buttonto original position?
-
QRect oldpos; // int the class
void MainWindow::resizeEvent(QResizeEvent* event)
{
qDebug("ResizeEvent");
if (!firstTime) {
oldpos=ui->pushButton->geometry();
ui->pushButton->move(0,0);
} else {
firstTime = false;
}
QMainWindow::resizeEvent(event);
}Here we are saving old geometry, again where we set this geometry?
-
QRect oldpos; // int the class
void MainWindow::resizeEvent(QResizeEvent* event)
{
qDebug("ResizeEvent");
if (!firstTime) {
oldpos=ui->pushButton->geometry();
ui->pushButton->move(0,0);
} else {
firstTime = false;
}
QMainWindow::resizeEvent(event);
}Here we are saving old geometry, again where we set this geometry?
void MainWindow::resizeEvent(QResizeEvent* event) { qDebug("ResizeEvent"); if (!firstTime) { oldpos=ui->pushButton->geometry(); oldX = oldpos.X; oldY = oldpos.Y; ui->pushButton->move(0,0); } else { firstTime = false; ui->pushButton->move(oldX, oldY); } QMainWindow::resizeEvent(event); }
-
void MainWindow::resizeEvent(QResizeEvent* event)
{
oldpos=ui->pushButton->geometry();
int oldx=oldpos.x();
int oldy=oldpos.y();
qDebug()<<"oldpos x is"<<oldx<<"oldpos y is:"<<oldy;
if (!firstTime) {
ui->pushButton->move(50,100);
}
else {
firstTime = false;
ui->pushButton->move(oldx,oldy);
}QMainWindow::resizeEvent(event);
}
But it's not working, button is not moving to old position again when gui is maximized.
-
void MainWindow::resizeEvent(QResizeEvent* event)
{
oldpos=ui->pushButton->geometry();
int oldx=oldpos.x();
int oldy=oldpos.y();
qDebug()<<"oldpos x is"<<oldx<<"oldpos y is:"<<oldy;
if (!firstTime) {
ui->pushButton->move(50,100);
}
else {
firstTime = false;
ui->pushButton->move(oldx,oldy);
}QMainWindow::resizeEvent(event);
}
But it's not working, button is not moving to old position again when gui is maximized.
@Apeksha said in QPushbutton movable Dynamically:
But it's not working, button is not moving to old position again when gui is maximized.
But that is impossible for it to know.
You must check for that situations then. and then call the
ui->pushButton->move(oldx,oldy);you can use isMaximized()
I wish i understood why you cant just use a layout :)
-
@Apeksha said in QPushbutton movable Dynamically:
But it's not working, button is not moving to old position again when gui is maximized.
But that is impossible for it to know.
You must check for that situations then. and then call the
ui->pushButton->move(oldx,oldy);you can use isMaximized()
I wish i understood why you cant just use a layout :)
-
Not wrong as such, but you seem to except it can guess your thoughts :)
The resizeEvent is called when ever windows size has changes.
If you want to do anything , you must make the logic your self.
if you want to restore the button when maximized you can test with
isMaximized() to see if that is now. and if yes, then
move it back to old spot wtih ui->pushButton->move(oldx,oldy);The firstTime flag only fixed the situation that you didnt not want to move it on first resize (first time shown)
If you want to move it back then when maximized you need some code for that too :)
-
Not wrong as such, but you seem to except it can guess your thoughts :)
The resizeEvent is called when ever windows size has changes.
If you want to do anything , you must make the logic your self.
if you want to restore the button when maximized you can test with
isMaximized() to see if that is now. and if yes, then
move it back to old spot wtih ui->pushButton->move(oldx,oldy);The firstTime flag only fixed the situation that you didnt not want to move it on first resize (first time shown)
If you want to move it back then when maximized you need some code for that too :)
-
@jsulm said in QPushbutton movable Dynamically:
@Apeksha I still don't understand why you position this button manually...
I second that. I'm so curious, pretty please with sugar on top, explain your use case.
-
@jsulm said in QPushbutton movable Dynamically:
@Apeksha I still don't understand why you position this button manually...
I second that. I'm so curious, pretty please with sugar on top, explain your use case.
@Wieland
ui->contentWidget->setStyleSheet("QWidget {background-color:#C0C0C0;}");
ui->contentWidget->setMinimumSize( 820, 150 );
QHBoxLayout *ConfigurationLayout = new QHBoxLayout;
QScrollArea *scrollArea = new QScrollArea;
// scrollArea->setStyleSheet("QScrollArea {background-color:#C0C0C0;}");
scrollArea->setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
scrollArea->setHorizontalScrollBarPolicy(Qt::ScrollBarAsNeeded);
scrollArea->setWidget(ui->contentWidget);
scrollArea->setWidgetResizable(true);
ConfigurationLayout->addWidget(scrollArea);
mainBoxLayout->addLayout(ConfigurationLayout);This is my part of code where button movable is required, I had widget and scrollArea and some buttons.
So when my app is minimized, one of the button position should change, when gui is minized it have to display on top of widget. I hope you got my requirement. -
ok didnt check it lately , i assume its because the NewSize from event has not yep been applied.
I think i get your use case now
the button show sort of go to next col if there is no room to be below.
So its not on top of the other but on top in new col?
like this
-
ok didnt check it lately , i assume its because the NewSize from event has not yep been applied.
I think i get your use case now
the button show sort of go to next col if there is no room to be below.
So its not on top of the other but on top in new col?
like this