mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
PrintOptions is a QWidget class to be used as an addition to a future print dialog (possibly based on QPrintDialog). Currently only contains a couple of radio buttons. PrintDialog (printdialog.cpp/h) which is a basic QDialog is currently added for testing only and it holds an instance of PrintOptions. Calling File->Print opens this test dialog for now. Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
14 lines
281 B
C++
14 lines
281 B
C++
#include "printoptions.h"
|
|
#include "ui_printoptions.h"
|
|
|
|
PrintOptions *PrintOptions::instance()
|
|
{
|
|
static PrintOptions *self = new PrintOptions();
|
|
return self;
|
|
}
|
|
|
|
PrintOptions::PrintOptions(QWidget *parent, Qt::WindowFlags f)
|
|
: ui( new Ui::PrintOptions())
|
|
{
|
|
ui->setupUi(this);
|
|
}
|