Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. QPushbutton movable Dynamically

QPushbutton movable Dynamically

Scheduled Pinned Locked Moved Unsolved General and Desktop
52 Posts 6 Posters 21.0k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    Apeksha
    wrote on last edited by
    #15

    Hi,
    There is no way to do as per my requirement, when user resizes app, then button has to change its position.

    mrjjM 1 Reply Last reply
    0
    • A Apeksha

      Hi,
      There is no way to do as per my requirement, when user resizes app, then button has to change its position.

      mrjjM Offline
      mrjjM Offline
      mrjj
      Lifetime Qt Champion
      wrote on last edited by
      #16

      Hi
      resizeEvent(event) is the way to do it.
      You just need to make sure then you do not react to the first resize events you get when app starts up.

      1 Reply Last reply
      0
      • A Offline
        A Offline
        Apeksha
        wrote on last edited by
        #17

        Hi,

        I am using resizeevent , but my button is moving initially when app runs, but it have to move when I resize my gui.
        void MainWindow::resizeEvent(QResizeEvent* event)
        {
        qDebug("ResizeEvent");
        ui->pushButton->move(0,0);
        QMainWindow::resizeEvent(event);
        }
        this is the way I am doing, any correction?

        mrjjM 1 Reply Last reply
        0
        • A Apeksha

          Hi,

          I am using resizeevent , but my button is moving initially when app runs, but it have to move when I resize my gui.
          void MainWindow::resizeEvent(QResizeEvent* event)
          {
          qDebug("ResizeEvent");
          ui->pushButton->move(0,0);
          QMainWindow::resizeEvent(event);
          }
          this is the way I am doing, any correction?

          mrjjM Offline
          mrjjM Offline
          mrjj
          Lifetime Qt Champion
          wrote on last edited by
          #18

          @Apeksha

          That is fine. but you will also do on first resize
          to avoid that, make some if statements
          the event has both oldSize and newSixe to check

          I cannot tell you what to write as i dont know
          what the rules are to move the button.
          At what sizes etc.

          You can also use a timer to only allowed after say 10 secs to
          avoid doing it on first resize.

          1 Reply Last reply
          0
          • A Offline
            A Offline
            Apeksha
            wrote on last edited by
            #19

            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

            jsulmJ 1 Reply Last reply
            0
            • A Apeksha

              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

              jsulmJ Offline
              jsulmJ Offline
              jsulm
              Lifetime Qt Champion
              wrote on last edited by
              #20

              @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);
              }
              

              https://forum.qt.io/topic/113070/qt-code-of-conduct

              1 Reply Last reply
              1
              • A Offline
                A Offline
                Apeksha
                wrote on last edited by
                #21

                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?

                jsulmJ 1 Reply Last reply
                0
                • A Apeksha

                  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?

                  jsulmJ Offline
                  jsulmJ Offline
                  jsulm
                  Lifetime Qt Champion
                  wrote on last edited by
                  #22

                  @Apeksha I don't know who you're going to position this button. What is the logic for positioning it?

                  https://forum.qt.io/topic/113070/qt-code-of-conduct

                  1 Reply Last reply
                  0
                  • A Offline
                    A Offline
                    Apeksha
                    wrote on last edited by
                    #23

                    @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?

                    Taz742T jsulmJ 2 Replies Last reply
                    0
                    • A Apeksha

                      @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?

                      Taz742T Offline
                      Taz742T Offline
                      Taz742
                      wrote on last edited by
                      #24

                      @Apeksha
                      save coordinates

                      Do what you want.

                      mrjjM 1 Reply Last reply
                      2
                      • Taz742T Taz742

                        @Apeksha
                        save coordinates

                        mrjjM Offline
                        mrjjM Offline
                        mrjj
                        Lifetime Qt Champion
                        wrote on last edited by mrjj
                        #25

                        @Apeksha

                        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);
                        }
                        
                        1 Reply Last reply
                        1
                        • A Apeksha

                          @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?

                          jsulmJ Offline
                          jsulmJ Offline
                          jsulm
                          Lifetime Qt Champion
                          wrote on last edited by
                          #26

                          @Apeksha I still don't understand why you position this button manually...

                          https://forum.qt.io/topic/113070/qt-code-of-conduct

                          1 Reply Last reply
                          0
                          • A Offline
                            A Offline
                            Apeksha
                            wrote on last edited by
                            #27

                            @mrjj

                            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?

                            Taz742T 1 Reply Last reply
                            0
                            • A Apeksha

                              @mrjj

                              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?

                              Taz742T Offline
                              Taz742T Offline
                              Taz742
                              wrote on last edited by
                              #28

                              @Apeksha

                              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);
                              }
                              

                              Do what you want.

                              1 Reply Last reply
                              0
                              • A Offline
                                A Offline
                                Apeksha
                                wrote on last edited by
                                #29

                                @Taz742

                                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.

                                mrjjM 1 Reply Last reply
                                0
                                • A Apeksha

                                  @Taz742

                                  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.

                                  mrjjM Offline
                                  mrjjM Offline
                                  mrjj
                                  Lifetime Qt Champion
                                  wrote on last edited by
                                  #30

                                  @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 :)

                                  A 1 Reply Last reply
                                  0
                                  • mrjjM mrjj

                                    @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 :)

                                    A Offline
                                    A Offline
                                    Apeksha
                                    wrote on last edited by Apeksha
                                    #31

                                    @mrjj

                                    My code is wrong?

                                    what conditions I have to use? Can you please guide me?

                                    mrjjM 1 Reply Last reply
                                    0
                                    • A Apeksha

                                      @mrjj

                                      My code is wrong?

                                      what conditions I have to use? Can you please guide me?

                                      mrjjM Offline
                                      mrjjM Offline
                                      mrjj
                                      Lifetime Qt Champion
                                      wrote on last edited by
                                      #32

                                      @Apeksha

                                      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 :)

                                      A 1 Reply Last reply
                                      0
                                      • mrjjM mrjj

                                        @Apeksha

                                        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 :)

                                        A Offline
                                        A Offline
                                        Apeksha
                                        wrote on last edited by
                                        #33

                                        @mrjj

                                        I have tried with ismaximized(), its not working.

                                        mrjjM 1 Reply Last reply
                                        0
                                        • A Apeksha

                                          @mrjj

                                          I have tried with ismaximized(), its not working.

                                          mrjjM Offline
                                          mrjjM Offline
                                          mrjj
                                          Lifetime Qt Champion
                                          wrote on last edited by
                                          #34

                                          @Apeksha
                                          it always say false ? or in what way "not working"

                                          A 1 Reply Last reply
                                          0

                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Groups
                                          • Search
                                          • Get Qt Extensions
                                          • Unsolved