OSCAR-code/Graphs/gTitle.cpp

33 lines
1.0 KiB
C++
Raw Normal View History

2011-06-26 08:30:44 +00:00
/********************************************************************
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)
2011-07-27 09:21:53 +00:00
:gLayer(MC_UNKNOWN),m_title(_title),m_color(color),m_font(font)
2011-06-26 08:30:44 +00:00
{
}
gTitle::~gTitle()
{
}
void gTitle::Plot(gGraphWindow & w,float scrx,float scry)
{
if (!m_visible) return;
2011-07-27 09:21:53 +00:00
scrx=scrx;
2011-06-26 08:30:44 +00:00
float width,height;
GetTextExtent(m_title,width,height);
2011-07-27 09:21:53 +00:00
int xp=(height/2)+15;
2011-06-26 08:30:44 +00:00
//if (m_alignment==wxALIGN_RIGHT) xp=scrx-4-height;
2011-07-11 08:56:25 +00:00
DrawText(m_title,xp,scry-(w.GetBottomMargin()+((scry-w.GetBottomMargin())/2.0)),90.0,m_color,&m_font);
2011-06-26 08:30:44 +00:00
//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);
//w.renderText(xp,scry-(w.GetBottomMargin()+((scry-w.GetBottomMargin())/2.0)+(height/2)),0.35,m_title,m_font);
}