/usr/include/root/TGSpeedo.h is in libroot-gui-dev 5.34.30-0ubuntu8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | // @(#)root/gui:$Id: TGSpeedo.h
// Author: Bertrand Bellenot 26/10/06
/*************************************************************************
* Copyright (C) 1995-2006, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#ifndef ROOT_TGSpeedo
#define ROOT_TGSpeedo
//////////////////////////////////////////////////////////////////////////
// //
// TGSpeedo //
// //
// TGSpeedo is a widget looking like a speedometer, with a needle, //
// a counter and a small odometer window. //
// //
// Three thresholds are configurable, with their glowing color //
// A peak mark can be enabled, allowing to keep track of the highest //
// value displayed. The mark can be reset by right-clicking on the //
// widget. //
// Two signals are available: //
// OdoClicked(): when user click on the small odometer window //
// LedClicked(): when user click on the small led near the counter //
// //
//////////////////////////////////////////////////////////////////////////
#ifndef ROOT_TGFrame
#include "TGFrame.h"
#endif
#ifndef ROOT_TGWidget
#include "TGWidget.h"
#endif
#ifndef ROOT_TGPicture
#include "TGPicture.h"
#endif
#ifndef ROOT_TImage
#include "TImage.h"
#endif
class TGSpeedo : public TGFrame, public TGWidget {
public:
enum EGlowColor { kNoglow, kGreen, kOrange, kRed };
protected:
TImage *fImage; // image used as background
TImage *fImage2; // intermediate image used as background
const TGPicture *fBase; // picture used as background
FontStruct_t fTextFS, fCounterFS; // font structures for text rendering
Int_t fCounter; // small odo meter (4 digits)
TString fPicName; // name of picture used as background
TString fLabel1; // main label (first line)
TString fLabel2; // main label (second line)
TString fDisplay1; // first line in the small display
TString fDisplay2; // second line in the small display
Float_t fAngle, fValue; // needle angle and corresponding value
Float_t fPeakVal; // maximum peak mark
Float_t fMeanVal; // mean value mark
Float_t fAngleMin, fAngleMax; // needle min and max angle
Float_t fScaleMin, fScaleMax; // needle min and max scale
Float_t fThreshold[3]; // glowing thresholds
EGlowColor fThresholdColor[3]; // glowing threshold colors
Bool_t fThresholdActive; // kTRUE if glowing threhsholds are active
Bool_t fPeakMark; // kTRUE if peak mark is active
Bool_t fMeanMark; // kTRUE if mean mark is active
virtual void DoRedraw();
void DrawNeedle();
void DrawText();
void Translate(Float_t val, Float_t angle, Int_t *x, Int_t *y);
public:
TGSpeedo(const TGWindow *p = 0, int id = -1);
TGSpeedo(const TGWindow *p, Float_t smin, Float_t smax,
const char *lbl1 = "", const char *lbl2 = "",
const char *dsp1 = "", const char *dsp2 = "", int id = -1);
virtual ~TGSpeedo();
virtual TGDimension GetDefaultSize() const;
virtual Bool_t HandleButton(Event_t *event);
const TGPicture *GetPicture() const { return fBase; }
TImage *GetImage() const { return fImage; }
Float_t GetPeakVal() const { return fPeakVal; }
Float_t GetScaleMin() const { return fScaleMin; }
Float_t GetScaleMax() const { return fScaleMax; }
Bool_t IsThresholdActive() { return fThresholdActive; }
void Build();
void Glow(EGlowColor col = kGreen);
void StepScale(Float_t step);
void SetScaleValue(Float_t val);
void SetScaleValue(Float_t val, Int_t damping);
void SetOdoValue(Int_t val);
void SetDisplayText(const char *text1, const char *text2 = "");
void SetLabelText(const char *text1, const char *text2 = "");
void SetMinMaxScale(Float_t min, Float_t max);
void SetThresholds(Float_t th1 = 0.0, Float_t th2 = 0.0, Float_t th3 = 0.0)
{ fThreshold[0] = th1; fThreshold[1] = th2; fThreshold[2] = th3; }
void SetThresholdColors(EGlowColor col1, EGlowColor col2, EGlowColor col3)
{ fThresholdColor[0] = col1; fThresholdColor[1] = col2; fThresholdColor[2] = col3; }
void EnableThreshold() { fThresholdActive = kTRUE; }
void DisableThreshold() { fThresholdActive = kFALSE; Glow(kNoglow); fClient->NeedRedraw(this);}
void EnablePeakMark() { fPeakMark = kTRUE; }
void DisablePeakMark() { fPeakMark = kFALSE; }
void EnableMeanMark() { fMeanMark = kTRUE; }
void DisableMeanMark() { fMeanMark = kFALSE; }
void ResetPeakVal() { fPeakVal = fValue; fClient->NeedRedraw(this); }
void SetMeanValue(Float_t mean) { fMeanVal = mean; fClient->NeedRedraw(this); }
void OdoClicked() { Emit("OdoClicked()"); } // *SIGNAL*
void LedClicked() { Emit("LedClicked()"); } // *SIGNAL*
ClassDef(TGSpeedo,0) // Base class for analog meter widget
};
#endif
|