commented out verbose wheel event from debug log; removed some comment code. add information.

This commit is contained in:
LoudSnorer 2023-03-14 16:05:04 -04:00
parent 4dd45d5055
commit fbb3312566
4 changed files with 35 additions and 46 deletions

View File

@ -114,23 +114,6 @@ void gFlagsGroup::SetDay(Day *d)
cnt = lvisible.size(); cnt = lvisible.size();
// for (int i = 0; i < layers.size(); i++) {
// gFlagsLine *f = dynamic_cast<gFlagsLine *>(layers[i]);
// if (!f) { continue; }
// bool e = f->isEmpty();
// if (!e || f->isAlwaysVisible()) {
// lvisible.push_back(f);
// if (!e) {
// cnt++;
// }
// }
// }
m_empty = (cnt == 0); m_empty = (cnt == 0);
if (m_empty) { if (m_empty) {
@ -141,6 +124,7 @@ void gFlagsGroup::SetDay(Day *d)
m_barh = 0; m_barh = 0;
} }
bool gFlagsGroup::isEmpty() bool gFlagsGroup::isEmpty()
{ {
if (m_day) { if (m_day) {
@ -164,16 +148,6 @@ void gFlagsGroup::paint(QPainter &painter, gGraph &g, const QRegion &region)
if (!m_day) { return; } if (!m_day) { return; }
qint64 minx,maxx,dur;
g.graphView()->GetXBounds(minx,maxx);
dur = maxx - minx;
QString text= QString("%1 -> %2 %3: %4 ").
arg(QDateTime::fromMSecsSinceEpoch(minx).time().toString()).
arg(QDateTime::fromMSecsSinceEpoch(maxx).time().toString()).
arg(QObject::tr("Selection Length")).
arg(QTime(0,0).addMSecs(dur).toString("H:mm:ss.zzz")) ;
g.renderText(text, left , top -5 );
QVector<gFlagsLine *> visflags; QVector<gFlagsLine *> visflags;
for (const auto & flagsline : lvisible) { for (const auto & flagsline : lvisible) {
@ -185,6 +159,29 @@ void gFlagsGroup::paint(QPainter &painter, gGraph &g, const QRegion &region)
m_barh = float(height) / float(vis); m_barh = float(height) / float(vis);
float linetop = top; float linetop = top;
qint64 minx,maxx,dur;
g.graphView()->GetXBounds(minx,maxx);
dur = maxx - minx;
#if 0
// debug for minimum size for event flags. adding required height for enabled events , number eventTypes , height of an event bar
QString text= QString("%1 -> %2 %3: %4 H:%5 Vis:%6 barH:%7").
arg(QDateTime::fromMSecsSinceEpoch(minx).time().toString()).
arg(QDateTime::fromMSecsSinceEpoch(maxx).time().toString()).
arg(QObject::tr("Selection Length")).
arg(QTime(0,0).addMSecs(dur).toString("H:mm:ss.zzz"))
.arg(height)
.arg(vis)
.arg(m_barh)
;
#else
QString text= QString("%1 -> %2 %3: %4").
arg(QDateTime::fromMSecsSinceEpoch(minx).time().toString()).
arg(QDateTime::fromMSecsSinceEpoch(maxx).time().toString()).
arg(QObject::tr("Selection Length")).
arg(QTime(0,0).addMSecs(dur).toString("H:mm:ss.zzz")) ;
#endif
g.renderText(text, left , top -5 );
QColor barcol; QColor barcol;
for (int i=0, end=visflags.size(); i < end; i++) { for (int i=0, end=visflags.size(); i < end; i++) {
@ -289,7 +286,6 @@ void gFlagsLine::paint(QPainter &painter, gGraph &w, const QRegion &region)
double xmult = width / xx; double xmult = width / xx;
schema::Channel & chan = schema::channel[m_code]; schema::Channel & chan = schema::channel[m_code];
GetTextExtent(chan.label(), m_lx, m_ly); GetTextExtent(chan.label(), m_lx, m_ly);
// Draw text label // Draw text label

View File

@ -64,9 +64,6 @@ class gFlagsLine: public Layer
//! \brief Drawing code to add the flags and span markers to the Vertex buffers. //! \brief Drawing code to add the flags and span markers to the Vertex buffers.
virtual void paint(QPainter &painter, gGraph &w, const QRegion &region); virtual void paint(QPainter &painter, gGraph &w, const QRegion &region);
void setTotalLines(int i) { total_lines = i; }
void setLineNum(int i) { line_num = i; }
virtual Layer * Clone() { virtual Layer * Clone() {
gFlagsLine * layer = new gFlagsLine(NoChannel); //ouchie.. gFlagsLine * layer = new gFlagsLine(NoChannel); //ouchie..
Layer::CloneInto(layer); Layer::CloneInto(layer);
@ -76,8 +73,6 @@ class gFlagsLine: public Layer
void CloneInto(gFlagsLine * layer ) { void CloneInto(gFlagsLine * layer ) {
layer->m_always_visible = m_always_visible; layer->m_always_visible = m_always_visible;
layer->total_lines = total_lines;
layer->line_num = line_num;
layer->m_lx = m_lx; layer->m_lx = m_lx;
layer->m_ly = m_ly; layer->m_ly = m_ly;
} }
@ -87,7 +82,6 @@ class gFlagsLine: public Layer
virtual bool mouseMoveEvent(QMouseEvent *event, gGraph *graph); virtual bool mouseMoveEvent(QMouseEvent *event, gGraph *graph);
bool m_always_visible; bool m_always_visible;
int total_lines, line_num;
int m_lx, m_ly; int m_lx, m_ly;
}; };
@ -117,12 +111,6 @@ class gFlagsGroup: public LayerGroup
//! Returns true if none of the gFlagLine objects contain any data for this day //! Returns true if none of the gFlagLine objects contain any data for this day
virtual bool isEmpty(); virtual bool isEmpty();
//! Returns the count of visible flag line entries
int count() { return lvisible.size(); }
//! Returns the height in pixels of each bar
int barHeight() { return m_barh; }
//! Returns a list of Visible gFlagsLine layers to draw //! Returns a list of Visible gFlagsLine layers to draw
QVector<gFlagsLine *> &visibleLayers() { return lvisible; } QVector<gFlagsLine *> &visibleLayers() { return lvisible; }

View File

@ -1199,7 +1199,7 @@ void gGraph::mouseReleaseEvent(QMouseEvent *event)
void gGraph::wheelEvent(QWheelEvent *event) void gGraph::wheelEvent(QWheelEvent *event)
{ {
qDebug() << m_title << "Wheel" << wheelEventX(event) << wheelEventY(event) << wheelEventDelta(event); //qDebug() << m_title << "Wheel" << wheelEventX(event) << wheelEventY(event) << wheelEventDelta(event);
//int y=event->pos().y(); //int y=event->pos().y();
if ( isWheelEventHorizontal(event) ) { if ( isWheelEventHorizontal(event) ) {
@ -1535,10 +1535,16 @@ int gGraph::minHeight()
{ {
int minheight = m_min_height; int minheight = m_min_height;
// int top = 0;
// int center = 0;
// int bottom = 0;
for (const auto & layer : m_layers) { for (const auto & layer : m_layers) {
// caution.
// The logical around this area of code does not work.
// This assumes that one layer has the total height for the graph.
// this is not the case.
// for exaple the xaxis layer contains part of the total height
// and so does the graph area.
// what about the top margin for text .
// There are some layers that do not contribute to the minimum height.
int mh = layer->minimumHeight(); int mh = layer->minimumHeight();
mh += m_margintop + m_marginbottom; mh += m_margintop + m_marginbottom;
if (mh > minheight) minheight = mh; if (mh > minheight) minheight = mh;

View File

@ -393,8 +393,7 @@ bool Machine::AddSession(Session *s, bool allowOldSessions)
if (session_length < ignore_sessions) { if (session_length < ignore_sessions) {
// keep the session to save importing it again, but don't add it to the day record this time // keep the session to save importing it again, but don't add it to the day record this time
qDebug() << s->session() << "Ignoring short session <" << ignore_sessions // qDebug() << s->session() << "Ignoring short session <" << ignore_sessions << "["+QDateTime::fromMSecsSinceEpoch(s->first()).toString("MMM dd, yyyy hh:mm:ss")+"]";
<< "["+QDateTime::fromMSecsSinceEpoch(s->first()).toString("MMM dd, yyyy hh:mm:ss")+"]";
return true; return true;
} }