Warning, file /include/root/TFrame.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef ROOT_TFrame
0013 #define ROOT_TFrame
0014
0015
0016 #include "TWbox.h"
0017
0018
0019 class TFrame : public TWbox {
0020
0021
0022 public:
0023 TFrame();
0024 TFrame(Double_t x1, Double_t y1,Double_t x2 ,Double_t y2);
0025 TFrame(const TFrame &frame);
0026 ~TFrame() override;
0027 void Copy(TObject &frame) const override;
0028 void Draw(Option_t *option="") override;
0029 void ExecuteEvent(Int_t event, Int_t px, Int_t py) override;
0030 void Paint(Option_t *option="") override;
0031 void Pop() override;
0032 void SavePrimitive(std::ostream &out, Option_t *option = "") override;
0033 void UseCurrentStyle() override;
0034
0035 ClassDefOverride(TFrame,1)
0036 };
0037
0038 #endif
0039