mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Mac build fix, new secret Preference option
This commit is contained in:
parent
cbcbd352b1
commit
735d6e894e
@ -2217,9 +2217,9 @@ void gGraphView::renderSomethingFun()
|
|||||||
|
|
||||||
void gGraphView::paintGL()
|
void gGraphView::paintGL()
|
||||||
{
|
{
|
||||||
bool something_fun=PREF.ExistsAndTrue("SomeFun");
|
bool something_fun=PROFILE.ExistsAndTrue("EmptyGraphFun");
|
||||||
|
|
||||||
if (something_fun && redrawtimer->isActive()) {
|
if (something_fun && redrawtimer->isActive()) {
|
||||||
|
|
||||||
redrawtimer->stop();
|
redrawtimer->stop();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2232,8 +2232,6 @@ void gGraphView::paintGL()
|
|||||||
//glClearDepth(1);
|
//glClearDepth(1);
|
||||||
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
|
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
|
||||||
|
|
||||||
if (something_fun)
|
|
||||||
renderSomethingFun();
|
|
||||||
|
|
||||||
/*glEnable(GL_BLEND);
|
/*glEnable(GL_BLEND);
|
||||||
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
||||||
@ -2324,10 +2322,8 @@ void gGraphView::paintGL()
|
|||||||
QColor col=Qt::black;
|
QColor col=Qt::black;
|
||||||
if (!numgraphs) {
|
if (!numgraphs) {
|
||||||
int x,y;
|
int x,y;
|
||||||
if (m_emptytext!="fun") {
|
GetTextExtent(m_emptytext,x,y,bigfont);
|
||||||
GetTextExtent(m_emptytext,x,y,bigfont);
|
AddTextQue(m_emptytext,(width()/2)-x/2,(height()/2)+y/2,0.0,col,bigfont);
|
||||||
AddTextQue(m_emptytext,(width()/2)-x/2,(height()/2)+y/2,0.0,col,bigfont);
|
|
||||||
} else renderSomethingFun();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -2361,14 +2357,17 @@ void gGraphView::paintGL()
|
|||||||
}
|
}
|
||||||
//glDisable(GL_TEXTURE_2D);
|
//glDisable(GL_TEXTURE_2D);
|
||||||
//glDisable(GL_DEPTH_TEST);
|
//glDisable(GL_DEPTH_TEST);
|
||||||
swapBuffers(); // Dump to screen.
|
if (something_fun && !numgraphs && this->isVisible()) {
|
||||||
|
renderSomethingFun();
|
||||||
|
|
||||||
if (something_fun && this->isVisible()) {
|
|
||||||
redrawtimer->setInterval(25);
|
redrawtimer->setInterval(25);
|
||||||
redrawtimer->setSingleShot(true);
|
redrawtimer->setSingleShot(true);
|
||||||
redrawtimer->start();
|
redrawtimer->start();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
swapBuffers(); // Dump to screen.
|
||||||
|
|
||||||
|
|
||||||
//qDebug() << "Graph Prep,Draw" << el << "," << time.elapsed()-el << "ms x" << thr;
|
//qDebug() << "Graph Prep,Draw" << el << "," << time.elapsed()-el << "ms x" << thr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -86,13 +86,13 @@ unix:!macx:LIBS += -lX11 -lz -lGLU
|
|||||||
|
|
||||||
macx {
|
macx {
|
||||||
SOURCES += qextserialport/qextserialenumerator_osx.cpp
|
SOURCES += qextserialport/qextserialenumerator_osx.cpp
|
||||||
LIBS += -framework IOKit -framework CoreFoundation -lz -lGLU
|
LIBS += -framework IOKit -framework CoreFoundation -lz
|
||||||
}
|
}
|
||||||
|
|
||||||
win32 {
|
win32 {
|
||||||
SOURCES += qextserialport/win_qextserialport.cpp qextserialport/qextserialenumerator_win.cpp
|
SOURCES += qextserialport/win_qextserialport.cpp qextserialport/qextserialenumerator_win.cpp
|
||||||
DEFINES += WINVER=0x0501 # needed for mingw to pull in appropriate dbt business...probably a better way to do this
|
DEFINES += WINVER=0x0501 # needed for mingw to pull in appropriate dbt business...probably a better way to do this
|
||||||
LIBS += -lsetupapi -lGLU
|
LIBS += -lsetupapi
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -60,7 +60,6 @@ void MainWindow::Log(QString s)
|
|||||||
strlock.unlock();
|
strlock.unlock();
|
||||||
|
|
||||||
//loglock.unlock();
|
//loglock.unlock();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -165,7 +164,6 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||||||
systray=NULL;
|
systray=NULL;
|
||||||
systraymenu=NULL;
|
systraymenu=NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
extern MainWindow *mainwin;
|
extern MainWindow *mainwin;
|
||||||
MainWindow::~MainWindow()
|
MainWindow::~MainWindow()
|
||||||
|
@ -171,6 +171,7 @@ PreferencesDialog::PreferencesDialog(QWidget *parent,Profile * _profile) :
|
|||||||
general["GraphHeight"]=Preference(p_profile,"GraphHeight",PT_Checkbox,tr("Graph Height"),tr("Default Graph Height"),160);
|
general["GraphHeight"]=Preference(p_profile,"GraphHeight",PT_Checkbox,tr("Graph Height"),tr("Default Graph Height"),160);
|
||||||
general["MaskDescription"]=Preference(p_profile,"MaskDescription",PT_Checkbox,tr("Mask Description"),tr("Whatever you want to record about your mask."),QString());
|
general["MaskDescription"]=Preference(p_profile,"MaskDescription",PT_Checkbox,tr("Mask Description"),tr("Whatever you want to record about your mask."),QString());
|
||||||
general["HighResPrinting"]=Preference(p_profile,"HighResPrinting",PT_Checkbox,tr("High Resolution Printing"),tr("Use much slower but better quality high resolution printing."),QString());
|
general["HighResPrinting"]=Preference(p_profile,"HighResPrinting",PT_Checkbox,tr("High Resolution Printing"),tr("Use much slower but better quality high resolution printing."),QString());
|
||||||
|
general["EmptyGraphFun"]=Preference(p_profile,"EmptyGraphFun",PT_Checkbox,tr("Less Boring Empty Graph Pages"),tr("Make empty graph pages more attractive."),QString());
|
||||||
|
|
||||||
if (!(p_profile)->Exists("MaskStartDate")) {
|
if (!(p_profile)->Exists("MaskStartDate")) {
|
||||||
(PROFILE["MaskStartDate"]=PROFILE.FirstDay());
|
(PROFILE["MaskStartDate"]=PROFILE.FirstDay());
|
||||||
@ -198,6 +199,7 @@ PreferencesDialog::PreferencesDialog(QWidget *parent,Profile * _profile) :
|
|||||||
ui->skipEmptyDays->setChecked(general["SkipEmptyDays"].value().toBool());
|
ui->skipEmptyDays->setChecked(general["SkipEmptyDays"].value().toBool());
|
||||||
ui->enableMultithreading->setChecked(general["EnableMultithreading"].value().toBool());
|
ui->enableMultithreading->setChecked(general["EnableMultithreading"].value().toBool());
|
||||||
ui->cacheSessionData->setChecked(general["MemoryHog"].value().toBool());
|
ui->cacheSessionData->setChecked(general["MemoryHog"].value().toBool());
|
||||||
|
ui->lessBoringEmptyGraphPages->setChecked(general["EmptyGraphFun"].value().toBool());
|
||||||
#ifdef Q_WS_MAC
|
#ifdef Q_WS_MAC
|
||||||
general["HighResPrinting"].setValue(true);
|
general["HighResPrinting"].setValue(true);
|
||||||
ui->highResolutionPrinting->setChecked(true);
|
ui->highResolutionPrinting->setChecked(true);
|
||||||
@ -325,6 +327,7 @@ void PreferencesDialog::Save()
|
|||||||
general["MemoryHog"].setValue(ui->cacheSessionData->isChecked());
|
general["MemoryHog"].setValue(ui->cacheSessionData->isChecked());
|
||||||
general["MaskDescription"].setValue(ui->maskDescription->text());
|
general["MaskDescription"].setValue(ui->maskDescription->text());
|
||||||
general["HighResPrinting"].setValue(ui->highResolutionPrinting->isChecked());
|
general["HighResPrinting"].setValue(ui->highResolutionPrinting->isChecked());
|
||||||
|
general["EmptyGraphFun"].setValue(ui->lessBoringEmptyGraphPages->isChecked());
|
||||||
|
|
||||||
(*profile)["MaskStartDate"]=ui->startedUsingMask->date();
|
(*profile)["MaskStartDate"]=ui->startedUsingMask->date();
|
||||||
(*profile)["GraphHeight"]=ui->graphHeight->value();
|
(*profile)["GraphHeight"]=ui->graphHeight->value();
|
||||||
|
@ -38,7 +38,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QTabWidget" name="tabWidget">
|
<widget class="QTabWidget" name="tabWidget">
|
||||||
<property name="currentIndex">
|
<property name="currentIndex">
|
||||||
<number>0</number>
|
<number>7</number>
|
||||||
</property>
|
</property>
|
||||||
<widget class="QWidget" name="importTab">
|
<widget class="QWidget" name="importTab">
|
||||||
<attribute name="title">
|
<attribute name="title">
|
||||||
@ -1559,6 +1559,13 @@ this application to be unstable with this feature enabled.</string>
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QCheckBox" name="lessBoringEmptyGraphPages">
|
||||||
|
<property name="text">
|
||||||
|
<string>Less Boring Empty Graph Pages</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
|
Loading…
Reference in New Issue
Block a user