OSCAR-code/Graphs/gTitle.cpp
Mark Watkins e6fe771adf QT Commit
2011-06-26 18:30:44 +10:00

34 lines
1.1 KiB
C++

/********************************************************************
gTitle (Graph Title) Implementation
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
License: GPL
*********************************************************************/
#include "gTitle.h"
gTitle::gTitle(const QString & _title,QColor color,QFont font)
:gLayer(NULL),m_title(_title),m_color(color),m_font(font)
{
}
gTitle::~gTitle()
{
}
void gTitle::Plot(gGraphWindow & w,float scrx,float scry)
{
if (!m_visible) return;
float width,height;
GetTextExtent(m_title,width,height);
int xp=(height/2)+20;
//if (m_alignment==wxALIGN_RIGHT) xp=scrx-4-height;
DrawText(w,m_title,xp,scry-(w.GetBottomMargin()+((scry-w.GetBottomMargin())/2.0)),90.0,m_color,&m_font);
//DrawText(w,m_title,150,-40,45.0); //20+xp,scry-(w.GetBottomMargin()+((scry-w.GetBottomMargin())/2.0)+(height/2)),90.0,m_color,&m_font);
//glColor3ub(m_color.red(),m_color.green(),m_color.blue());
//w.renderText(xp,scry-(w.GetBottomMargin()+((scry-w.GetBottomMargin())/2.0)+(height/2)),0.35,m_title,m_font);
}