mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Implement support for SessionBar in QWebView areas
This commit is contained in:
parent
934bd0249f
commit
16d924bf6c
@ -17,6 +17,7 @@
|
|||||||
#include <QSpacerItem>
|
#include <QSpacerItem>
|
||||||
#include <QWebFrame>
|
#include <QWebFrame>
|
||||||
#include <QLabel>
|
#include <QLabel>
|
||||||
|
#include <QtUiTools/QUiLoader>
|
||||||
|
|
||||||
#include <cmath>
|
#include <cmath>
|
||||||
//#include <QPrinter>
|
//#include <QPrinter>
|
||||||
@ -65,22 +66,25 @@ Daily::Daily(QWidget *parent,gGraphView * shared)
|
|||||||
layout->setMargin(0);
|
layout->setMargin(0);
|
||||||
layout->setContentsMargins(0,0,0,0);
|
layout->setContentsMargins(0,0,0,0);
|
||||||
|
|
||||||
sessbar=new SessionBar(this);
|
// const bool sessbar_under_graphs=false;
|
||||||
|
// if (sessbar_under_graphs) {
|
||||||
|
// ui->sessionBarLayout->addWidget(sessbar,1);
|
||||||
|
// } else {
|
||||||
|
// QLabel *label=new QLabel("The session bar could go here instead??",this);
|
||||||
|
// label->setAlignment(Qt::AlignCenter);
|
||||||
|
// ui->sessionBarLayout->addWidget(label,1);
|
||||||
|
// ui->splitter->insertWidget(2,sessbar);
|
||||||
|
// sessbar->setMaximumHeight(sessbar->height());
|
||||||
|
// sessbar->setMinimumHeight(sessbar->height());
|
||||||
|
// }
|
||||||
|
|
||||||
const bool sessbar_under_graphs=false;
|
|
||||||
if (sessbar_under_graphs) {
|
|
||||||
ui->sessionBarLayout->addWidget(sessbar,1);
|
|
||||||
} else {
|
|
||||||
QLabel *label=new QLabel("The session bar could go here instead??",this);
|
|
||||||
label->setAlignment(Qt::AlignCenter);
|
|
||||||
ui->sessionBarLayout->addWidget(label,1);
|
|
||||||
ui->splitter->insertWidget(2,sessbar);
|
|
||||||
sessbar->setMaximumHeight(sessbar->height());
|
|
||||||
sessbar->setMinimumHeight(sessbar->height());
|
|
||||||
}
|
|
||||||
sessbar->setMouseTracking(true);
|
|
||||||
|
|
||||||
connect(sessbar, SIGNAL(toggledSession(Session*)), this, SLOT(doToggleSession(Session*)));
|
webView=new MyWebView(this);
|
||||||
|
|
||||||
|
QWebSettings::globalSettings()->setAttribute(QWebSettings::PluginsEnabled, true);
|
||||||
|
|
||||||
|
ui->tabWidget->insertTab(0,webView,QIcon(),"Details");
|
||||||
|
|
||||||
ui->graphMainArea->setLayout(layout);
|
ui->graphMainArea->setLayout(layout);
|
||||||
//ui->graphMainArea->setLayout(layout);
|
//ui->graphMainArea->setLayout(layout);
|
||||||
|
|
||||||
@ -325,11 +329,11 @@ Daily::Daily(QWidget *parent,gGraphView * shared)
|
|||||||
|
|
||||||
ui->calendar->setFirstDayOfWeek(dow);
|
ui->calendar->setFirstDayOfWeek(dow);
|
||||||
|
|
||||||
ui->tabWidget->setCurrentWidget(ui->details);
|
ui->tabWidget->setCurrentWidget(webView);
|
||||||
|
|
||||||
ui->webView->settings()->setFontSize(QWebSettings::DefaultFontSize,QApplication::font().pointSize());
|
webView->settings()->setFontSize(QWebSettings::DefaultFontSize,QApplication::font().pointSize());
|
||||||
ui->webView->page()->setLinkDelegationPolicy(QWebPage::DelegateAllLinks);
|
webView->page()->setLinkDelegationPolicy(QWebPage::DelegateAllLinks);
|
||||||
connect(ui->webView,SIGNAL(linkClicked(QUrl)),this,SLOT(Link_clicked(QUrl)));
|
connect(webView,SIGNAL(linkClicked(QUrl)),this,SLOT(Link_clicked(QUrl)));
|
||||||
|
|
||||||
int ews=PROFILE.general->eventWindowSize();
|
int ews=PROFILE.general->eventWindowSize();
|
||||||
ui->evViewSlider->setValue(ews);
|
ui->evViewSlider->setValue(ews);
|
||||||
@ -359,9 +363,9 @@ Daily::Daily(QWidget *parent,gGraphView * shared)
|
|||||||
Daily::~Daily()
|
Daily::~Daily()
|
||||||
{
|
{
|
||||||
GraphView->SaveSettings("Daily");
|
GraphView->SaveSettings("Daily");
|
||||||
disconnect(sessbar, SIGNAL(toggledSession(Session*)), this, SLOT(doToggleSession(Session*)));
|
// disconnect(sessbar, SIGNAL(toggledSession(Session*)), this, SLOT(doToggleSession(Session*)));
|
||||||
|
|
||||||
disconnect(ui->webView,SIGNAL(linkClicked(QUrl)),this,SLOT(Link_clicked(QUrl)));
|
disconnect(webView,SIGNAL(linkClicked(QUrl)),this,SLOT(Link_clicked(QUrl)));
|
||||||
// Save any last minute changes..
|
// Save any last minute changes..
|
||||||
if (previous_date.isValid())
|
if (previous_date.isValid())
|
||||||
Unload(previous_date);
|
Unload(previous_date);
|
||||||
@ -393,7 +397,7 @@ void Daily::Link_clicked(const QUrl &url)
|
|||||||
Session *sess=day->find(sid);
|
Session *sess=day->find(sid);
|
||||||
if (!sess)
|
if (!sess)
|
||||||
return;
|
return;
|
||||||
int i=ui->webView->page()->mainFrame()->scrollBarMaximum(Qt::Vertical)-ui->webView->page()->mainFrame()->scrollBarValue(Qt::Vertical);
|
int i=webView->page()->mainFrame()->scrollBarMaximum(Qt::Vertical)-webView->page()->mainFrame()->scrollBarValue(Qt::Vertical);
|
||||||
sess->setEnabled(!sess->enabled());
|
sess->setEnabled(!sess->enabled());
|
||||||
|
|
||||||
// Messy, this rewrites both summary & events.. TODO: Write just the session summary file
|
// Messy, this rewrites both summary & events.. TODO: Write just the session summary file
|
||||||
@ -401,21 +405,21 @@ void Daily::Link_clicked(const QUrl &url)
|
|||||||
|
|
||||||
// Reload day
|
// Reload day
|
||||||
this->LoadDate(previous_date);
|
this->LoadDate(previous_date);
|
||||||
ui->webView->page()->mainFrame()->setScrollBarValue(Qt::Vertical, ui->webView->page()->mainFrame()->scrollBarMaximum(Qt::Vertical)-i);
|
webView->page()->mainFrame()->setScrollBarValue(Qt::Vertical, webView->page()->mainFrame()->scrollBarMaximum(Qt::Vertical)-i);
|
||||||
return;
|
return;
|
||||||
} else if (code=="toggleoxisession") { // Enable/Disable Oximetry session
|
} else if (code=="toggleoxisession") { // Enable/Disable Oximetry session
|
||||||
day=PROFILE.GetDay(previous_date,MT_OXIMETER);
|
day=PROFILE.GetDay(previous_date,MT_OXIMETER);
|
||||||
Session *sess=day->find(sid);
|
Session *sess=day->find(sid);
|
||||||
if (!sess)
|
if (!sess)
|
||||||
return;
|
return;
|
||||||
int i=ui->webView->page()->mainFrame()->scrollBarMaximum(Qt::Vertical)-ui->webView->page()->mainFrame()->scrollBarValue(Qt::Vertical);
|
int i=webView->page()->mainFrame()->scrollBarMaximum(Qt::Vertical)-webView->page()->mainFrame()->scrollBarValue(Qt::Vertical);
|
||||||
sess->setEnabled(!sess->enabled());
|
sess->setEnabled(!sess->enabled());
|
||||||
// Messy, this rewrites both summary & events.. TODO: Write just the session summary file
|
// Messy, this rewrites both summary & events.. TODO: Write just the session summary file
|
||||||
day->machine->Save();
|
day->machine->Save();
|
||||||
|
|
||||||
// Reload day
|
// Reload day
|
||||||
this->LoadDate(previous_date);
|
this->LoadDate(previous_date);
|
||||||
ui->webView->page()->mainFrame()->setScrollBarValue(Qt::Vertical, ui->webView->page()->mainFrame()->scrollBarMaximum(Qt::Vertical)-i);
|
webView->page()->mainFrame()->setScrollBarValue(Qt::Vertical, webView->page()->mainFrame()->scrollBarMaximum(Qt::Vertical)-i);
|
||||||
return;
|
return;
|
||||||
} else if (code=="cpap") {
|
} else if (code=="cpap") {
|
||||||
day=PROFILE.GetDay(previous_date,MT_CPAP);
|
day=PROFILE.GetDay(previous_date,MT_CPAP);
|
||||||
@ -684,6 +688,44 @@ void Daily::graphtogglebutton_toggled(bool b)
|
|||||||
GraphView->updateScale();
|
GraphView->updateScale();
|
||||||
GraphView->redraw();
|
GraphView->redraw();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
MyWebPage::MyWebPage(QObject *parent):
|
||||||
|
QWebPage(parent)
|
||||||
|
{
|
||||||
|
// Enable plugin support
|
||||||
|
settings()->setAttribute(QWebSettings::PluginsEnabled, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
QObject *MyWebPage::createPlugin(const QString &classid, const QUrl &url, const QStringList & paramNames, const QStringList & paramValues)
|
||||||
|
{
|
||||||
|
Q_UNUSED(paramNames)
|
||||||
|
Q_UNUSED(paramValues)
|
||||||
|
// Create the widget using QUiLoader.
|
||||||
|
// This means that the widgets don't need to be registered
|
||||||
|
// with the meta object system.
|
||||||
|
// On the other hand, non-gui objects can't be created this
|
||||||
|
// way. When we'd like to create non-visual objects in
|
||||||
|
// Html to use them via JavaScript, we'd use a different
|
||||||
|
// mechanism than this.
|
||||||
|
if (classid=="SessionBar") {
|
||||||
|
return mainwin->getDaily()->sessionBar();
|
||||||
|
}
|
||||||
|
QUiLoader loader;
|
||||||
|
// int i=5;
|
||||||
|
return loader.createWidget(classid, view());
|
||||||
|
}
|
||||||
|
|
||||||
|
MyWebView::MyWebView(QWidget *parent):
|
||||||
|
QWebView(parent),
|
||||||
|
m_page(this)
|
||||||
|
{
|
||||||
|
// Set the page of our own PageView class, MyPageView,
|
||||||
|
// because only objects of this class will handle
|
||||||
|
// object-tags correctly.
|
||||||
|
setPage(&m_page);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void Daily::Load(QDate date)
|
void Daily::Load(QDate date)
|
||||||
{
|
{
|
||||||
static Day * lastcpapday=NULL;
|
static Day * lastcpapday=NULL;
|
||||||
@ -943,8 +985,8 @@ void Daily::Load(QDate date)
|
|||||||
if ((hours > 0) && PROFILE.appearance->graphSnapshots()) { // AHI Pie Chart
|
if ((hours > 0) && PROFILE.appearance->graphSnapshots()) { // AHI Pie Chart
|
||||||
if ((oai+hi+cai+uai+rei+fli)>0) {
|
if ((oai+hi+cai+uai+rei+fli)>0) {
|
||||||
html+="<tr><td colspan=5 align=center> </td></tr>";
|
html+="<tr><td colspan=5 align=center> </td></tr>";
|
||||||
html+=QString("<tr><td colspan=4 align=center><b>%1</b></td></tr>").arg(tr("Event Breakdown"));
|
|
||||||
html+="<tr><td colspan=5 align=center><hr/></td></tr>";
|
html+="<tr><td colspan=5 align=center><hr/></td></tr>";
|
||||||
|
html+=QString("<tr><td colspan=4 align=center><b>%1</b></td></tr>").arg(tr("Event Breakdown"));
|
||||||
GAHI->setShowTitle(false);
|
GAHI->setShowTitle(false);
|
||||||
|
|
||||||
QPixmap pixmap=GAHI->renderPixmap(150,150,false);
|
QPixmap pixmap=GAHI->renderPixmap(150,150,false);
|
||||||
@ -996,10 +1038,10 @@ void Daily::Load(QDate date)
|
|||||||
else if (ST_mid==ST_PERC) midname=tr("Med");
|
else if (ST_mid==ST_PERC) midname=tr("Med");
|
||||||
|
|
||||||
if ((cpap && !isBrick && (cpap->hours()>0)) || oxi) {
|
if ((cpap && !isBrick && (cpap->hours()>0)) || oxi) {
|
||||||
html+="<tr height='2'><td colspan=5> </td></tr>\n";
|
// html+="<tr height='2'><td colspan=5> </td></tr>\n";
|
||||||
|
|
||||||
html+=QString("<tr><td colspan=5 align=center><b>%1</b></td></tr>\n").arg(tr("Statistics"));
|
|
||||||
html+="<tr height='2'><td colspan=5><hr></td></tr>\n";
|
html+="<tr height='2'><td colspan=5><hr></td></tr>\n";
|
||||||
|
html+=QString("<tr><td colspan=5 align=center><b>%1</b></td></tr>\n").arg(tr("Statistics"));
|
||||||
html+=QString("<tr><td><b>%1</b></td><td><b>%2</b></td><td><b>%3</b></td><td><b>%4</b></td><td><b>%5</b></td></tr>")
|
html+=QString("<tr><td><b>%1</b></td><td><b>%2</b></td><td><b>%3</b></td><td><b>%4</b></td><td><b>%5</b></td></tr>")
|
||||||
.arg(STR_TR_Channel)
|
.arg(STR_TR_Channel)
|
||||||
.arg(STR_TR_Min)
|
.arg(STR_TR_Min)
|
||||||
@ -1120,9 +1162,9 @@ void Daily::Load(QDate date)
|
|||||||
|
|
||||||
}
|
}
|
||||||
if (oxi && oxi->hasEnabledSessions()) {
|
if (oxi && oxi->hasEnabledSessions()) {
|
||||||
html+="<tr><td colspan=5 align=center> </td></tr>";
|
|
||||||
html+=QString("<tr><td colspan=5 align=center><b>%1</b></td></tr>\n").arg(tr("Oximeter Information"));
|
|
||||||
html+="<tr><td colspan=5 align=center><hr/></td></tr>";
|
html+="<tr><td colspan=5 align=center><hr/></td></tr>";
|
||||||
|
html+=QString("<tr><td colspan=5 align=center><b>%1</b></td></tr>\n").arg(tr("Oximeter Information"));
|
||||||
|
html+="<tr><td colspan=5 align=center> </td></tr>";
|
||||||
html+="<tr><td colspan=5 align=center>"+oxi->machine->properties[STR_PROP_Brand]+" "+oxi->machine->properties[STR_PROP_Model]+"</td></tr>\n";
|
html+="<tr><td colspan=5 align=center>"+oxi->machine->properties[STR_PROP_Brand]+" "+oxi->machine->properties[STR_PROP_Model]+"</td></tr>\n";
|
||||||
html+="<tr><td colspan=5 align=center> </td></tr>";
|
html+="<tr><td colspan=5 align=center> </td></tr>";
|
||||||
html+=QString("<tr><td colspan=5 align=center>%1: %2 (%3)\%</td></tr>").arg(tr("SpO2 Desaturations")).arg(oxi->count(OXI_SPO2Drop)).arg((100.0/oxi->hours()) * (oxi->sum(OXI_SPO2Drop)/3600.0),0,'f',2);
|
html+=QString("<tr><td colspan=5 align=center>%1: %2 (%3)\%</td></tr>").arg(tr("SpO2 Desaturations")).arg(oxi->count(OXI_SPO2Drop)).arg((100.0/oxi->hours()) * (oxi->sum(OXI_SPO2Drop)/3600.0),0,'f',2);
|
||||||
@ -1131,9 +1173,9 @@ void Daily::Load(QDate date)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (cpap && cpap->hasEnabledSessions()) {
|
if (cpap && cpap->hasEnabledSessions()) {
|
||||||
html+="<tr><td colspan=5> </td></tr>";
|
|
||||||
html+=QString("<tr><td colspan=5 align=center><b>%1</b></td></tr>").arg(tr("Machine Settings"));
|
|
||||||
html+="<tr><td colspan=5><hr height=2></td></tr>";
|
html+="<tr><td colspan=5><hr height=2></td></tr>";
|
||||||
|
html+=QString("<tr><td colspan=5 align=center><b>%1</b></td></tr>").arg(tr("Machine Settings"));
|
||||||
|
html+="<tr><td colspan=5> </td></tr>";
|
||||||
int i=cpap->settings_max(CPAP_PresReliefType);
|
int i=cpap->settings_max(CPAP_PresReliefType);
|
||||||
int j=cpap->settings_max(CPAP_PresReliefSet);
|
int j=cpap->settings_max(CPAP_PresReliefSet);
|
||||||
QString flexstr=(i>1) ? schema::channel[CPAP_PresReliefType].option(i)+" x"+QString::number(j) : STR_TR_None;
|
QString flexstr=(i>1) ? schema::channel[CPAP_PresReliefType].option(i)+" x"+QString::number(j) : STR_TR_None;
|
||||||
@ -1154,9 +1196,19 @@ void Daily::Load(QDate date)
|
|||||||
|
|
||||||
if (cpap || oxi) {
|
if (cpap || oxi) {
|
||||||
html+="<table cellpadding=0 cellspacing=0 border=0 width=100%>";
|
html+="<table cellpadding=0 cellspacing=0 border=0 width=100%>";
|
||||||
html+="<tr><td colspan=5 align=center> </td></tr>";
|
|
||||||
html+=QString("<tr><td colspan=4 align=center><b>"+tr("Session Information")+"</b></td></tr>");
|
|
||||||
html+="<tr><td colspan=5><hr/></td></tr>";
|
html+="<tr><td colspan=5><hr/></td></tr>";
|
||||||
|
html+=QString("<tr><td colspan=5 align=center><b>"+tr("Session Information")+"</b></td></tr>");
|
||||||
|
html+="<tr><td colspan=5 align=center> </td></tr>";
|
||||||
|
html+=QString("<tr><td colspan=5 align=center>"
|
||||||
|
"<object type=\"application/x-qt-plugin\" classid=\"SessionBar\" name=\"sessbar\" height=40 width=100%")+"></object>";
|
||||||
|
"<script>"
|
||||||
|
"sessbar.show();"
|
||||||
|
"</script>"
|
||||||
|
// "sessionbar.setGridVisible(true);"
|
||||||
|
// "calendar.setCurrentPage(1985, 5);"
|
||||||
|
"</td></tr>"
|
||||||
|
;
|
||||||
|
|
||||||
QDateTime fd,ld;
|
QDateTime fd,ld;
|
||||||
bool corrupted_waveform=false;
|
bool corrupted_waveform=false;
|
||||||
QString tooltip;
|
QString tooltip;
|
||||||
@ -1260,7 +1312,29 @@ void Daily::Load(QDate date)
|
|||||||
}
|
}
|
||||||
html+="</body></html>";
|
html+="</body></html>";
|
||||||
|
|
||||||
ui->webView->setHtml(html);
|
QColor cols[]={
|
||||||
|
QColor("gold"),
|
||||||
|
QColor("light blue"),
|
||||||
|
QColor("light green"),
|
||||||
|
QColor("purple"),
|
||||||
|
QColor("red"),
|
||||||
|
};
|
||||||
|
const int maxcolors=sizeof(cols)/sizeof(QColor);
|
||||||
|
QVector<Session *>::iterator i;
|
||||||
|
|
||||||
|
// WebView trashes it without asking.. :(
|
||||||
|
sessbar=new SessionBar(this);
|
||||||
|
sessbar->setMouseTracking(true);
|
||||||
|
connect(sessbar, SIGNAL(toggledSession(Session*)), this, SLOT(doToggleSession(Session*)));
|
||||||
|
int c=0;
|
||||||
|
for (i=cpap->begin();i!=cpap->end();++i) {
|
||||||
|
Session * s=*i;
|
||||||
|
sessbar->add(s, cols[c % maxcolors]);
|
||||||
|
c++;
|
||||||
|
}
|
||||||
|
//sessbar->update();
|
||||||
|
|
||||||
|
webView->setHtml(html);
|
||||||
|
|
||||||
ui->JournalNotes->clear();
|
ui->JournalNotes->clear();
|
||||||
|
|
||||||
@ -1546,25 +1620,8 @@ Session * Daily::GetJournalSession(QDate date) // Get the first journal session
|
|||||||
void Daily::UpdateCPAPGraphs(Day *day)
|
void Daily::UpdateCPAPGraphs(Day *day)
|
||||||
{
|
{
|
||||||
//if (!day) return;
|
//if (!day) return;
|
||||||
QColor cols[]={
|
|
||||||
QColor("gold"),
|
|
||||||
QColor("light blue"),
|
|
||||||
QColor("light green"),
|
|
||||||
QColor("purple"),
|
|
||||||
QColor("red"),
|
|
||||||
};
|
|
||||||
const int maxcolors=sizeof(cols)/sizeof(QColor);
|
|
||||||
if (day) {
|
if (day) {
|
||||||
day->OpenEvents();
|
day->OpenEvents();
|
||||||
QVector<Session *>::iterator i;
|
|
||||||
sessbar->clear();
|
|
||||||
int c=0;
|
|
||||||
for (i=day->begin();i!=day->end();++i) {
|
|
||||||
Session * s=*i;
|
|
||||||
sessbar->add(s, cols[c % maxcolors]);
|
|
||||||
c++;
|
|
||||||
}
|
|
||||||
sessbar->update();
|
|
||||||
}
|
}
|
||||||
for (QList<Layer *>::iterator g=CPAPData.begin();g!=CPAPData.end();g++) {
|
for (QList<Layer *>::iterator g=CPAPData.begin();g!=CPAPData.end();g++) {
|
||||||
(*g)->SetDay(day);
|
(*g)->SetDay(day);
|
||||||
@ -1948,10 +2005,10 @@ void Daily::on_ouncesSpinBox_editingFinished()
|
|||||||
|
|
||||||
QString Daily::GetDetailsText()
|
QString Daily::GetDetailsText()
|
||||||
{
|
{
|
||||||
ui->webView->triggerPageAction(QWebPage::SelectAll);
|
webView->triggerPageAction(QWebPage::SelectAll);
|
||||||
QString text=ui->webView->page()->selectedText();
|
QString text=webView->page()->selectedText();
|
||||||
ui->webView->triggerPageAction(QWebPage::MoveToEndOfDocument);
|
webView->triggerPageAction(QWebPage::MoveToEndOfDocument);
|
||||||
ui->webView->triggerPageAction(QWebPage::SelectEndOfDocument);
|
webView->triggerPageAction(QWebPage::SelectEndOfDocument);
|
||||||
return text;
|
return text;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -18,6 +18,8 @@
|
|||||||
#include <QtOpenGL/QGLContext>
|
#include <QtOpenGL/QGLContext>
|
||||||
#include <QScrollBar>
|
#include <QScrollBar>
|
||||||
#include <QTableWidgetItem>
|
#include <QTableWidgetItem>
|
||||||
|
#include <QWebView>
|
||||||
|
#include <QWebPage>
|
||||||
#include "Graphs/gSummaryChart.h"
|
#include "Graphs/gSummaryChart.h"
|
||||||
|
|
||||||
#include <SleepLib/profiles.h>
|
#include <SleepLib/profiles.h>
|
||||||
@ -31,6 +33,25 @@ namespace Ui {
|
|||||||
class Daily;
|
class Daily;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class MyWebPage:public QWebPage
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
MyWebPage(QObject *parent = 0);
|
||||||
|
protected:
|
||||||
|
QObject *createPlugin(const QString & classid, const QUrl & url, const QStringList & paramNames, const QStringList & paramValues);
|
||||||
|
};
|
||||||
|
|
||||||
|
class MyWebView:public QWebView
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
private:
|
||||||
|
MyWebPage m_page;
|
||||||
|
public:
|
||||||
|
MyWebView(QWidget *parent = 0);
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class MainWindow;
|
class MainWindow;
|
||||||
|
|
||||||
@ -102,6 +123,7 @@ public:
|
|||||||
\returns gGraph * object containing this chart
|
\returns gGraph * object containing this chart
|
||||||
*/
|
*/
|
||||||
gGraph * eventBreakdownPie() { return GAHI; }
|
gGraph * eventBreakdownPie() { return GAHI; }
|
||||||
|
QWidget * sessionBar() { return sessbar; }
|
||||||
private slots:
|
private slots:
|
||||||
|
|
||||||
/*! \fn on_calendar_currentPageChanged(int year, int month);
|
/*! \fn on_calendar_currentPageChanged(int year, int month);
|
||||||
@ -299,6 +321,8 @@ private:
|
|||||||
|
|
||||||
SessionBar * sessbar;
|
SessionBar * sessbar;
|
||||||
|
|
||||||
|
MyWebView * webView;
|
||||||
|
|
||||||
bool ZombieMeterMoved;
|
bool ZombieMeterMoved;
|
||||||
bool BookmarksChanged;
|
bool BookmarksChanged;
|
||||||
};
|
};
|
||||||
|
@ -271,46 +271,6 @@
|
|||||||
<property name="movable">
|
<property name="movable">
|
||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
</property>
|
</property>
|
||||||
<widget class="QWidget" name="details">
|
|
||||||
<attribute name="title">
|
|
||||||
<string>Details</string>
|
|
||||||
</attribute>
|
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_8">
|
|
||||||
<property name="spacing">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="leftMargin">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="topMargin">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="rightMargin">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="bottomMargin">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<item>
|
|
||||||
<widget class="QWebView" name="webView">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="cursor">
|
|
||||||
<cursorShape>IBeamCursor</cursorShape>
|
|
||||||
</property>
|
|
||||||
<property name="url">
|
|
||||||
<url>
|
|
||||||
<string>about:blank</string>
|
|
||||||
</url>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</widget>
|
|
||||||
<widget class="QWidget" name="events">
|
<widget class="QWidget" name="events">
|
||||||
<attribute name="title">
|
<attribute name="title">
|
||||||
<string>Events</string>
|
<string>Events</string>
|
||||||
@ -838,7 +798,7 @@
|
|||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<layout class="QHBoxLayout" name="sessionBarLayout" stretch="">
|
<layout class="QHBoxLayout" name="sessionBarLayout">
|
||||||
<property name="sizeConstraint">
|
<property name="sizeConstraint">
|
||||||
<enum>QLayout::SetMaximumSize</enum>
|
<enum>QLayout::SetMaximumSize</enum>
|
||||||
</property>
|
</property>
|
||||||
@ -882,13 +842,6 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
<customwidgets>
|
|
||||||
<customwidget>
|
|
||||||
<class>QWebView</class>
|
|
||||||
<extends>QWidget</extends>
|
|
||||||
<header>QtWebKitWidgets/QWebView</header>
|
|
||||||
</customwidget>
|
|
||||||
</customwidgets>
|
|
||||||
<resources>
|
<resources>
|
||||||
<include location="Resources.qrc"/>
|
<include location="Resources.qrc"/>
|
||||||
</resources>
|
</resources>
|
||||||
|
@ -7,14 +7,44 @@
|
|||||||
|
|
||||||
#include "sessionbar.h"
|
#include "sessionbar.h"
|
||||||
|
|
||||||
|
SBSeg::SBSeg()
|
||||||
|
{
|
||||||
|
session=NULL;
|
||||||
|
color=QColor();
|
||||||
|
highlight=false;
|
||||||
|
}
|
||||||
|
|
||||||
|
SBSeg::SBSeg(Session * sess, QColor col)
|
||||||
|
{
|
||||||
|
session=sess;
|
||||||
|
color=col;
|
||||||
|
highlight=false;
|
||||||
|
}
|
||||||
|
|
||||||
|
//SBSeg::SBSeg(const SBSeg & a)
|
||||||
|
//{
|
||||||
|
// session=(Session *)a.session;
|
||||||
|
// color=a.color;
|
||||||
|
// highlight=a.highlight;
|
||||||
|
//}
|
||||||
|
|
||||||
SessionBar::SessionBar(QWidget *parent) :
|
SessionBar::SessionBar(QWidget *parent) :
|
||||||
QWidget(parent)
|
QWidget(parent)
|
||||||
{
|
{
|
||||||
timer.setParent(this);
|
timer.setParent(this);
|
||||||
}
|
}
|
||||||
|
//SessionBar::SessionBar(const SessionBar & copy)
|
||||||
|
// :QWidget(this)
|
||||||
|
//{
|
||||||
|
// timer.setParent(this);
|
||||||
|
// QList<SBSeg>::const_iterator i;
|
||||||
|
// for (i=copy.segments.begin();i!=copy.segments.end();++i) {
|
||||||
|
// segments.push_back(*i);
|
||||||
|
// }
|
||||||
|
//}
|
||||||
|
|
||||||
SessionBar::~SessionBar()
|
SessionBar::~SessionBar()
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
void SessionBar::updateTimer()
|
void SessionBar::updateTimer()
|
||||||
{
|
{
|
||||||
|
@ -12,13 +12,13 @@ typedef qint64 SegType;
|
|||||||
|
|
||||||
class SBSeg {
|
class SBSeg {
|
||||||
public:
|
public:
|
||||||
SBSeg() { session=NULL; color=QColor(); highlight=false; }
|
SBSeg();
|
||||||
SBSeg(Session * sess, QColor col) { session=sess; color=col; highlight=false; }
|
SBSeg(Session * sess, QColor col);
|
||||||
SBSeg(const SBSeg & a) { session=a.session; color=a.color; highlight=a.highlight; }
|
// SBSeg(const SBSeg & a);
|
||||||
|
|
||||||
Session * session;
|
|
||||||
QColor color;
|
QColor color;
|
||||||
bool highlight;
|
bool highlight;
|
||||||
|
Session * session;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@ -27,6 +27,9 @@ class SessionBar : public QWidget
|
|||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
SessionBar(QWidget *parent = 0);
|
SessionBar(QWidget *parent = 0);
|
||||||
|
// // Q_DECLARE_METATYPE requires a copy-constructor
|
||||||
|
// SessionBar(const SessionBar &);
|
||||||
|
|
||||||
virtual ~SessionBar();
|
virtual ~SessionBar();
|
||||||
void clear() { segments.clear(); }
|
void clear() { segments.clear(); }
|
||||||
void add(Session * sess, QColor col) { if (sess) segments.push_back(SBSeg(sess,col)); }
|
void add(Session * sess, QColor col) { if (sess) segments.push_back(SBSeg(sess,col)); }
|
||||||
@ -39,11 +42,12 @@ protected:
|
|||||||
void paintEvent(QPaintEvent * event);
|
void paintEvent(QPaintEvent * event);
|
||||||
void mouseMoveEvent(QMouseEvent *);
|
void mouseMoveEvent(QMouseEvent *);
|
||||||
void mousePressEvent(QMouseEvent *);
|
void mousePressEvent(QMouseEvent *);
|
||||||
|
|
||||||
QList<SBSeg> segments;
|
|
||||||
SegType min();
|
SegType min();
|
||||||
SegType max();
|
SegType max();
|
||||||
|
|
||||||
|
QList<SBSeg> segments;
|
||||||
QTimer timer;
|
QTimer timer;
|
||||||
};
|
};
|
||||||
|
//Q_DECLARE_METATYPE(SessionBar)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
#-------------------------------------------------
|
#-------------------------------------------------
|
||||||
|
|
||||||
QT += core gui opengl network xml
|
QT += core gui opengl network xml uitools
|
||||||
|
|
||||||
greaterThan(QT_MAJOR_VERSION,4) {
|
greaterThan(QT_MAJOR_VERSION,4) {
|
||||||
QT += widgets webkitwidgets
|
QT += widgets webkitwidgets
|
||||||
|
Loading…
Reference in New Issue
Block a user