mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Added pixmap cache option to tooltip (to fix wavy Mac font bug)
This commit is contained in:
parent
3841635381
commit
1397f35ac4
@ -758,6 +758,7 @@ void gToolTip::display(QString text, int x, int y, int timeout)
|
|||||||
}
|
}
|
||||||
timer->setSingleShot(true);
|
timer->setSingleShot(true);
|
||||||
timer->start(timeout);
|
timer->start(timeout);
|
||||||
|
m_invalidate=true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void gToolTip::cancel()
|
void gToolTip::cancel()
|
||||||
@ -769,58 +770,87 @@ void gToolTip::cancel()
|
|||||||
void gToolTip::paint() //actually paints it.
|
void gToolTip::paint() //actually paints it.
|
||||||
{
|
{
|
||||||
if (!m_visible) return;
|
if (!m_visible) return;
|
||||||
|
|
||||||
|
bool usepixmap=m_graphview->usePixmapCache();
|
||||||
int x=m_pos.x();// - tw / 2;
|
int x=m_pos.x();// - tw / 2;
|
||||||
int y=m_pos.y();// - th;
|
int y=m_pos.y();// - th;
|
||||||
|
|
||||||
/*GLBuffer * & lines=m_graphview->lines;
|
if (!usepixmap | (usepixmap && m_invalidate)) {
|
||||||
GLBuffer * & quads=m_graphview->quads;
|
|
||||||
QColor col(255,255,128,200);
|
|
||||||
quads->add(x,y,x,y+th,col);
|
|
||||||
quads->add(x+tw,y+th,x+tw,y,col);
|
|
||||||
|
|
||||||
QColor blk(0,0,0,255);
|
QPainter painter;
|
||||||
lines->add(x-1,y-1,x+tw+1,y-1,blk);
|
|
||||||
lines->add(x-1,y+th+1,x+tw+1,y+th+1,blk);
|
|
||||||
lines->add(x-1,y-1,x-1,y+th+1,blk);
|
|
||||||
lines->add(x+tw+1,y-1,x+tw+1,y+th+1,blk);
|
|
||||||
|
|
||||||
m_graphview->AddTextQue(m_text,x + m_spacer,y + m_spacer + th/2); */
|
painter.begin(m_graphview);
|
||||||
|
|
||||||
QPainter painter(m_graphview);
|
QRect br;
|
||||||
|
QRect rect(x,y,0,0);
|
||||||
|
painter.setFont(*defaultfont);
|
||||||
|
|
||||||
QRect br;
|
rect=painter.boundingRect(rect,Qt::AlignCenter,m_text);
|
||||||
QRect rect(x,y,0,0);
|
|
||||||
painter.setFont(*defaultfont);
|
|
||||||
rect=painter.boundingRect(rect,Qt::AlignCenter,m_text);
|
|
||||||
int w=rect.width()+m_spacer*2;
|
|
||||||
int xx=rect.x()-m_spacer;
|
|
||||||
if (xx<0) xx=0;
|
|
||||||
rect.setLeft(xx);
|
|
||||||
rect.setTop(rect.y()-rect.height()/2);
|
|
||||||
rect.setWidth(w);
|
|
||||||
|
|
||||||
//rect.setHeight(rect.height());
|
if (!usepixmap) {
|
||||||
QBrush brush(QColor(255,255,128,200));
|
int w=rect.width()+m_spacer*2;
|
||||||
painter.setBrush(brush);
|
int xx=rect.x()-m_spacer;
|
||||||
int z=rect.x()+rect.width();
|
if (xx<0) xx=0;
|
||||||
if (z>m_graphview->width()-10) {
|
|
||||||
rect.setLeft(m_graphview->width()-2-rect.width());//m_pos.x()-m_spacer);
|
rect.setLeft(xx);
|
||||||
rect.setRight(m_graphview->width()-2);
|
rect.setTop(rect.y()-rect.height()/2);
|
||||||
|
rect.setWidth(w);
|
||||||
|
|
||||||
|
|
||||||
|
//rect.setHeight(rect.height());
|
||||||
|
int z=rect.x()+rect.width();
|
||||||
|
if (z>m_graphview->width()-10) {
|
||||||
|
rect.setLeft(m_graphview->width()-2-rect.width());//m_pos.x()-m_spacer);
|
||||||
|
rect.setRight(m_graphview->width()-2);
|
||||||
|
}
|
||||||
|
int h=rect.height();
|
||||||
|
if (rect.y()<0) {
|
||||||
|
rect.setY(0);
|
||||||
|
rect.setHeight(h);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
rect.setCoords(0,0,rect.width()+m_spacer*2,rect.height()+m_spacer*2);
|
||||||
|
painter.end();
|
||||||
|
if (!m_pixmap.isNull()) {
|
||||||
|
m_graphview->deleteTexture(m_textureID);
|
||||||
|
}
|
||||||
|
m_pixmap=QPixmap(rect.width()+2,rect.height()+2);
|
||||||
|
m_pixmap.fill(Qt::transparent);
|
||||||
|
painter.begin(&m_pixmap);
|
||||||
|
}
|
||||||
|
|
||||||
|
lines_drawn_this_frame+=4;
|
||||||
|
quads_drawn_this_frame+=1;
|
||||||
|
|
||||||
|
QBrush brush(QColor(255,255,128,200));
|
||||||
|
painter.setBrush(brush);
|
||||||
|
|
||||||
|
painter.drawRoundedRect(rect,5,5);
|
||||||
|
painter.setBrush(Qt::black);
|
||||||
|
|
||||||
|
painter.drawText(rect,Qt::AlignCenter,m_text);
|
||||||
|
|
||||||
|
painter.end();
|
||||||
|
if (usepixmap) {
|
||||||
|
m_textureID=m_graphview->bindTexture(m_pixmap);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
int h=rect.height();
|
if (usepixmap) {
|
||||||
if (rect.y()<0) {
|
x-=m_spacer+m_pixmap.width()/2;
|
||||||
rect.setY(0);
|
y-=m_pixmap.height()/2;
|
||||||
rect.setHeight(h);
|
if (y<0) y=0;
|
||||||
|
if ((x+m_pixmap.width()) > (m_graphview->width()-10)) x=m_graphview->width()-10 - m_pixmap.width();
|
||||||
|
if (usepixmap && !m_pixmap.isNull()) {
|
||||||
|
glEnable(GL_BLEND);
|
||||||
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
||||||
|
glEnable(GL_TEXTURE_2D);
|
||||||
|
m_graphview->drawTexture(QPoint(x,y),m_textureID);
|
||||||
|
glDisable(GL_TEXTURE_2D);
|
||||||
|
glDisable(GL_BLEND);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
lines_drawn_this_frame+=4;
|
|
||||||
quads_drawn_this_frame+=1;
|
|
||||||
|
|
||||||
painter.drawRoundedRect(rect,5,5);
|
|
||||||
painter.drawText(rect,Qt::AlignCenter,m_text);
|
|
||||||
|
|
||||||
painter.end();
|
|
||||||
|
|
||||||
}
|
}
|
||||||
void gToolTip::timerDone()
|
void gToolTip::timerDone()
|
||||||
{
|
{
|
||||||
|
@ -496,6 +496,9 @@ protected:
|
|||||||
QString m_text;
|
QString m_text;
|
||||||
bool m_visible;
|
bool m_visible;
|
||||||
int m_spacer;
|
int m_spacer;
|
||||||
|
QPixmap m_pixmap;
|
||||||
|
GLuint m_textureID;
|
||||||
|
bool m_invalidate;
|
||||||
protected slots:
|
protected slots:
|
||||||
|
|
||||||
//! \brief Timeout to hide tooltip, and redraw without it.
|
//! \brief Timeout to hide tooltip, and redraw without it.
|
||||||
|
Loading…
Reference in New Issue
Block a user