Disabled AntiAliasing setting for MacOSX :(

This commit is contained in:
Mark Watkins 2012-01-02 19:45:08 +10:00
parent c4a238c45f
commit cd03544404
4 changed files with 18 additions and 3 deletions

View File

@ -1051,7 +1051,7 @@ void gGraph::drawGLBuf()
{
float linesize=1;
if (m_printing) linesize=5; //ceil(m_graphview->printScaleY());
if (m_printing) linesize=4; //ceil(m_graphview->printScaleY());
for (int i=0;i<m_layers.size();i++) {
m_layers[i]->drawGLBuf(linesize);
}

View File

@ -67,6 +67,9 @@ void SummaryChart::SetDay(Day * nullday)
addSlice(CPAP_EPAP,QColor("green"),ST_SETMIN,true);
addSlice(CPAP_IPAPLo,QColor("light blue"),ST_SETMIN,true);
addSlice(CPAP_IPAP,QColor("cyan"),ST_PERC,true,0.5);
addSlice(CPAP_IPAP,QColor("dark cyan"),ST_PERC,true,0.95);
//addSlice(CPAP_IPAP,QColor("light blue"),ST_PERC,true,0.95);
addSlice(CPAP_IPAPHi,QColor("blue"),ST_SETMAX,true);
} else if (mode>=MODE_BIPAP) {
addSlice(CPAP_EPAP,QColor("green"),ST_SETMIN,true);
@ -546,9 +549,9 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height)
if (lastdaygood) {
if (lastY[j]!=py2) // vertical line
lines->add(lastX[j],lastY[j],px,py2,m_colors[j]);
lines->add(px,py2,px2+1,py2,col);
lines->add(px-1,py2,px2+1,py2,col);
} else {
lines->add(x1,py2,x2+1,py2,col);
lines->add(x1-1,py2,x2+1,py2,col);
}
lastX[j]=px2;
lastY[j]=py2;

View File

@ -108,6 +108,9 @@ MainWindow::MainWindow(QWidget *parent) :
ui->logText->hide();
}
#ifdef Q_WS_MAC
PROFILE.appearance->setAntiAliasing(false);
#endif
ui->action_Link_Graph_Groups->setChecked(PROFILE.general->linkGroups());
first_load=true;

View File

@ -156,7 +156,12 @@ PreferencesDialog::PreferencesDialog(QWidget *parent,Profile * _profile) :
ui->maskDescription->setText(profile->cpap->maskDescription());
#ifdef Q_WS_MAC
ui->useAntiAliasing->setChecked(false);
ui->useAntiAliasing->setDisabled(true);
#else
ui->useAntiAliasing->setChecked(profile->appearance->antiAliasing());
#endif
ui->useSquareWavePlots->setChecked(profile->appearance->squareWavePlots());
ui->enableGraphSnapshots->setChecked(profile->appearance->graphSnapshots());
ui->skipLoginScreen->setChecked(PREF["SkipLoginScreen"].toBool());
@ -275,7 +280,11 @@ void PreferencesDialog::Save()
{
bool needs_restart=false;
#ifdef Q_WS_MAC
profile->appearance->setAntiAliasing(false);
#else
profile->appearance->setAntiAliasing(ui->useAntiAliasing->isChecked());
#endif
if (ui->useSquareWavePlots->isChecked()!=profile->appearance->squareWavePlots()) {
profile->appearance->setSquareWavePlots(ui->useSquareWavePlots->isChecked());
needs_restart=true;