2014-08-17 12:56:05 +00:00
|
|
|
/* gXAxis Implementation
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
|
|
|
* Copyright (c) 2011-2014 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
2011-07-19 15:31:51 +00:00
|
|
|
#include <QDebug>
|
2014-08-29 05:32:49 +00:00
|
|
|
#include <QFontMetrics>
|
2013-01-18 08:37:17 +00:00
|
|
|
|
2014-04-23 17:20:38 +00:00
|
|
|
#include <math.h>
|
|
|
|
|
2014-09-01 04:49:05 +00:00
|
|
|
#include "Graphs/gXAxis.h"
|
|
|
|
#include "SleepLib/profiles.h"
|
2014-04-23 17:20:38 +00:00
|
|
|
#include "Graphs/glcommon.h"
|
|
|
|
#include "Graphs/gGraph.h"
|
|
|
|
#include "Graphs/gGraphView.h"
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-05-26 03:48:22 +00:00
|
|
|
// These divisors are used to round xaxis timestamps to reasonable increments
|
2014-04-17 05:55:38 +00:00
|
|
|
const quint64 divisors[] = {
|
2011-09-28 11:46:32 +00:00
|
|
|
15552000000ULL, 7776000000ULL, 5184000000ULL, 2419200000ULL, 1814400000ULL, 1209600000L, 604800000L, 259200000L,
|
2014-04-17 05:55:38 +00:00
|
|
|
172800000L, 86400000, 2880000, 14400000, 7200000, 3600000, 2700000,
|
|
|
|
1800000, 1200000, 900000, 600000, 300000, 120000, 60000, 45000, 30000,
|
2014-05-26 07:37:28 +00:00
|
|
|
20000, 15000, 10000, 5000, 2000, 1000, 500, 100, 50, 10, 1
|
2011-09-04 13:48:45 +00:00
|
|
|
};
|
2014-04-17 05:55:38 +00:00
|
|
|
const int divcnt = sizeof(divisors) / sizeof(quint64);
|
2011-08-06 10:45:00 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
gXAxis::gXAxis(QColor col, bool fadeout)
|
|
|
|
: Layer(NoChannel)
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
2014-04-17 05:55:38 +00:00
|
|
|
m_line_color = col;
|
|
|
|
m_text_color = col;
|
|
|
|
m_major_color = Qt::darkGray;
|
|
|
|
m_minor_color = Qt::lightGray;
|
|
|
|
m_show_major_lines = false;
|
|
|
|
m_show_minor_lines = false;
|
|
|
|
m_show_minor_ticks = true;
|
|
|
|
m_show_major_ticks = true;
|
|
|
|
m_utcfix = false;
|
|
|
|
m_fadeout = fadeout;
|
|
|
|
|
|
|
|
tz_offset = timezoneOffset();
|
|
|
|
tz_hours = tz_offset / 3600000.0;
|
2014-07-28 13:56:29 +00:00
|
|
|
|
|
|
|
m_roundDays = false;
|
2011-06-26 08:30:44 +00:00
|
|
|
}
|
|
|
|
gXAxis::~gXAxis()
|
|
|
|
{
|
|
|
|
}
|
2014-08-29 05:32:49 +00:00
|
|
|
|
|
|
|
int gXAxis::minimumHeight()
|
|
|
|
{
|
|
|
|
QFontMetrics fm(*defaultfont);
|
|
|
|
int h = fm.height();
|
2014-08-29 05:54:03 +00:00
|
|
|
#if defined(Q_OS_MAC)
|
2014-08-29 05:32:49 +00:00
|
|
|
return 9+h;
|
2014-08-29 05:54:03 +00:00
|
|
|
#else
|
|
|
|
return 11+h;
|
|
|
|
#endif
|
2014-08-29 05:32:49 +00:00
|
|
|
}
|
|
|
|
|
2014-05-13 17:47:33 +00:00
|
|
|
void gXAxis::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
2014-05-13 17:47:33 +00:00
|
|
|
int left = region.boundingRect().left();
|
|
|
|
int top = region.boundingRect().top();
|
|
|
|
int width = region.boundingRect().width();
|
|
|
|
int height = region.boundingRect().height();
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
QString months[] = {
|
2013-10-25 12:11:23 +00:00
|
|
|
QObject::tr("Jan"), QObject::tr("Feb"), QObject::tr("Mar"), QObject::tr("Apr"), QObject::tr("May"), QObject::tr("Jun"),
|
2014-04-17 05:55:38 +00:00
|
|
|
QObject::tr("Jul"), QObject::tr("Aug"), QObject::tr("Sep"), QObject::tr("Oct"), QObject::tr("Nov"), QObject::tr("Dec")
|
2013-10-25 12:11:23 +00:00
|
|
|
};
|
|
|
|
//static QString dow[]={"Sun","Mon","Tue","Wed","Thu","Fri","Sat"};
|
|
|
|
|
|
|
|
|
2014-05-08 11:08:32 +00:00
|
|
|
QVector<QLine> ticks;
|
2011-08-05 15:01:17 +00:00
|
|
|
|
2014-05-26 03:48:22 +00:00
|
|
|
|
2014-05-07 19:52:59 +00:00
|
|
|
QPainter painter2; // Only need this for pixmap caching
|
2011-08-05 15:01:17 +00:00
|
|
|
|
2013-09-14 09:36:04 +00:00
|
|
|
// pixmap caching screws font size when printing
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
bool usepixmap = w.graphView()->usePixmapCache(); // Whether or not to use pixmap caching
|
2013-01-18 07:33:35 +00:00
|
|
|
|
|
|
|
if (!usepixmap || (usepixmap && w.invalidate_xAxisImage)) {
|
2014-05-26 03:48:22 +00:00
|
|
|
// Redraw graph xaxis labels and ticks either to pixmap or directly to screen
|
2013-01-18 07:33:35 +00:00
|
|
|
|
|
|
|
if (usepixmap) {
|
2014-05-26 03:48:22 +00:00
|
|
|
// Initialize a new cache image
|
2014-04-17 05:55:38 +00:00
|
|
|
m_image = QImage(width + 22, height + 4, QImage::Format_ARGB32_Premultiplied);
|
2013-01-18 15:27:44 +00:00
|
|
|
m_image.fill(Qt::transparent);
|
2014-05-07 19:52:59 +00:00
|
|
|
painter2.begin(&m_image);
|
|
|
|
painter2.setPen(Qt::black);
|
|
|
|
painter2.setFont(*defaultfont);
|
2011-08-05 15:01:17 +00:00
|
|
|
}
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
double px, py;
|
|
|
|
|
|
|
|
int start_px = left;
|
2013-01-18 07:33:35 +00:00
|
|
|
//int start_py=top;
|
|
|
|
//int width=scrx-(w.GetLeftMargin()+w.GetRightMargin());
|
2014-04-17 05:55:38 +00:00
|
|
|
// float height=scry-(w.GetTopMargin()+w.GetBottomMargin());
|
2011-08-06 08:34:24 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
if (width < 40) {
|
2013-01-18 07:33:35 +00:00
|
|
|
return;
|
2014-04-17 05:55:38 +00:00
|
|
|
}
|
|
|
|
|
2013-01-18 07:33:35 +00:00
|
|
|
qint64 minx;
|
|
|
|
qint64 maxx;
|
2014-04-17 05:55:38 +00:00
|
|
|
|
2013-01-18 07:33:35 +00:00
|
|
|
if (w.blockZoom()) {
|
2014-05-26 03:48:22 +00:00
|
|
|
// Lock zoom to entire data range
|
2014-04-17 05:55:38 +00:00
|
|
|
minx = w.rmin_x;
|
|
|
|
maxx = w.rmax_x;
|
2013-01-18 07:33:35 +00:00
|
|
|
} else {
|
2014-05-26 03:48:22 +00:00
|
|
|
// Allow zoom
|
2014-04-17 05:55:38 +00:00
|
|
|
minx = w.min_x;
|
|
|
|
maxx = w.max_x;
|
2013-01-18 07:33:35 +00:00
|
|
|
}
|
2014-04-17 05:55:38 +00:00
|
|
|
|
2014-07-28 13:56:29 +00:00
|
|
|
int days = ceil(double(maxx-minx) / 86400000.0);
|
|
|
|
|
2014-09-01 04:49:05 +00:00
|
|
|
bool buttuglydaysteps = !p_profile->appearance->animations();
|
|
|
|
if (buttuglydaysteps) {
|
|
|
|
if (m_roundDays && (days >= 1)) {
|
|
|
|
minx = floor(double(minx)/86400000.0);
|
|
|
|
minx *= 86400000L;
|
2014-07-28 13:56:29 +00:00
|
|
|
|
2014-09-01 04:49:05 +00:00
|
|
|
maxx = minx + 86400000L * qint64(days);
|
|
|
|
}
|
2014-07-28 13:56:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-05-26 03:48:22 +00:00
|
|
|
// duration of graph display window in milliseconds.
|
2014-04-17 05:55:38 +00:00
|
|
|
qint64 xx = maxx - minx;
|
|
|
|
|
2014-05-26 03:48:22 +00:00
|
|
|
// shouldn't really be negative, but this is safer than an assert
|
|
|
|
if (xx <= 0) {
|
|
|
|
return;
|
|
|
|
}
|
2011-08-06 08:34:24 +00:00
|
|
|
|
2013-01-18 07:33:35 +00:00
|
|
|
//Most of this could be precalculated when min/max is set..
|
2014-04-17 05:55:38 +00:00
|
|
|
QString fd, tmpstr;
|
|
|
|
int divmax, dividx;
|
2013-01-18 07:33:35 +00:00
|
|
|
int fitmode;
|
2014-04-17 05:55:38 +00:00
|
|
|
|
2014-05-26 03:48:22 +00:00
|
|
|
// Have a quick look at the scale and prep the autoscaler a little faster
|
2014-04-17 05:55:38 +00:00
|
|
|
if (xx >= 86400000L) { // Day
|
|
|
|
fd = "Mjj 00";
|
|
|
|
dividx = 0;
|
|
|
|
divmax = 10;
|
|
|
|
fitmode = 0;
|
|
|
|
} else if (xx > 600000) { // Minutes
|
|
|
|
fd = " j0:00";
|
|
|
|
dividx = 10;
|
|
|
|
divmax = 27;
|
|
|
|
fitmode = 1;
|
|
|
|
} else if (xx > 5000) { // Seconds
|
|
|
|
fd = " j0:00:00";
|
|
|
|
dividx = 16;
|
2014-05-26 03:48:22 +00:00
|
|
|
divmax = 29;
|
2014-04-17 05:55:38 +00:00
|
|
|
fitmode = 2;
|
2013-01-18 07:33:35 +00:00
|
|
|
} else { // Microseconds
|
2014-04-17 05:55:38 +00:00
|
|
|
fd = "j0:00:00:000";
|
|
|
|
dividx = 28;
|
|
|
|
divmax = divcnt;
|
|
|
|
fitmode = 3;
|
2013-01-18 07:33:35 +00:00
|
|
|
}
|
2014-04-17 05:55:38 +00:00
|
|
|
|
2013-01-18 07:33:35 +00:00
|
|
|
//if (divmax>divcnt) divmax=divcnt;
|
2011-09-01 07:12:25 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
int x, y;
|
2014-05-26 03:48:22 +00:00
|
|
|
// grab the text extent of the dummy text fields above to know how much space is needed
|
2014-04-17 05:55:38 +00:00
|
|
|
GetTextExtent(fd, x, y);
|
2011-09-13 02:51:50 +00:00
|
|
|
|
2014-05-26 03:48:22 +00:00
|
|
|
// Not sure when this was a problem...
|
|
|
|
Q_ASSERT(x > 0);
|
|
|
|
// if (x <= 0) {
|
|
|
|
// qWarning() << "gXAxis::Plot() x<=0 font size bug";
|
|
|
|
// return;
|
|
|
|
// }
|
2011-09-13 02:51:50 +00:00
|
|
|
|
2014-05-26 03:48:22 +00:00
|
|
|
|
|
|
|
// Max number of ticks that will fit, with a bit of room for a buffer
|
|
|
|
int max_ticks = width / (x + 15);
|
2014-04-17 05:55:38 +00:00
|
|
|
|
|
|
|
int fit_ticks = 0;
|
|
|
|
int div = -1;
|
|
|
|
qint64 closest = 0, tmp, tmpft;
|
|
|
|
|
2014-05-26 03:48:22 +00:00
|
|
|
// Scan through divisor list with the index range given above, to find which
|
|
|
|
// gives the closest number of ticks to the maximum that will physically fit
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
for (int i = dividx; i < divmax; i++) {
|
|
|
|
tmpft = xx / divisors[i];
|
|
|
|
tmp = max_ticks - tmpft;
|
|
|
|
|
|
|
|
if (tmp < 0) { continue; }
|
|
|
|
|
|
|
|
if (tmpft > closest) { // Find the closest scale to the number
|
|
|
|
closest = tmpft; // that will fit
|
|
|
|
div = i;
|
|
|
|
fit_ticks = tmpft;
|
2013-01-18 07:33:35 +00:00
|
|
|
}
|
|
|
|
}
|
2014-04-17 05:55:38 +00:00
|
|
|
|
|
|
|
if (fit_ticks == 0) {
|
2013-01-18 07:33:35 +00:00
|
|
|
qDebug() << "gXAxis::Plot() Couldn't fit ticks.. Too short?" << minx << maxx << xx;
|
|
|
|
return;
|
|
|
|
}
|
2014-04-17 05:55:38 +00:00
|
|
|
|
|
|
|
if ((div < 0) || (div > divcnt)) {
|
2013-01-18 07:33:35 +00:00
|
|
|
qDebug() << "gXAxis::Plot() div out of bounds";
|
|
|
|
return;
|
|
|
|
}
|
2014-04-17 05:55:38 +00:00
|
|
|
|
|
|
|
qint64 step = divisors[div];
|
2011-09-13 02:51:50 +00:00
|
|
|
|
2013-01-18 07:33:35 +00:00
|
|
|
//Align left minimum to divisor by losing precision
|
2014-04-17 05:55:38 +00:00
|
|
|
qint64 aligned_start = minx / step;
|
|
|
|
aligned_start *= step;
|
2011-09-13 02:51:50 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
while (aligned_start < minx) {
|
|
|
|
aligned_start += step;
|
2013-01-18 07:33:35 +00:00
|
|
|
}
|
2011-09-13 02:51:50 +00:00
|
|
|
|
2014-05-07 19:52:59 +00:00
|
|
|
painter.setPen(QColor(Qt::black));
|
2011-09-13 02:51:50 +00:00
|
|
|
|
2013-01-18 07:33:35 +00:00
|
|
|
|
|
|
|
//int utcoff=m_utcfix ? tz_hours : 0;
|
|
|
|
|
|
|
|
//utcoff=0;
|
|
|
|
int num_minor_ticks;
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
if (step >= 86400000) {
|
|
|
|
qint64 i = step / 86400000L; // number of days
|
|
|
|
|
|
|
|
if (i > 14) { i /= 2; }
|
|
|
|
|
|
|
|
if (i < 0) { i = 1; }
|
2013-01-18 07:33:35 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
num_minor_ticks = i;
|
|
|
|
} else { num_minor_ticks = 10; }
|
2013-01-18 07:33:35 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
float xmult = double(width) / double(xx);
|
|
|
|
float step_pixels = double(step / float(num_minor_ticks)) * xmult;
|
|
|
|
|
|
|
|
py = left + float(aligned_start - minx) * xmult;
|
2013-01-18 07:33:35 +00:00
|
|
|
|
|
|
|
//py+=usepixmap ? 20 : left;
|
|
|
|
|
2014-08-29 05:54:03 +00:00
|
|
|
int mintop = top + 3.0 * (float(y) / 10.0);
|
2014-04-17 05:55:38 +00:00
|
|
|
int majtop = top + 6.0 * (float(y) / 10.0);
|
2014-08-29 05:54:03 +00:00
|
|
|
int texttop = majtop + y; // 18*w.printScaleY();
|
|
|
|
#if defined (Q_OS_MAC)
|
2014-08-29 05:56:01 +00:00
|
|
|
texttop += 2;
|
2014-08-29 05:54:03 +00:00
|
|
|
#endif
|
2013-01-18 07:33:35 +00:00
|
|
|
|
|
|
|
// Fill in the minor tick marks up to the first major alignment tick
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
for (int i = 0; i < num_minor_ticks; i++) {
|
|
|
|
py -= step_pixels;
|
|
|
|
|
|
|
|
if (py < start_px) { continue; }
|
|
|
|
|
|
|
|
if (usepixmap) {
|
2014-05-08 11:08:32 +00:00
|
|
|
ticks.append(QLine(py - left + 20, 0, py - left + 20, mintop - top));
|
2014-04-17 05:55:38 +00:00
|
|
|
} else {
|
2014-05-08 11:08:32 +00:00
|
|
|
ticks.append(QLine(py, top+2, py, mintop+2));
|
2014-04-17 05:55:38 +00:00
|
|
|
}
|
2011-08-05 15:01:17 +00:00
|
|
|
}
|
2013-01-18 07:33:35 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
int ms, m, h, s, d;
|
2013-01-18 07:33:35 +00:00
|
|
|
qint64 j;
|
2014-04-17 05:55:38 +00:00
|
|
|
|
|
|
|
for (qint64 i = aligned_start; i < maxx; i += step) {
|
|
|
|
px = (i - minx) * xmult;
|
|
|
|
px += left;
|
|
|
|
|
2013-01-18 07:33:35 +00:00
|
|
|
if (usepixmap) {
|
2014-05-08 11:08:32 +00:00
|
|
|
ticks.append(QLine(px - left + 20, 0, px - left + 20, majtop - top));
|
2014-05-07 19:52:59 +00:00
|
|
|
} else {
|
2014-05-08 11:08:32 +00:00
|
|
|
ticks.append(QLine(px, top+2, px, majtop+2));
|
2014-05-07 19:52:59 +00:00
|
|
|
}
|
2014-04-17 05:55:38 +00:00
|
|
|
|
|
|
|
j = i;
|
|
|
|
|
|
|
|
if (!m_utcfix) { j += tz_offset; }
|
|
|
|
|
|
|
|
ms = j % 1000;
|
|
|
|
m = (j / 60000L) % 60L;
|
|
|
|
h = (j / 3600000L) % 24L;
|
|
|
|
s = (j / 1000L) % 60L;
|
2013-01-18 07:33:35 +00:00
|
|
|
//int d=(j/86400000) % 7;
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
if (fitmode == 0) {
|
|
|
|
d = (j / 1000);
|
|
|
|
QDateTime dt = QDateTime::fromTime_t(d).toUTC();
|
|
|
|
QDate date = dt.date();
|
2013-10-25 12:11:23 +00:00
|
|
|
// SLOW SLOW SLOW!!! On Mac especially, this function is pathetically slow.
|
|
|
|
//dt.toString("MMM dd");
|
|
|
|
|
|
|
|
// Doing it this way instead because it's MUUUUUUCH faster
|
2014-04-17 05:55:38 +00:00
|
|
|
tmpstr = QString("%1 %2").arg(months[date.month() - 1]).arg(date.day());
|
|
|
|
//} else if (fitmode==0) {
|
|
|
|
// tmpstr=QString("%1 %2:%3").arg(dow[d]).arg(h,2,10,QChar('0')).arg(m,2,10,QChar('0'));
|
|
|
|
} else if (fitmode == 1) { // minute
|
|
|
|
tmpstr = QString("%1:%2").arg(h, 2, 10, QChar('0')).arg(m, 2, 10, QChar('0'));
|
|
|
|
} else if (fitmode == 2) { // second
|
|
|
|
tmpstr = QString("%1:%2:%3").arg(h, 2, 10, QChar('0')).arg(m, 2, 10, QChar('0')).arg(s, 2, 10,
|
|
|
|
QChar('0'));
|
|
|
|
} else if (fitmode == 3) { // milli
|
|
|
|
tmpstr = QString("%1:%2:%3:%4").arg(h, 2, 10, QChar('0')).arg(m, 2, 10, QChar('0')).arg(s, 2, 10,
|
|
|
|
QChar('0')).arg(ms, 3, 10, QChar('0'));
|
2013-01-18 07:33:35 +00:00
|
|
|
}
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
int tx = px - x / 2.0;
|
|
|
|
|
|
|
|
if (m_utcfix) {
|
|
|
|
tx += step_pixels / 2.0;
|
|
|
|
}
|
2011-08-06 12:46:27 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
if ((tx + x) < (left + width)) {
|
|
|
|
if (!usepixmap) { w.renderText(tmpstr, tx, texttop, 0, Qt::black, defaultfont); }
|
2014-05-07 19:52:59 +00:00
|
|
|
else { painter2.drawText(tx - left + 20, texttop - top, tmpstr); }
|
2013-01-18 07:33:35 +00:00
|
|
|
}
|
2014-04-17 05:55:38 +00:00
|
|
|
|
|
|
|
py = px;
|
|
|
|
|
|
|
|
for (int j = 1; j < num_minor_ticks; j++) {
|
|
|
|
py += step_pixels;
|
|
|
|
|
|
|
|
if (py >= left + width) { break; }
|
|
|
|
|
2013-01-18 07:33:35 +00:00
|
|
|
if (usepixmap) {
|
2014-05-08 11:08:32 +00:00
|
|
|
ticks.append(QLine(py - left + 20, 0, py - left + 20, mintop - top));
|
2014-05-07 19:52:59 +00:00
|
|
|
} else {
|
2014-05-08 11:08:32 +00:00
|
|
|
ticks.append(QLine(py, top+2, py, mintop+2));
|
2014-05-07 19:52:59 +00:00
|
|
|
}
|
2013-01-18 07:33:35 +00:00
|
|
|
}
|
2011-06-26 08:30:44 +00:00
|
|
|
}
|
|
|
|
|
2013-01-18 07:33:35 +00:00
|
|
|
if (usepixmap) {
|
2014-05-08 11:08:32 +00:00
|
|
|
painter2.drawLines(ticks);
|
2014-05-07 19:52:59 +00:00
|
|
|
painter2.end();
|
2014-05-08 11:08:32 +00:00
|
|
|
} else {
|
|
|
|
painter.drawLines(ticks);
|
2011-06-26 08:30:44 +00:00
|
|
|
}
|
2014-05-10 00:50:35 +00:00
|
|
|
w.graphView()->lines_drawn_this_frame += ticks.size();
|
2014-04-17 05:55:38 +00:00
|
|
|
|
|
|
|
w.invalidate_xAxisImage = false;
|
2013-01-18 07:33:35 +00:00
|
|
|
}
|
|
|
|
|
2013-01-18 15:27:44 +00:00
|
|
|
if (usepixmap && !m_image.isNull()) {
|
2014-07-30 17:14:28 +00:00
|
|
|
painter.drawImage(QPoint(left - 20, top + height - m_image.height() + 5), m_image);
|
2011-07-19 15:31:51 +00:00
|
|
|
}
|
2011-06-26 08:30:44 +00:00
|
|
|
}
|
|
|
|
|