2018-05-07 22:09:59 +00:00
|
|
|
|
/* Daily GUI Headers
|
2014-04-09 21:01:57 +00:00
|
|
|
|
*
|
2018-03-28 07:10:52 +00:00
|
|
|
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
2014-04-09 21:01:57 +00:00
|
|
|
|
*
|
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
|
* License. See the file COPYING in the main directory of the Linux
|
|
|
|
|
* distribution for more details. */
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
|
|
#ifndef DAILY_H
|
|
|
|
|
#define DAILY_H
|
|
|
|
|
|
|
|
|
|
|
2011-07-30 04:54:22 +00:00
|
|
|
|
#include <QMenu>
|
|
|
|
|
#include <QAction>
|
2011-06-26 08:30:44 +00:00
|
|
|
|
#include <QWidget>
|
|
|
|
|
#include <QTreeWidget>
|
2011-08-30 17:22:54 +00:00
|
|
|
|
#include <QHBoxLayout>
|
2011-12-01 06:06:13 +00:00
|
|
|
|
#include <QPushButton>
|
2011-06-26 08:30:44 +00:00
|
|
|
|
#include <QLabel>
|
|
|
|
|
#include <QtOpenGL/QGLContext>
|
2011-08-25 06:11:44 +00:00
|
|
|
|
#include <QScrollBar>
|
2011-12-02 11:40:47 +00:00
|
|
|
|
#include <QTableWidgetItem>
|
2018-05-07 22:09:59 +00:00
|
|
|
|
#include <QTextBrowser>
|
2011-08-25 06:11:44 +00:00
|
|
|
|
|
2018-05-07 22:09:59 +00:00
|
|
|
|
#include "SleepLib/profiles.h"
|
2011-07-30 04:54:22 +00:00
|
|
|
|
#include "mainwindow.h"
|
2018-05-07 22:09:59 +00:00
|
|
|
|
#include "Graphs/gSummaryChart.h"
|
2011-08-25 06:11:44 +00:00
|
|
|
|
#include "Graphs/gGraphView.h"
|
2011-07-27 09:21:53 +00:00
|
|
|
|
#include "Graphs/gLineChart.h"
|
2013-10-10 17:36:53 +00:00
|
|
|
|
#include "sessionbar.h"
|
2018-05-29 03:48:59 +00:00
|
|
|
|
#include "mytextbrowser.h"
|
2011-09-02 05:13:07 +00:00
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
|
namespace Ui {
|
|
|
|
|
class Daily;
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-30 04:54:22 +00:00
|
|
|
|
class MainWindow;
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
2018-05-08 08:12:32 +00:00
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
|
/*! \class Daily
|
|
|
|
|
\brief SleepyHead's Daily view which displays the calendar and all the graphs relative to a selected Day
|
|
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
|
class Daily : public QWidget
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2011-12-18 10:53:51 +00:00
|
|
|
|
/*! \fn Daily()
|
|
|
|
|
\brief Constructs a Daily object
|
|
|
|
|
\param parent * (QObject parent)
|
|
|
|
|
\param shared *
|
|
|
|
|
|
|
|
|
|
Creates all the graph objects and adds them to the main gGraphView area for this tab.
|
|
|
|
|
|
2011-12-18 12:31:11 +00:00
|
|
|
|
shared is not used for daily object, as it contains the default Context..
|
2011-12-18 10:53:51 +00:00
|
|
|
|
*/
|
|
|
|
|
explicit Daily(QWidget *parent, gGraphView *shared);
|
2011-06-26 08:30:44 +00:00
|
|
|
|
~Daily();
|
2014-05-11 19:04:34 +00:00
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
|
/*! \fn ReloadGraphs()
|
|
|
|
|
\brief Reload all graph information from disk and updates the view.
|
|
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
|
void ReloadGraphs();
|
2011-12-18 10:53:51 +00:00
|
|
|
|
/*! \fn ResetGraphLayout()
|
|
|
|
|
\brief Resets all graphs in the main gGraphView back to constant heights.
|
|
|
|
|
*/
|
2011-07-28 14:20:59 +00:00
|
|
|
|
void ResetGraphLayout();
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
|
|
/*! \fn graphView()
|
|
|
|
|
\returns the main graphView area for the Daily View
|
|
|
|
|
*/
|
2011-11-27 14:35:25 +00:00
|
|
|
|
gGraphView *graphView() { return GraphView; }
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
|
|
/*! \fn RedrawGraphs()
|
|
|
|
|
\brief Calls updateGL on the main graphView area, redrawing the OpenGL area
|
|
|
|
|
*/
|
2011-08-07 12:33:00 +00:00
|
|
|
|
void RedrawGraphs();
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
|
|
/*! \fn LoadDate()
|
|
|
|
|
\brief Selects a new day object, unloading the previous one, and loads the graph data for the supplied date.
|
|
|
|
|
\param QDate date
|
|
|
|
|
*/
|
2011-10-28 03:45:31 +00:00
|
|
|
|
void LoadDate(QDate date);
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
|
|
/*! \fn getDate()
|
|
|
|
|
\brief Returns the most recently loaded Date
|
|
|
|
|
\return QDate
|
|
|
|
|
*/
|
2011-11-15 07:53:22 +00:00
|
|
|
|
QDate getDate() { return previous_date; }
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
|
|
/*! \fn UnitsChanged()
|
|
|
|
|
\brief Called by Profile editor when measurement units are changed
|
|
|
|
|
*/
|
2011-12-02 13:48:05 +00:00
|
|
|
|
void UnitsChanged();
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
|
|
/*! \fn GetJournalSession(QDate date)
|
|
|
|
|
\brief Looks up if there is a journal object for a supplied date
|
|
|
|
|
\param QDate date
|
2014-04-23 13:19:56 +00:00
|
|
|
|
\returns Session * containing valid Journal Session object or nullptr if none found.
|
2011-12-18 10:53:51 +00:00
|
|
|
|
*/
|
2011-12-11 13:57:07 +00:00
|
|
|
|
Session * GetJournalSession(QDate date);
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
2011-12-12 03:39:00 +00:00
|
|
|
|
QString GetDetailsText();
|
2011-12-18 10:53:51 +00:00
|
|
|
|
/*! \fn eventBreakdownPie()
|
|
|
|
|
\brief Returns a pointer to the Event Breakdown Piechart for the Report Printing module
|
|
|
|
|
\returns gGraph * object containing this chart
|
|
|
|
|
*/
|
2014-05-13 08:14:20 +00:00
|
|
|
|
gGraph * eventBreakdownPie() { return graphlist["EventBreakdown"]; }
|
2013-10-22 11:42:57 +00:00
|
|
|
|
|
|
|
|
|
void clearLastDay();
|
2014-07-13 09:47:27 +00:00
|
|
|
|
|
|
|
|
|
/*! \fn Unload(QDate date)
|
|
|
|
|
\brief Saves any journal changes for the provided date.
|
|
|
|
|
\param QDate date
|
|
|
|
|
*/
|
2014-07-25 07:53:48 +00:00
|
|
|
|
void Unload(QDate date=QDate());
|
2014-07-13 09:47:27 +00:00
|
|
|
|
|
2014-08-04 21:28:27 +00:00
|
|
|
|
void setSidebarVisible(bool visible);
|
|
|
|
|
void setCalendarVisible(bool visible);
|
|
|
|
|
|
2014-08-07 17:20:52 +00:00
|
|
|
|
void addBookmark(qint64 st, qint64 et, QString text);
|
2014-08-09 19:45:46 +00:00
|
|
|
|
void hideSpaceHogs();
|
|
|
|
|
void showSpaceHogs();
|
2014-08-04 21:28:27 +00:00
|
|
|
|
|
2014-08-17 12:56:05 +00:00
|
|
|
|
QLabel * getDateDisplay();
|
|
|
|
|
|
2014-09-24 01:42:14 +00:00
|
|
|
|
//void populateSessionWidget();
|
|
|
|
|
|
|
|
|
|
|
2014-08-17 12:56:05 +00:00
|
|
|
|
public slots:
|
|
|
|
|
void on_LineCursorUpdate(double time);
|
|
|
|
|
void on_RangeUpdate(double minx, double maxx);
|
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
|
private slots:
|
2014-08-07 22:47:34 +00:00
|
|
|
|
void on_ReloadDay();
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
|
/*! \fn on_calendar_currentPageChanged(int year, int month);
|
|
|
|
|
\brief Scans through all days for this month, updating the day colors for the calendar object
|
|
|
|
|
\param int year
|
|
|
|
|
\param int month
|
|
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
|
void on_calendar_currentPageChanged(int year, int month);
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
|
|
/*! \fn on_calendar_selectionChanged();
|
|
|
|
|
\brief Called when the calendar object is clicked. Selects and loads a new date, unloading the previous one.
|
|
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
|
void on_calendar_selectionChanged();
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
|
|
/* Journal Notes edit buttons I don't want to document */
|
2011-06-26 08:30:44 +00:00
|
|
|
|
void on_JournalNotesItalic_clicked();
|
|
|
|
|
void on_JournalNotesBold_clicked();
|
|
|
|
|
void on_JournalNotesFontsize_activated(int index);
|
|
|
|
|
void on_JournalNotesColour_clicked();
|
2011-12-18 10:53:51 +00:00
|
|
|
|
void on_JournalNotesUnderline_clicked();
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
|
|
void on_treeWidget_itemSelectionChanged();
|
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
|
|
/*! \fn on_nextDayButton_clicked();
|
|
|
|
|
\brief Step backwards one day (if possible)
|
|
|
|
|
*/
|
2011-10-30 02:46:17 +00:00
|
|
|
|
void on_prevDayButton_clicked();
|
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
|
/*! \fn on_nextDayButton_clicked();
|
|
|
|
|
\brief Step forward one day (if possible)
|
|
|
|
|
*/
|
2011-10-30 02:46:17 +00:00
|
|
|
|
void on_nextDayButton_clicked();
|
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
|
/*! \fn on_calButton_toggled();
|
|
|
|
|
\brief Hides the calendar and put it out of the way, giving more room for the Details area.
|
|
|
|
|
*/
|
2011-10-30 02:46:17 +00:00
|
|
|
|
void on_calButton_toggled(bool checked);
|
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
|
/*! \fn on_todayButton_clicked();
|
|
|
|
|
\brief Select the most recent day.
|
|
|
|
|
*/
|
2011-10-30 03:18:20 +00:00
|
|
|
|
void on_todayButton_clicked();
|
2011-11-24 23:03:33 +00:00
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
|
/*! \fn Link_clicked(const QUrl &url);
|
|
|
|
|
\brief Called when a link is clicked on in the HTML Details tab
|
|
|
|
|
\param const QUrl & url
|
|
|
|
|
*/
|
2011-12-03 08:52:24 +00:00
|
|
|
|
void Link_clicked(const QUrl &url);
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
2011-11-27 07:41:00 +00:00
|
|
|
|
void on_evViewSlider_valueChanged(int value);
|
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
|
/*! \fn on_treeWidget_itemClicked(QTreeWidgetItem *item, int column);
|
|
|
|
|
\brief Called when an event is selected in the Event tab.. Zooms into the graph area.
|
|
|
|
|
\param QTreeWidgetItem *item
|
|
|
|
|
\param int column
|
|
|
|
|
*/
|
2011-11-27 22:36:38 +00:00
|
|
|
|
void on_treeWidget_itemClicked(QTreeWidgetItem *item, int column);
|
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
|
/*! \fn graphtogglebutton_toggled(bool)
|
|
|
|
|
\brief Called to hide/show a graph when on of the toggle bottoms underneath the graph area is clicked
|
|
|
|
|
\param bool button status
|
|
|
|
|
*/
|
2011-12-03 08:52:24 +00:00
|
|
|
|
void graphtogglebutton_toggled(bool);
|
2011-12-02 11:40:47 +00:00
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
|
/*! \fn on_addBookmarkButton_clicked()
|
|
|
|
|
\brief Current selected graph Area is added to Bookmark's list for this day's journal object.
|
|
|
|
|
*/
|
2011-12-02 11:40:47 +00:00
|
|
|
|
void on_addBookmarkButton_clicked();
|
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
|
/*! \fn on_removeBookmarkButton_clicked()
|
|
|
|
|
\brief Currently selected bookmark is removed from this day's Bookmark list.
|
|
|
|
|
*/
|
2011-12-02 11:40:47 +00:00
|
|
|
|
void on_removeBookmarkButton_clicked();
|
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
|
/*! \fn on_bookmarkTable_itemClicked(QTableWidgetItem *item);
|
|
|
|
|
\brief Called when a bookmark has been selected.. Zooms in on the area
|
|
|
|
|
\param QTableWidgetItem *item
|
|
|
|
|
*/
|
2011-12-02 11:40:47 +00:00
|
|
|
|
void on_bookmarkTable_itemClicked(QTableWidgetItem *item);
|
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
|
/*! \fn on_bookmarkTable_itemChanged(QTableWidgetItem *item);
|
|
|
|
|
\brief Called when bookmarks have been altered.. Saves the bookmark list to Journal object.
|
|
|
|
|
*/
|
2011-12-02 14:18:47 +00:00
|
|
|
|
void on_bookmarkTable_itemChanged(QTableWidgetItem *item);
|
|
|
|
|
|
2011-12-03 01:05:17 +00:00
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
|
/*! \fn on_ouncesSpinBox_valueChanged(int arg1);
|
|
|
|
|
\brief Called when the zombie slider has been moved.. Updates the BMI dislpay and journal objects.
|
|
|
|
|
|
|
|
|
|
Also Refreshes the Overview charts
|
|
|
|
|
*/
|
2011-12-10 15:24:45 +00:00
|
|
|
|
void on_ZombieMeter_valueChanged(int value);
|
|
|
|
|
|
2012-01-03 16:29:35 +00:00
|
|
|
|
void on_graphCombo_activated(int index);
|
|
|
|
|
|
|
|
|
|
void on_toggleGraphs_clicked(bool checked);
|
|
|
|
|
|
2012-01-05 15:17:50 +00:00
|
|
|
|
/*! \fn on_weightSpinBox_editingFinished();
|
|
|
|
|
\brief Called when weight has changed.. Updates the BMI dislpay and journal objects.
|
|
|
|
|
|
|
|
|
|
Also Refreshes the Overview charts
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
void on_weightSpinBox_editingFinished();
|
|
|
|
|
|
|
|
|
|
/*! \fn on_ouncesSpinBox_editingFinished();
|
|
|
|
|
\brief Called when weights ounces component has changed.. Updates the BMI dislpay and journal objects.
|
|
|
|
|
|
|
|
|
|
Also Refreshes the Overview charts
|
|
|
|
|
*/
|
|
|
|
|
void on_ouncesSpinBox_editingFinished();
|
|
|
|
|
|
|
|
|
|
void on_ouncesSpinBox_valueChanged(int arg1);
|
|
|
|
|
|
|
|
|
|
void on_weightSpinBox_valueChanged(double arg1);
|
|
|
|
|
|
2013-10-10 17:36:53 +00:00
|
|
|
|
void doToggleSession(Session *);
|
2014-04-05 01:28:07 +00:00
|
|
|
|
|
2014-08-05 11:17:03 +00:00
|
|
|
|
void on_eventsCombo_activated(int index);
|
|
|
|
|
|
|
|
|
|
void on_toggleEvents_clicked(bool checked);
|
|
|
|
|
|
2014-08-29 11:34:21 +00:00
|
|
|
|
void updateGraphCombo();
|
2014-08-17 12:56:05 +00:00
|
|
|
|
|
|
|
|
|
|
2014-09-24 01:42:14 +00:00
|
|
|
|
//void on_sessionWidget_itemSelectionChanged();
|
|
|
|
|
|
2014-10-02 11:22:30 +00:00
|
|
|
|
void on_splitter_2_splitterMoved(int pos, int index);
|
|
|
|
|
|
2011-07-28 11:09:53 +00:00
|
|
|
|
protected:
|
2014-06-22 03:54:56 +00:00
|
|
|
|
virtual void closeEvent(QCloseEvent *);
|
|
|
|
|
virtual void showEvent(QShowEvent *);
|
2011-06-28 01:51:21 +00:00
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
|
private:
|
2011-12-18 10:53:51 +00:00
|
|
|
|
/*! \fn CreateJournalSession()
|
|
|
|
|
\brief Create a new journal session for this date, if one doesn't exist.
|
|
|
|
|
\param QDate date
|
|
|
|
|
|
|
|
|
|
Creates a new journal Machine record if necessary.
|
|
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
|
Session * CreateJournalSession(QDate date);
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
|
|
/*! \fn update_Bookmarks()
|
|
|
|
|
\brief Saves the current bookmark list to the Journal object
|
|
|
|
|
*/
|
2011-12-11 13:57:07 +00:00
|
|
|
|
void update_Bookmarks();
|
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
|
/*! \fn Load(QDate date)
|
|
|
|
|
\brief Selects a new day object, loads it's content and generates the HTML for the Details tab
|
|
|
|
|
\param QDate date
|
|
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
|
void Load(QDate date);
|
2011-12-18 10:53:51 +00:00
|
|
|
|
/*! \fn UpdateCalendarDay(QDate date)
|
|
|
|
|
\brief Updates the calendar visual information, changing a dates color depending on what data is available.
|
|
|
|
|
\param QDate date
|
|
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
|
void UpdateCalendarDay(QDate date);
|
2011-12-18 10:53:51 +00:00
|
|
|
|
/*! \fn UpdateEventsTree(QDate date)
|
2011-12-25 05:05:12 +00:00
|
|
|
|
\brief Populates the Events tree from the supplied Day object.
|
2011-12-18 10:53:51 +00:00
|
|
|
|
\param QTreeWidget * tree
|
|
|
|
|
\param Day *
|
|
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
|
void UpdateEventsTree(QTreeWidget * tree,Day *day);
|
|
|
|
|
|
2012-01-03 16:29:35 +00:00
|
|
|
|
void updateCube();
|
|
|
|
|
|
2014-08-17 12:56:05 +00:00
|
|
|
|
|
2014-08-20 17:17:13 +00:00
|
|
|
|
QString getSessionInformation(Day *);
|
|
|
|
|
QString getMachineSettings(Day *);
|
|
|
|
|
QString getStatisticsInfo(Day *);
|
|
|
|
|
QString getCPAPInformation(Day *);
|
|
|
|
|
QString getOximeterInformation(Day *);
|
|
|
|
|
QString getEventBreakdown(Day *);
|
|
|
|
|
QString getSleepTime(Day *);
|
2013-10-13 16:35:53 +00:00
|
|
|
|
|
2014-05-13 08:14:20 +00:00
|
|
|
|
QHash<QString, gGraph *> graphlist;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
2014-08-28 08:01:25 +00:00
|
|
|
|
// QList<Layer *> OXIData;
|
|
|
|
|
// QList<Layer *> CPAPData;
|
|
|
|
|
// QList<Layer *> STAGEData;
|
|
|
|
|
// QList<Layer *> POSData;
|
2011-12-01 06:06:13 +00:00
|
|
|
|
QHash<QString,QPushButton *> GraphToggles;
|
2011-07-31 20:24:43 +00:00
|
|
|
|
QVector<QAction *> GraphAction;
|
2011-07-22 13:46:17 +00:00
|
|
|
|
QGLContext *offscreen_context;
|
2011-07-11 04:54:53 +00:00
|
|
|
|
|
2011-07-28 14:20:59 +00:00
|
|
|
|
QList<int> splitter_sizes;
|
2014-08-28 08:01:25 +00:00
|
|
|
|
// Layer * AddCPAP(Layer *d) { CPAPData.push_back(d); return d; }
|
|
|
|
|
// Layer * AddSTAGE(Layer *d) { STAGEData.push_back(d); return d; }
|
|
|
|
|
// Layer * AddPOS(Layer *d) { POSData.push_back(d); return d; }
|
|
|
|
|
// Layer * AddOXI(Layer *d) { OXIData.push_back(d); return d; }
|
|
|
|
|
|
|
|
|
|
// void UpdateCPAPGraphs(Day *day);
|
|
|
|
|
// void UpdateOXIGraphs(Day *day);
|
|
|
|
|
// void UpdateSTAGEGraphs(Day *day);
|
|
|
|
|
// void UpdatePOSGraphs(Day *day);
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
|
|
Ui::Daily *ui;
|
|
|
|
|
QDate previous_date;
|
2011-07-30 04:54:22 +00:00
|
|
|
|
QMenu *show_graph_menu;
|
2011-08-29 11:42:40 +00:00
|
|
|
|
|
2011-09-21 14:10:10 +00:00
|
|
|
|
gGraphView *GraphView,*snapGV;
|
2011-08-25 06:11:44 +00:00
|
|
|
|
MyScrollBar *scrollbar;
|
|
|
|
|
QHBoxLayout *layout;
|
2011-12-22 10:29:12 +00:00
|
|
|
|
QLabel *emptyToggleArea;
|
2012-01-03 16:29:35 +00:00
|
|
|
|
QIcon * icon_on;
|
|
|
|
|
QIcon * icon_off;
|
|
|
|
|
|
2018-05-07 22:09:59 +00:00
|
|
|
|
SessionBar * sessionbar;
|
2014-08-17 12:56:05 +00:00
|
|
|
|
MyLabel * dateDisplay;
|
2013-10-10 17:36:53 +00:00
|
|
|
|
|
2018-05-08 08:12:32 +00:00
|
|
|
|
MyTextBrowser * webView;
|
2013-10-22 11:42:57 +00:00
|
|
|
|
Day * lastcpapday;
|
|
|
|
|
|
2014-05-15 19:45:46 +00:00
|
|
|
|
gLineChart *leakchart;
|
|
|
|
|
|
2011-12-02 11:40:47 +00:00
|
|
|
|
bool ZombieMeterMoved;
|
2011-12-02 14:18:47 +00:00
|
|
|
|
bool BookmarksChanged;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
};
|
|
|
|
|
|
2018-05-08 08:12:32 +00:00
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
|
#endif // DAILY_H
|