mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	Going to "Template -> Edit" now has a field to enter the border width (in pixels as only that makes sense in CSS as a flexible unit, TMK). This field modifies the template_options.borderwidth Grantlee property which is part of the bundled templates already and allows the users to modify the borders of tables. The C++ implementation was missing, while the HTML (template) implementation was already in place. Overlooked during GSoC. Reported-by: Willem Ferguson <willemferguson@zoology.up.ac.za> Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
		
			
				
	
	
		
			46 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef TEMPLATEEDIT_H
 | |
| #define TEMPLATEEDIT_H
 | |
| 
 | |
| #include <QDialog>
 | |
| #include "templatelayout.h"
 | |
| 
 | |
| namespace Ui {
 | |
| class TemplateEdit;
 | |
| }
 | |
| 
 | |
| class TemplateEdit : public QDialog
 | |
| {
 | |
| 	Q_OBJECT
 | |
| 
 | |
| public:
 | |
| 	explicit TemplateEdit(QWidget *parent, struct print_options *printOptions, struct template_options *templateOptions);
 | |
| 	~TemplateEdit();
 | |
| private slots:
 | |
| 	void on_fontsize_valueChanged(int font_size);
 | |
| 
 | |
| 	void on_linespacing_valueChanged(double line_spacing);
 | |
| 
 | |
| 	void on_borderwidth_valueChanged(double border_width);
 | |
| 
 | |
| 	void on_fontSelection_currentIndexChanged(int index);
 | |
| 
 | |
| 	void on_colorpalette_currentIndexChanged(int index);
 | |
| 
 | |
| 	void on_buttonBox_clicked(QAbstractButton *button);
 | |
| 
 | |
| 	void colorSelect(QAbstractButton *button);
 | |
| 
 | |
| private:
 | |
| 	Ui::TemplateEdit *ui;
 | |
| 	QButtonGroup *btnGroup;
 | |
| 	bool editingCustomColors;
 | |
| 	struct template_options *templateOptions;
 | |
| 	struct template_options newTemplateOptions;
 | |
| 	struct print_options *printOptions;
 | |
| 	QString grantlee_template;
 | |
| 	void saveSettings();
 | |
| 	void updatePreview();
 | |
| 
 | |
| };
 | |
| 
 | |
| #endif // TEMPLATEEDIT_H
 |