Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Qt for Python
  4. How to create a Print Preview Dialog for a method

How to create a Print Preview Dialog for a method

Scheduled Pinned Locked Moved Unsolved Qt for Python
26 Posts 4 Posters 3.4k Views
  • 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.
  • L LT-K101

    @jsulm Please I did check it but I did not understand it

    jsulmJ Online
    jsulmJ Online
    jsulm
    Lifetime Qt Champion
    wrote on last edited by
    #15

    @LT-K101 said in How to create a Print Preview Dialog for a method:

    but I did not understand it

    What exactly?
    There is an example:

    printer.setOutputFileName("print.ps");
    QPainter painter;
    painter.begin(&printer);
    for (int page = 0; page < numberOfPages; ++page) {
        // Use the painter to draw on the page.
        if (page != lastPage)
            printer.newPage();
     }
    painter.end();
    

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

    L 1 Reply Last reply
    0
    • jsulmJ jsulm

      @LT-K101 said in How to create a Print Preview Dialog for a method:

      but I did not understand it

      What exactly?
      There is an example:

      printer.setOutputFileName("print.ps");
      QPainter painter;
      painter.begin(&printer);
      for (int page = 0; page < numberOfPages; ++page) {
          // Use the painter to draw on the page.
          if (page != lastPage)
              printer.newPage();
       }
      painter.end();
      
      L Offline
      L Offline
      LT-K101
      wrote on last edited by
      #16

      @JonB It's the C++ syntax that confuses me. Sorry for bothering you.Please below is a report method I want to preview and print. It works perfectly without a Dialog by saving to disk so I wanted to use QPrintPreviewDialog to let user preview the report before printing.

      def printReport(self):
          filename, ok = QtWidgets.QFileDialog.getSaveFileName(self, 'Save file', '', 'Pdf files (*.pdf)')  
          if ok:
               # Open local project
               project = valentina.project.connect('./temp.vsp')
      
               # Make report instance
               report = project.report(name='tempofficials_summary',
                                              dsn='sqlite://C:/Users/PC/Desktop/PROJECT/temp.db',
                                              query="SELECT firstname,surname,email,phone,address,dob, '{}' || image as full_path FROM temp_table WHERE id_no={}".format(
                                                  'C:/Users/LTK101/Desktop/PROJECT/img/', id))
      
              # Print result as PDF
              report.printToDisk(filename)
      
      
      jsulmJ JonBJ 2 Replies Last reply
      0
      • L LT-K101

        @JonB It's the C++ syntax that confuses me. Sorry for bothering you.Please below is a report method I want to preview and print. It works perfectly without a Dialog by saving to disk so I wanted to use QPrintPreviewDialog to let user preview the report before printing.

        def printReport(self):
            filename, ok = QtWidgets.QFileDialog.getSaveFileName(self, 'Save file', '', 'Pdf files (*.pdf)')  
            if ok:
                 # Open local project
                 project = valentina.project.connect('./temp.vsp')
        
                 # Make report instance
                 report = project.report(name='tempofficials_summary',
                                                dsn='sqlite://C:/Users/PC/Desktop/PROJECT/temp.db',
                                                query="SELECT firstname,surname,email,phone,address,dob, '{}' || image as full_path FROM temp_table WHERE id_no={}".format(
                                                    'C:/Users/LTK101/Desktop/PROJECT/img/', id))
        
                # Print result as PDF
                report.printToDisk(filename)
        
        
        jsulmJ Online
        jsulmJ Online
        jsulm
        Lifetime Qt Champion
        wrote on last edited by
        #17

        @LT-K101 said in How to create a Print Preview Dialog for a method:

        I wanted to use QPrintPreviewDialog to let user preview the report before printing.

        Then please do what was suggested here. Something like (should not be difficult to translate it to Python):

        def reportPreview(self, printer):
            QPainter painter;
            painter.begin(printer);
            for (int page = 0; page < numberOfPages; ++page) {
                // Use the painter to draw on the page.
                // Put here code to draw preview using painter
                if (page != lastPage)
                    printer.newPage();
             }
            painter.end();
        
        def printpreviewDialog(self):
            printer = QPrinter(QPrinter.HighResolution)
            previewDialog = QPrintPreviewDialog(printer, self)
            previewDialog.paintRequested.connect(self.reportPreview)
            previewDialog.exec_()
        

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

        1 Reply Last reply
        0
        • L LT-K101

          @JonB It's the C++ syntax that confuses me. Sorry for bothering you.Please below is a report method I want to preview and print. It works perfectly without a Dialog by saving to disk so I wanted to use QPrintPreviewDialog to let user preview the report before printing.

          def printReport(self):
              filename, ok = QtWidgets.QFileDialog.getSaveFileName(self, 'Save file', '', 'Pdf files (*.pdf)')  
              if ok:
                   # Open local project
                   project = valentina.project.connect('./temp.vsp')
          
                   # Make report instance
                   report = project.report(name='tempofficials_summary',
                                                  dsn='sqlite://C:/Users/PC/Desktop/PROJECT/temp.db',
                                                  query="SELECT firstname,surname,email,phone,address,dob, '{}' || image as full_path FROM temp_table WHERE id_no={}".format(
                                                      'C:/Users/LTK101/Desktop/PROJECT/img/', id))
          
                  # Print result as PDF
                  report.printToDisk(filename)
          
          
          JonBJ Offline
          JonBJ Offline
          JonB
          wrote on last edited by
          #18

          @LT-K101
          Noone can answer this without knowing exactly what a valentina.project is. I see it has some printToDisk() method. QPrintPreviewDialog requires a QPrinter. So does a valentina.project offer to print to a QPrinter?

          L 1 Reply Last reply
          0
          • JonBJ JonB

            @LT-K101
            Noone can answer this without knowing exactly what a valentina.project is. I see it has some printToDisk() method. QPrintPreviewDialog requires a QPrinter. So does a valentina.project offer to print to a QPrinter?

            L Offline
            L Offline
            LT-K101
            wrote on last edited by
            #19

            @JonB It has printToDisk() which save the report as pdf and printToLocalPrinter() which print to any default printer set as default without a dialog so I was trying to see if I could use QPrintPreviewDialog.

            JonBJ 1 Reply Last reply
            0
            • L LT-K101

              @JonB It has printToDisk() which save the report as pdf and printToLocalPrinter() which print to any default printer set as default without a dialog so I was trying to see if I could use QPrintPreviewDialog.

              JonBJ Offline
              JonBJ Offline
              JonB
              wrote on last edited by JonB
              #20

              @LT-K101 said in How to create a Print Preview Dialog for a method:

              printToLocalPrinter() which print to any default printer

              If that accepts a QPrinter it can be sent to a QPrintPreviewDialog. But it does not look like it can? Looks like it does something about the printer internally instead?

              If I had been asking for help on whatever a valentina.project is or whatever your "report"/"report writer" is, which provides these print...() calls, I would have supplied a link reference to it, plus however it interacts with Qt. But you would like us to answer without having that. I'm not even sure it integrates with Qt, let alone QPrinter, if it is just some Python thing what Qt integration does it have?

              L 1 Reply Last reply
              0
              • JonBJ JonB

                @LT-K101 said in How to create a Print Preview Dialog for a method:

                printToLocalPrinter() which print to any default printer

                If that accepts a QPrinter it can be sent to a QPrintPreviewDialog. But it does not look like it can? Looks like it does something about the printer internally instead?

                If I had been asking for help on whatever a valentina.project is or whatever your "report"/"report writer" is, which provides these print...() calls, I would have supplied a link reference to it, plus however it interacts with Qt. But you would like us to answer without having that. I'm not even sure it integrates with Qt, let alone QPrinter, if it is just some Python thing what Qt integration does it have?

                L Offline
                L Offline
                LT-K101
                wrote on last edited by
                #21

                @JonB Well the Valentina report is written with Qt I have been able to integrate with PyQt5. The developers have not written a Dialog for the print method yet, when I asked I was told I can use pyQt5 to create a custom Dialog so I was hoping QPrintPreviewDialog will do the magic for me. Below is the image they suggested it could be done using pyqt.
                printDialog.jpg

                JonBJ 1 Reply Last reply
                0
                • L LT-K101

                  @JonB Well the Valentina report is written with Qt I have been able to integrate with PyQt5. The developers have not written a Dialog for the print method yet, when I asked I was told I can use pyQt5 to create a custom Dialog so I was hoping QPrintPreviewDialog will do the magic for me. Below is the image they suggested it could be done using pyqt.
                  printDialog.jpg

                  JonBJ Offline
                  JonBJ Offline
                  JonB
                  wrote on last edited by JonB
                  #22

                  @LT-K101 said in How to create a Print Preview Dialog for a method:

                  Well the Valentina report is written with Qt I have been able to integrate with PyQt5.

                  Is it really that hard to provide a link to this thing if you want help with it, after being asked to do so several times? I just don't get why you don't....

                  A custom dialog to invite the user to print is not the same thing as a QPrintPreviewDialog to allow previewing of the output.

                  L 1 Reply Last reply
                  0
                  • JonBJ JonB

                    @LT-K101 said in How to create a Print Preview Dialog for a method:

                    Well the Valentina report is written with Qt I have been able to integrate with PyQt5.

                    Is it really that hard to provide a link to this thing if you want help with it, after being asked to do so several times? I just don't get why you don't....

                    A custom dialog to invite the user to print is not the same thing as a QPrintPreviewDialog to allow previewing of the output.

                    L Offline
                    L Offline
                    LT-K101
                    wrote on last edited by
                    #23

                    @JonB Well even creating a custom Dialog is my headache now.Any assistance please?

                    JonBJ 1 Reply Last reply
                    0
                    • L LT-K101

                      @JonB Well even creating a custom Dialog is my headache now.Any assistance please?

                      JonBJ Offline
                      JonBJ Offline
                      JonB
                      wrote on last edited by JonB
                      #24

                      @LT-K101
                      Seriously, in what way? Create a QDialog to ask the user if they want to print, whether to file or physical printer? And/or maybe a QFileDialog to let the user pick a file/location to save to?

                      Or maybe that inbuilt Windows Print dialog is all user needs anyway, seems to offer print to printer or to file?

                      L 1 Reply Last reply
                      0
                      • JonBJ JonB

                        @LT-K101
                        Seriously, in what way? Create a QDialog to ask the user if they want to print, whether to file or physical printer? And/or maybe a QFileDialog to let the user pick a file/location to save to?

                        Or maybe that inbuilt Windows Print dialog is all user needs anyway, seems to offer print to printer or to file?

                        L Offline
                        L Offline
                        LT-K101
                        wrote on last edited by
                        #25

                        @JonB said in How to create a Print Preview Dialog for a method:

                        maybe that inbuilt Windows Print dialog is all user needs anyway, seems to offer print to printer or to file?

                        Creating the a Dialog to offer print to printer or to file which will connect to my print method is what I need please.

                        JonBJ 1 Reply Last reply
                        0
                        • L LT-K101

                          @JonB said in How to create a Print Preview Dialog for a method:

                          maybe that inbuilt Windows Print dialog is all user needs anyway, seems to offer print to printer or to file?

                          Creating the a Dialog to offer print to printer or to file which will connect to my print method is what I need please.

                          JonBJ Offline
                          JonBJ Offline
                          JonB
                          wrote on last edited by JonB
                          #26

                          @LT-K101
                          You write a dialog to ask the user whether they want to print and if they say yes you call printToLocalPrinter() or printToDisk() or similar. I'm not writing that for you, it's a dialog, I have no idea what your issue is. You also already have a printReport() shown earlier which does a getSaveFileName() and calls printToDisk(filename), so I don't know what your problem is.

                          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