2011-08-05 00:12:23 +00:00
|
|
|
/*
|
2011-06-26 08:30:44 +00:00
|
|
|
MainWindow Headers
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
2011-08-05 00:12:23 +00:00
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#ifndef MAINWINDOW_H
|
|
|
|
#define MAINWINDOW_H
|
|
|
|
|
|
|
|
#include <QMainWindow>
|
|
|
|
#include <QGLContext>
|
2011-09-06 07:33:34 +00:00
|
|
|
#include <QNetworkAccessManager>
|
|
|
|
#include <QNetworkReply>
|
2011-06-26 08:30:44 +00:00
|
|
|
#include "daily.h"
|
|
|
|
#include "overview.h"
|
2011-07-13 05:27:27 +00:00
|
|
|
#include "oximetry.h"
|
2011-09-10 14:17:45 +00:00
|
|
|
#include "report.h"
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-07-23 07:56:13 +00:00
|
|
|
const int major_version=0;
|
|
|
|
const int minor_version=8;
|
2011-10-01 15:35:19 +00:00
|
|
|
const int revision_number=6;
|
2011-07-23 07:56:13 +00:00
|
|
|
|
2011-10-05 07:41:56 +00:00
|
|
|
extern Profile * profile;
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
namespace Ui {
|
|
|
|
class MainWindow;
|
|
|
|
}
|
|
|
|
|
2011-07-19 02:52:03 +00:00
|
|
|
extern QStatusBar *qstatusbar;
|
|
|
|
|
2011-07-30 04:54:22 +00:00
|
|
|
class Daily;
|
2011-09-10 14:17:45 +00:00
|
|
|
class Report;
|
2011-09-11 06:16:45 +00:00
|
|
|
class Overview;
|
2011-06-26 08:30:44 +00:00
|
|
|
class MainWindow : public QMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit MainWindow(QWidget *parent = 0);
|
|
|
|
~MainWindow();
|
2011-07-17 15:57:45 +00:00
|
|
|
void Log(QString s);
|
2011-07-30 04:54:22 +00:00
|
|
|
QMenu * CreateMenu(QString title);
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void on_action_Import_Data_triggered();
|
|
|
|
|
|
|
|
void on_actionView_Welcome_triggered();
|
|
|
|
|
|
|
|
void on_action_Fullscreen_triggered();
|
|
|
|
|
|
|
|
void on_homeButton_clicked();
|
|
|
|
|
|
|
|
void on_backButton_clicked();
|
|
|
|
|
|
|
|
void on_forwardButton_clicked();
|
|
|
|
|
|
|
|
void on_webView_urlChanged(const QUrl &arg1);
|
|
|
|
|
|
|
|
void on_urlBar_activated(const QString &arg1);
|
|
|
|
|
|
|
|
void on_dailyButton_clicked();
|
|
|
|
|
|
|
|
void on_overviewButton_clicked();
|
|
|
|
|
|
|
|
void on_webView_loadFinished(bool arg1);
|
|
|
|
|
|
|
|
void on_webView_loadStarted();
|
|
|
|
|
|
|
|
void on_webView_loadProgress(int progress);
|
|
|
|
|
2011-06-26 16:35:54 +00:00
|
|
|
void on_action_About_triggered();
|
|
|
|
|
2011-06-27 06:26:29 +00:00
|
|
|
void Startup();
|
|
|
|
|
2011-07-17 15:57:45 +00:00
|
|
|
void on_actionDebug_toggled(bool arg1);
|
|
|
|
|
2011-07-28 14:20:59 +00:00
|
|
|
void on_action_Reset_Graph_Layout_triggered();
|
|
|
|
|
2011-08-02 22:37:15 +00:00
|
|
|
void on_action_Preferences_triggered();
|
|
|
|
|
2011-08-05 08:20:28 +00:00
|
|
|
void on_oximetryButton_clicked();
|
|
|
|
|
2011-09-06 07:33:34 +00:00
|
|
|
void on_actionCheck_for_Updates_triggered();
|
|
|
|
|
|
|
|
void replyFinished(QNetworkReply*);
|
2011-09-07 08:08:27 +00:00
|
|
|
void on_action_Screenshot_triggered();
|
|
|
|
void DelayedScreenshot();
|
|
|
|
|
2011-09-07 09:15:33 +00:00
|
|
|
void on_actionView_O_ximetry_triggered();
|
2011-09-11 06:16:45 +00:00
|
|
|
void updatestatusBarMessage (const QString & text);
|
|
|
|
void on_actionPrint_Report_triggered();
|
2011-09-07 09:15:33 +00:00
|
|
|
|
2011-10-01 12:59:05 +00:00
|
|
|
void on_action_Edit_Profile_triggered();
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
private:
|
|
|
|
Ui::MainWindow *ui;
|
|
|
|
Daily * daily;
|
2011-09-07 08:35:55 +00:00
|
|
|
Overview * overview;
|
2011-07-29 14:58:44 +00:00
|
|
|
Oximetry * oximetry;
|
2011-06-27 06:26:29 +00:00
|
|
|
bool first_load;
|
2011-10-05 07:41:56 +00:00
|
|
|
//Profile *profile;
|
2011-09-06 07:33:34 +00:00
|
|
|
QNetworkAccessManager *netmanager;
|
2011-09-18 14:43:15 +00:00
|
|
|
|
|
|
|
QMutex loglock,strlock;
|
|
|
|
QStringList logbuffer;
|
|
|
|
QTime logtime;
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MAINWINDOW_H
|