mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Windows printing & GL context issues
This commit is contained in:
parent
07188c2cde
commit
0d1b153a45
@ -99,8 +99,12 @@ void GetTextExtent(QString text, int & width, int & height, QFont *font)
|
|||||||
#endif
|
#endif
|
||||||
QFontMetrics fm(*font);
|
QFontMetrics fm(*font);
|
||||||
//QRect r=fm.tightBoundingRect(text);
|
//QRect r=fm.tightBoundingRect(text);
|
||||||
width=fm.width(text); //fm.width(text);
|
width=fm.width(text);
|
||||||
|
#ifdef Q_WS_WIN32
|
||||||
|
height=fm.ascent();
|
||||||
|
#else
|
||||||
height=fm.xHeight()+2; //fm.ascent();
|
height=fm.xHeight()+2; //fm.ascent();
|
||||||
|
#endif
|
||||||
#ifdef ENABLE_THREADED_DRAWING
|
#ifdef ENABLE_THREADED_DRAWING
|
||||||
mut.unlock();
|
mut.unlock();
|
||||||
#endif
|
#endif
|
||||||
|
@ -70,10 +70,11 @@ Daily::Daily(QWidget *parent,gGraphView * shared, MainWindow *mw)
|
|||||||
GraphView=new gGraphView(ui->graphMainArea,shared);
|
GraphView=new gGraphView(ui->graphMainArea,shared);
|
||||||
GraphView->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding);
|
GraphView->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding);
|
||||||
|
|
||||||
snapGV=new gGraphView(ui->graphMainArea,shared);
|
snapGV=new gGraphView(ui->graphMainArea);
|
||||||
snapGV->setMinimumSize(172,172);
|
snapGV->setMinimumSize(172,172);
|
||||||
snapGV->hideSplitter();
|
snapGV->hideSplitter();
|
||||||
snapGV->hide();
|
snapGV->hide();
|
||||||
|
|
||||||
scrollbar=new MyScrollBar(ui->graphMainArea);
|
scrollbar=new MyScrollBar(ui->graphMainArea);
|
||||||
scrollbar->setOrientation(Qt::Vertical);
|
scrollbar->setOrientation(Qt::Vertical);
|
||||||
scrollbar->setSizePolicy(QSizePolicy::Maximum,QSizePolicy::Expanding);
|
scrollbar->setSizePolicy(QSizePolicy::Maximum,QSizePolicy::Expanding);
|
||||||
@ -736,7 +737,9 @@ void Daily::Load(QDate date)
|
|||||||
if (ahi+rei+fli>0) {
|
if (ahi+rei+fli>0) {
|
||||||
html+="</tr>\n"; //<tr><td colspan=4 align=center><i>"+tr("Event Breakdown")+"</i></td></tr>\n";
|
html+="</tr>\n"; //<tr><td colspan=4 align=center><i>"+tr("Event Breakdown")+"</i></td></tr>\n";
|
||||||
//G_AHI->setFixedSize(gwwidth,120);
|
//G_AHI->setFixedSize(gwwidth,120);
|
||||||
QPixmap pixmap=snapGV->renderPixmap(172,172,false); //gwwidth,gwheight,false);
|
//mainwin->snapshotGraph()->setPrintScaleX(1);
|
||||||
|
//mainwin->snapshotGraph()->setPrintScaleY(1);
|
||||||
|
QPixmap pixmap=snapGV->renderPixmap(172,172);
|
||||||
QByteArray byteArray;
|
QByteArray byteArray;
|
||||||
QBuffer buffer(&byteArray); // use buffer to store pixmap into byteArray
|
QBuffer buffer(&byteArray); // use buffer to store pixmap into byteArray
|
||||||
buffer.open(QIODevice::WriteOnly);
|
buffer.open(QIODevice::WriteOnly);
|
||||||
|
@ -207,6 +207,11 @@ void MainWindow::Startup()
|
|||||||
// profile is a global variable set in main after login
|
// profile is a global variable set in main after login
|
||||||
PROFILE.LoadMachineData();
|
PROFILE.LoadMachineData();
|
||||||
|
|
||||||
|
SnapshotGraph=new gGraphView(this); //daily->graphView());
|
||||||
|
SnapshotGraph->setMaximumSize(1024,512);
|
||||||
|
SnapshotGraph->setMinimumSize(1024,512);
|
||||||
|
SnapshotGraph->hide();
|
||||||
|
|
||||||
daily=new Daily(ui->tabWidget,NULL,this);
|
daily=new Daily(ui->tabWidget,NULL,this);
|
||||||
ui->tabWidget->insertTab(1,daily,tr("Daily"));
|
ui->tabWidget->insertTab(1,daily,tr("Daily"));
|
||||||
|
|
||||||
@ -217,12 +222,6 @@ void MainWindow::Startup()
|
|||||||
ui->tabWidget->insertTab(3,oximetry,tr("Oximetry"));
|
ui->tabWidget->insertTab(3,oximetry,tr("Oximetry"));
|
||||||
}
|
}
|
||||||
|
|
||||||
SnapshotGraph=new gGraphView(this,daily->graphView());
|
|
||||||
SnapshotGraph->setMaximumSize(1024,512);
|
|
||||||
SnapshotGraph->setMinimumSize(1024,512);
|
|
||||||
//ReportGraph->setMaximumSize(graph_print_width,graph_print_height);
|
|
||||||
//ReportGraph->setMinimumSize(graph_print_width,graph_print_height);
|
|
||||||
SnapshotGraph->hide();
|
|
||||||
|
|
||||||
if (daily) daily->ReloadGraphs();
|
if (daily) daily->ReloadGraphs();
|
||||||
if (overview) overview->ReloadGraphs();
|
if (overview) overview->ReloadGraphs();
|
||||||
@ -725,23 +724,21 @@ void MainWindow::PrintReport(gGraphView *gv,QString name, QDate date)
|
|||||||
if (pw>8000) {
|
if (pw>8000) {
|
||||||
div=4;
|
div=4;
|
||||||
#ifdef Q_WS_WIN32
|
#ifdef Q_WS_WIN32
|
||||||
fontdiv=2;
|
fontdiv=2.3;
|
||||||
#else
|
#else
|
||||||
fontdiv=2.3;
|
fontdiv=2.3;
|
||||||
#endif
|
#endif
|
||||||
} else if (pw>2000) {
|
} else if (pw>2000) {
|
||||||
div=2;
|
div=2.0;
|
||||||
fontdiv=1;
|
fontdiv=2.0;
|
||||||
} else {
|
} else {
|
||||||
div=1;
|
div=1;
|
||||||
#ifdef Q_WS_WIN32 // windows really doesn like the resulting font size
|
#ifdef Q_WS_WIN32
|
||||||
fontdiv=1;
|
fontdiv=1; // windows will crash if it's any smaller than this
|
||||||
#else
|
#else
|
||||||
fontdiv=0.75;
|
fontdiv=0.75;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
//float div=highres ? 4.0 : 1.0;
|
|
||||||
|
|
||||||
|
|
||||||
float gw=pw/div;
|
float gw=pw/div;
|
||||||
float gh=ph/div;
|
float gh=ph/div;
|
||||||
|
Loading…
Reference in New Issue
Block a user