mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	With this option there is an exception, which makes the notes section of the profile table occupy half the page. This way dive plans can reasonably be printed. Fixes #636 Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			763 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			763 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef PRINTOPTIONS_H
 | |
| #define PRINTOPTIONS_H
 | |
| 
 | |
| #include <QWidget>
 | |
| 
 | |
| #include "ui_printoptions.h"
 | |
| 
 | |
| // should be based on a custom QPrintDialog class
 | |
| class PrintOptions : public QWidget {
 | |
| 	Q_OBJECT
 | |
| 
 | |
| public:
 | |
| 	explicit PrintOptions(QWidget *parent = 0, struct options *printOpt = 0);
 | |
| 	void setup(struct options *printOpt);
 | |
| 
 | |
| private:
 | |
| 	Ui::PrintOptions ui;
 | |
| 	struct options *printOptions;
 | |
| 	bool hasSetupSlots;
 | |
| 
 | |
| private
 | |
| slots:
 | |
| 	void radioSixDivesClicked(bool check);
 | |
| 	void radioTwoDivesClicked(bool check);
 | |
| 	void radioOneDiveClicked(bool check);
 | |
| 	void radioTablePrintClicked(bool check);
 | |
| 	void printInColorClicked(bool check);
 | |
| 	void printSelectedClicked(bool check);
 | |
| 	void notesOnTopClicked(bool check);
 | |
| 	void profileOnTopClicked(bool check);
 | |
| };
 | |
| 
 | |
| #endif // PRINTOPTIONS_H
 |