mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Merge branch 'master' into dateformat
This commit is contained in:
commit
d375ab38f8
@ -3262,7 +3262,6 @@ void gGraphView::keyPressEvent(QKeyEvent *event)
|
|||||||
//qDebug() << "Keypress??";
|
//qDebug() << "Keypress??";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void gGraphView::setDay(Day *day)
|
void gGraphView::setDay(Day *day)
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -3274,6 +3273,7 @@ void gGraphView::setDay(Day *day)
|
|||||||
|
|
||||||
ResetBounds(false);
|
ResetBounds(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool gGraphView::isEmpty()
|
bool gGraphView::isEmpty()
|
||||||
{
|
{
|
||||||
bool res = true;
|
bool res = true;
|
||||||
|
@ -852,6 +852,28 @@ void Daily::ResetGraphLayout()
|
|||||||
void Daily::ResetGraphOrder()
|
void Daily::ResetGraphOrder()
|
||||||
{
|
{
|
||||||
GraphView->resetGraphOrder(true);
|
GraphView->resetGraphOrder(true);
|
||||||
|
|
||||||
|
// Enable all graphs (make them not hidden)
|
||||||
|
for (int i=0;i<ui->graphCombo->count();i++) {
|
||||||
|
// If disabled, emulate a click to enable the graph
|
||||||
|
if (!ui->graphCombo->itemData(i,Qt::UserRole).toBool()) {
|
||||||
|
qDebug() << "resetting graph" << i;
|
||||||
|
Daily::on_graphCombo_activated(i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Mark all events as active
|
||||||
|
for (int i=0;i<ui->eventsCombo->count();i++) {
|
||||||
|
// If disabled, emulate a click to enable the event
|
||||||
|
ChannelID code = ui->eventsCombo->itemData(i, Qt::UserRole).toUInt();
|
||||||
|
schema::Channel * chan = &schema::channel[code];
|
||||||
|
if (!chan->enabled()) {
|
||||||
|
qDebug() << "resetting event" << i;
|
||||||
|
Daily::on_eventsCombo_activated(i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Reset graph heights (and repaint)
|
||||||
ResetGraphLayout();
|
ResetGraphLayout();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2416,6 +2438,7 @@ void Daily::on_graphCombo_activated(int index)
|
|||||||
GraphView->updateScale();
|
GraphView->updateScale();
|
||||||
GraphView->redraw();
|
GraphView->redraw();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Daily::updateCube()
|
void Daily::updateCube()
|
||||||
{
|
{
|
||||||
//brick..
|
//brick..
|
||||||
@ -2495,7 +2518,6 @@ void Daily::updateGraphCombo()
|
|||||||
}
|
}
|
||||||
ui->graphCombo->setCurrentIndex(0);
|
ui->graphCombo->setCurrentIndex(0);
|
||||||
|
|
||||||
|
|
||||||
updateCube();
|
updateCube();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2504,7 +2526,6 @@ void Daily::on_eventsCombo_activated(int index)
|
|||||||
if (index<0)
|
if (index<0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
||||||
ChannelID code = ui->eventsCombo->itemData(index, Qt::UserRole).toUInt();
|
ChannelID code = ui->eventsCombo->itemData(index, Qt::UserRole).toUInt();
|
||||||
schema::Channel * chan = &schema::channel[code];
|
schema::Channel * chan = &schema::channel[code];
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ Which was written and copyright 2011-2018 © Mark Watkins
|
|||||||
<ul>
|
<ul>
|
||||||
<li>Portions of OSCAR are © 2019 by The OSCAR Team</li>
|
<li>Portions of OSCAR are © 2019 by The OSCAR Team</li>
|
||||||
<li>[new] </li>
|
<li>[new] </li>
|
||||||
<li>[fix] </li>
|
<li>[fix] View/Reset Graphs now enables all graphs and all event flags</li>
|
||||||
<li>[fix] Calendar date now formatted per national settings</li>
|
<li>[fix] Calendar date now formatted per national settings</li>
|
||||||
</ul>
|
</ul>
|
||||||
</p>
|
</p>
|
||||||
|
@ -43,14 +43,7 @@ class Update
|
|||||||
*/
|
*/
|
||||||
struct Release {
|
struct Release {
|
||||||
Release() {}
|
Release() {}
|
||||||
Release(const Release ©) {
|
Release(const Release ©) = default;
|
||||||
version = copy.version;
|
|
||||||
codename = copy.version;
|
|
||||||
notes = copy.notes;
|
|
||||||
info_url = copy.info_url;
|
|
||||||
status = copy.status;
|
|
||||||
updates = copy.updates;
|
|
||||||
}
|
|
||||||
|
|
||||||
Release(QString ver, QString code, UpdateStatus stat) { version = ver; codename = code; status = stat; }
|
Release(QString ver, QString code, UpdateStatus stat) { version = ver; codename = code; status = stat; }
|
||||||
QString version;
|
QString version;
|
||||||
@ -94,26 +87,7 @@ class UpdateParser: public QXmlDefaultHandler
|
|||||||
class PackageUpdate {
|
class PackageUpdate {
|
||||||
public:
|
public:
|
||||||
PackageUpdate() {}
|
PackageUpdate() {}
|
||||||
PackageUpdate(const PackageUpdate & copy) {
|
PackageUpdate(const PackageUpdate & copy) = default;
|
||||||
// Seriously, why do I still have to do this crud by hand
|
|
||||||
// Where is the shortcut to save time here in the latest C++ extensions?
|
|
||||||
name = copy.name;
|
|
||||||
displayName = copy.displayName;
|
|
||||||
description = copy.description;
|
|
||||||
versionString = copy.versionString;
|
|
||||||
releaseDate = copy.releaseDate;
|
|
||||||
defaultInstall = copy.defaultInstall;
|
|
||||||
installScript = copy.installScript;
|
|
||||||
dependencies = copy.dependencies;
|
|
||||||
script = copy.script;
|
|
||||||
forcedInstall = copy.forcedInstall;
|
|
||||||
downloadArchives = copy.downloadArchives;
|
|
||||||
license = copy.license;
|
|
||||||
sha1 = copy.sha1;
|
|
||||||
compressedSize = copy.compressedSize;
|
|
||||||
uncompressedSize = copy.uncompressedSize;
|
|
||||||
os = copy.os;
|
|
||||||
}
|
|
||||||
|
|
||||||
QString name;
|
QString name;
|
||||||
QString displayName;
|
QString displayName;
|
||||||
|
Loading…
Reference in New Issue
Block a user