#include "Riostream.h"
#include "TROOT.h"
#include "TVirtualPad.h"
#include "TText.h"
#include "TTF.h"
#include "TVirtualX.h"
#include "TMath.h"
#include "TPoint.h"
#include "TClass.h"
ClassImp(TText)
TText::TText(): TNamed(), TAttText()
{
}
TText::TText(Double_t x, Double_t y, const char *text) : TNamed("",text), TAttText()
{
fX=x; fY=y;
}
TText::~TText()
{
}
TText::TText(const TText &text) : TNamed(text), TAttText(text)
{
((TText&)text).Copy(*this);
}
void TText::Copy(TObject &obj) const
{
((TText&)obj).fX = fX;
((TText&)obj).fY = fY;
TNamed::Copy(obj);
TAttText::Copy(((TText&)obj));
}
Int_t TText::DistancetoPrimitive(Int_t px, Int_t py)
{
Int_t ptx, pty;
TAttText::Modify();
if (TestBit(kTextNDC)) {
ptx = gPad->UtoPixel(fX);
pty = gPad->VtoPixel(fY);
} else {
ptx = gPad->XtoAbsPixel(gPad->XtoPad(fX));
pty = gPad->YtoAbsPixel(gPad->YtoPad(fY));
}
Int_t cBoxX[5], cBoxY[5];
GetControlBox(ptx, pty, -fTextAngle, cBoxX, cBoxY);
cBoxY[4] = cBoxY[0];
cBoxX[4] = cBoxX[0];
if(TMath::IsInside(px, py, 5, cBoxX, cBoxY)){
return 0;
} else {
return 9999;
}
}
TText *TText::DrawText(Double_t x, Double_t y, const char *text)
{
TText *newtext = new TText(x, y, text);
TAttText::Copy(*newtext);
newtext->SetBit(kCanDelete);
if (TestBit(kTextNDC)) newtext->SetNDC();
newtext->AppendPad();
return newtext;
}
TText *TText::DrawTextNDC(Double_t x, Double_t y, const char *text)
{
TText *newtext = DrawText(x, y, text);
newtext->SetNDC();
return newtext;
}
void TText::ExecuteEvent(Int_t event, Int_t px, Int_t py)
{
static Int_t px1, py1, pxold, pyold, Size, hauteur, largeur;
static Bool_t resize,turn;
Int_t dx, dy;
const char *text = GetTitle();
Int_t len = strlen(text);
Double_t sizetowin = gPad->GetAbsHNDC()*Double_t(gPad->GetWh());
Double_t fh = (fTextSize*sizetowin);
Int_t h = Int_t(fh/2);
Int_t w = h*len;
Short_t halign = fTextAlign/10;
Short_t valign = fTextAlign - 10*halign;
Double_t co, si, dtheta, norm;
static Bool_t droite;
static Double_t theta;
Int_t ax, ay, bx, by, cx, cy;
ax = ay = 0;
Double_t lambda, x2,y2;
Double_t dpx,dpy,xp1,yp1;
Int_t cBoxX[4], cBoxY[4], part;
if (!gPad->IsEditable()) return;
switch (event) {
case kButton1Down:
case kMouseMotion:
if (TestBit(kTextNDC)) {
px1 = gPad->UtoPixel(fX);
py1 = gPad->VtoPixel(fY);
} else {
px1 = gPad->XtoAbsPixel(gPad->XtoPad(fX));
py1 = gPad->YtoAbsPixel(gPad->YtoPad(fY));
}
theta = fTextAngle;
Size = 0;
pxold = px;
pyold = py;
co = TMath::Cos(fTextAngle*0.017453293);
si = TMath::Sin(fTextAngle*0.017453293);
resize = kFALSE;
turn = kFALSE;
GetControlBox(px1, py1, -theta, cBoxX, cBoxY);
part = (Int_t)(3*((px-cBoxX[0])*co-(py-cBoxY[0])*si)/
((cBoxX[3]-cBoxX[0])*co-(cBoxY[3]-cBoxY[0])*si));
switch (part) {
case 0:
if (halign == 3) {
turn = kTRUE;
droite = kTRUE;
gPad->SetCursor(kRotate);
} else {
resize = kTRUE;
hauteur = valign;
largeur = halign;
gPad->SetCursor(kArrowVer);
}
break;
case 1:
gPad->SetCursor(kMove);
break;
case 2:
if (halign == 3) {
resize = kTRUE;
hauteur = valign;
largeur = halign;
gPad->SetCursor(kArrowVer);
} else {
turn = kTRUE;
droite = kFALSE;
gPad->SetCursor(kRotate);
}
}
break;
case kButton1Motion:
PaintControlBox(px1, py1, -theta);
if (turn) {
norm = TMath::Sqrt(Double_t((py-py1)*(py-py1)+(px-px1)*(px-px1)));
if (norm>0) {
theta = TMath::ACos((px-px1)/norm);
dtheta= TMath::ASin((py1-py)/norm);
if (dtheta<0) theta = -theta;
theta = theta/TMath::ACos(-1)*180;
if (theta<0) theta += 360;
if (droite) {theta = theta+180; if (theta>=360) theta -= 360;}
}
}
else if (resize) {
co = TMath::Cos(fTextAngle*0.017453293);
si = TMath::Sin(fTextAngle*0.017453293);
if (largeur == 1) {
switch (valign) {
case 1 : ax = px1; ay = py1; break;
case 2 : ax = px1+Int_t(si*h/2); ay = py1+Int_t(co*h/2); break;
case 3 : ax = px1+Int_t(si*h*3/2); ay = py1+Int_t(co*h*3/2); break;
}
}
if (largeur == 2) {
switch (valign) {
case 1 : ax = px1-Int_t(co*w/2); ay = py1+Int_t(si*w/2); break;
case 2 : ax = px1-Int_t(co*w/2+si*h/2); ay = py1+Int_t(si*w/2+co*h/2); break;
case 3 : ax = px1-Int_t(co*w/2+si*h*3/2); ay = py1+Int_t(si*w/2+co*h*3/2); break;
}
}
if (largeur == 3) {
switch (valign) {
case 1 : ax = px1-Int_t(co*w); ay = py1+Int_t(si*w); break;
case 2 : ax = px1-Int_t(co*w+si*h/2); ay = py1+Int_t(si*w+co*h/2); break;
case 3 : ax = px1-Int_t(co*w+si*h*3/2); ay = py1+Int_t(si*w+co*h*3/2); break;
}
}
if (hauteur == 3) {bx = ax-Int_t(si*h); by = ay-Int_t(co*h);}
else {bx = ax; by = ay;}
cx = bx+Int_t(co*w); cy = by-Int_t(si*w);
lambda = Double_t(((px-bx)*(cx-bx)+(py-by)*(cy-by)))/Double_t(((cx-bx)*(cx-bx)+(cy-by)*(cy-by)));
x2 = Double_t(px) - lambda*Double_t(cx-bx)-Double_t(bx);
y2 = Double_t(py) - lambda*Double_t(cy-by)-Double_t(by);
Size = Int_t(TMath::Sqrt(x2*x2+y2*y2)*2);
if (Size<4) Size = 4;
SetTextSize(Size/sizetowin);
TAttText::Modify();
}
else {
dx = px - pxold; px1 += dx;
dy = py - pyold; py1 += dy;
}
PaintControlBox(px1, py1, -theta);
pxold = px; pyold = py;
break;
case kButton1Up:
if (TestBit(kTextNDC)) {
dpx = gPad->GetX2() - gPad->GetX1();
dpy = gPad->GetY2() - gPad->GetY1();
xp1 = gPad->GetX1();
yp1 = gPad->GetY1();
fX = (gPad->AbsPixeltoX(px1)-xp1)/dpx;
fY = (gPad->AbsPixeltoY(py1)-yp1)/dpy;
} else {
fX = gPad->PadtoX(gPad->AbsPixeltoX(px1));
fY = gPad->PadtoY(gPad->AbsPixeltoY(py1));
}
fTextAngle = theta;
gPad->Modified(kTRUE);
break;
case kButton1Locate:
ExecuteEvent(kButton1Down, px, py);
while (1) {
px = py = 0;
event = gVirtualX->RequestLocator(1, 1, px, py);
ExecuteEvent(kButton1Motion, px, py);
if (event != -1) {
ExecuteEvent(kButton1Up, px, py);
return;
}
}
}
}
void TText::GetControlBox(Int_t x, Int_t y, Double_t theta,
Int_t cBoxX[4], Int_t cBoxY[4])
{
Short_t halign = fTextAlign/10;
Short_t valign = fTextAlign - 10*halign;
UInt_t cBoxW, cBoxH;
UInt_t Dx = 0, Dy = 0;
GetBoundingBox(cBoxW, cBoxH);
switch (halign) {
case 1 : Dx = 0 ; break;
case 2 : Dx = cBoxW/2; break;
case 3 : Dx = cBoxW ; break;
}
switch (valign) {
case 1 : Dy = 0 ; break;
case 2 : Dy = cBoxH/2; break;
case 3 : Dy = cBoxH ; break;
}
cBoxX[0] = x-Dx;
cBoxY[0] = y+Dy;
cBoxX[1] = x-Dx;
cBoxY[1] = y-cBoxH+Dy;
cBoxX[2] = x+cBoxW-Dx;
cBoxY[2] = y-cBoxH+Dy;
cBoxX[3] = x+cBoxW-Dx;
cBoxY[3] = y+Dy;
if (theta) {
Double_t cosTheta = TMath::Cos(theta*0.017453293);
Double_t sinTheta = TMath::Sin(theta*0.017453293);
for (int i=0; i<4 ; i++) {
Int_t hcBoxX = cBoxX[i];
Int_t hcBoxY = cBoxY[i];
cBoxX[i] = (Int_t)((hcBoxX-x)*cosTheta-(hcBoxY-y)*sinTheta+x);
cBoxY[i] = (Int_t)((hcBoxX-x)*sinTheta+(hcBoxY-y)*cosTheta+y);
}
}
}
void TText::GetBoundingBox(UInt_t &w, UInt_t &h, Bool_t angle)
{
if (angle) {
Int_t cBoxX[4], cBoxY[4];
Int_t ptx, pty;
if (TestBit(kTextNDC)) {
ptx = gPad->UtoPixel(fX);
pty = gPad->VtoPixel(fY);
} else {
ptx = gPad->XtoAbsPixel(gPad->XtoPad(fX));
pty = gPad->YtoAbsPixel(gPad->YtoPad(fY));
}
GetControlBox(ptx, pty, fTextAngle, cBoxX, cBoxY);
Int_t x1 = cBoxX[0];
Int_t x2 = cBoxX[0];
Int_t y1 = cBoxY[0];
Int_t y2 = cBoxY[0];
for (Int_t i=1; i<4; i++) {
if (cBoxX[i] < x1) x1 = cBoxX[i];
if (cBoxX[i] > x2) x2 = cBoxX[i];
if (cBoxY[i] < y1) y1 = cBoxY[i];
if (cBoxY[i] > y2) y2 = cBoxY[i];
}
w = x2-x1;
h = y2-y1;
} else {
if (TTF::IsInitialized() || gPad->IsBatch()) {
TTF::GetTextExtent(w, h, (char*)GetTitle());
} else {
gVirtualX->GetTextExtent(w, h, (char*)GetTitle());
}
}
}
void TText::GetTextAscentDescent(UInt_t &a, UInt_t &d, const char *text) const
{
Double_t wh = (Double_t)gPad->XtoPixel(gPad->GetX2());
Double_t hh = (Double_t)gPad->YtoPixel(gPad->GetY1());
Double_t tsize;
if (wh < hh) tsize = fTextSize*wh;
else tsize = fTextSize*hh;
if (gVirtualX->HasTTFonts() || gPad->IsBatch()) {
TTF::SetTextFont(fTextFont);
TTF::SetTextSize(tsize);
a = TTF::GetBox().yMax;
d = TMath::Abs(TTF::GetBox().yMin);
} else {
UInt_t w;
gVirtualX->SetTextSize((int)tsize);
gVirtualX->GetTextExtent(w, a, (char*)text);
d = 0;
}
}
void TText::GetTextExtent(UInt_t &w, UInt_t &h, const char *text) const
{
Double_t wh = (Double_t)gPad->XtoPixel(gPad->GetX2());
Double_t hh = (Double_t)gPad->YtoPixel(gPad->GetY1());
Double_t tsize;
if (wh < hh) tsize = fTextSize*wh;
else tsize = fTextSize*hh;
if (gVirtualX->HasTTFonts() || gPad->IsBatch()) {
TTF::SetTextFont(fTextFont);
TTF::SetTextSize(tsize);
TTF::GetTextExtent(w, h, (char*)text);
} else {
gVirtualX->SetTextSize((int)tsize);
gVirtualX->GetTextExtent(w, h, (char*)text);
}
}
void TText::ls(Option_t *) const
{
TROOT::IndentLevel();
printf("Text X=%f Y=%f Text=%s\n",fX,fY,GetTitle());
}
void TText::Paint(Option_t *)
{
TAttText::Modify();
if (TestBit(kTextNDC)) gPad->PaintTextNDC(fX,fY,GetTitle());
else gPad->PaintText(gPad->XtoPad(fX),gPad->YtoPad(fY),GetTitle());
}
void TText::PaintControlBox(Int_t x, Int_t y, Double_t theta)
{
Int_t cBoxX[4], cBoxY[4];
Short_t halign = fTextAlign/10;
Short_t valign = fTextAlign - 10*halign;
GetControlBox(x, y, theta, cBoxX, cBoxY);
gVirtualX->SetLineStyle((Style_t)1);
gVirtualX->SetLineWidth(1);
gVirtualX->SetLineColor(1);
gVirtualX->DrawLine(cBoxX[0], cBoxY[0], cBoxX[1], cBoxY[1]);
gVirtualX->DrawLine(cBoxX[1], cBoxY[1], cBoxX[2], cBoxY[2]);
gVirtualX->DrawLine(cBoxX[2], cBoxY[2], cBoxX[3], cBoxY[3]);
gVirtualX->DrawLine(cBoxX[3], cBoxY[3], cBoxX[0], cBoxY[0]);
TPoint p;
Int_t ix = 0, iy = 0;
switch (halign) {
case 1 :
switch (valign) {
case 1 : ix = 0 ; iy = 0 ; break;
case 2 : ix = 0 ; iy = 1 ; break;
case 3 : ix = 1 ; iy = 1 ; break;
}
break;
case 2 :
switch (valign) {
case 1 : ix = 0 ; iy = 3 ; break;
case 2 : ix = 0 ; iy = 2 ; break;
case 3 : ix = 1 ; iy = 2 ; break;
}
break;
case 3 :
switch (valign) {
case 1 : ix = 3 ; iy = 3 ; break;
case 2 : ix = 2 ; iy = 3 ; break;
case 3 : ix = 2 ; iy = 2 ; break;
}
break;
}
p.fX = (cBoxX[ix]+cBoxX[iy])/2;
p.fY = (cBoxY[ix]+cBoxY[iy])/2;
gVirtualX->SetMarkerColor(1);
gVirtualX->SetMarkerStyle(24);
gVirtualX->SetMarkerSize(0.7);
gVirtualX->DrawPolyMarker(1, &p);
}
void TText::PaintText(Double_t x, Double_t y, const char *text)
{
TAttText::Modify();
gPad->PaintText(x,y,text);
}
void TText::PaintTextNDC(Double_t u, Double_t v, const char *text)
{
TAttText::Modify();
gPad->PaintTextNDC(u,v,text);
}
void TText::Print(Option_t *) const
{
printf("Text X=%f Y=%f Text=%s Font=%d Size=%f",fX,fY,GetTitle(),GetTextFont(),GetTextSize());
if (GetTextColor() != 1 ) printf(" Color=%d",GetTextColor());
if (GetTextAlign() != 10) printf(" Align=%d",GetTextAlign());
if (GetTextAngle() != 0 ) printf(" Angle=%f",GetTextAngle());
printf("\n");
}
void TText::SavePrimitive(ostream &out, Option_t * )
{
char quote = '"';
if (gROOT->ClassSaved(TText::Class())) {
out<<" ";
} else {
out<<" TText *";
}
TString s = GetTitle();
s.ReplaceAll("\"","\\\"");
out<<"text = new TText("<<fX<<","<<fY<<","<<quote<<s.Data()<<quote<<");"<<endl;
if (TestBit(kTextNDC)) out<<" text->SetNDC();"<<endl;
SaveTextAttributes(out,"text",11,0,1,62,0.05);
out<<" text->Draw();"<<endl;
}
void TText::SetNDC(Bool_t isNDC)
{
ResetBit(kTextNDC);
if (isNDC) SetBit(kTextNDC);
}
void TText::Streamer(TBuffer &R__b)
{
if (R__b.IsReading()) {
UInt_t R__s, R__c;
Version_t R__v = R__b.ReadVersion(&R__s, &R__c);
if (R__v > 1) {
R__b.ReadClassBuffer(TText::Class(), this, R__v, R__s, R__c);
return;
}
TNamed::Streamer(R__b);
TAttText::Streamer(R__b);
Float_t x,y;
R__b >> x; fX = x;
R__b >> y; fY = y;
} else {
R__b.WriteClassBuffer(TText::Class(),this);
}
}
Last change: Wed Jun 25 08:54:11 2008
Last generated: 2008-06-25 08:54
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.