Logo ROOT   6.10/09
Reference Guide
CocoaGuiTypes.h
Go to the documentation of this file.
1 #ifndef ROOT_CocoaGuiTypes
2 #define ROOT_CocoaGuiTypes
3 
4 //This file extends ROOT's GuiTypes.h with additional types I need - Point/Rectangle which can use integers (not short integers).
5 //To be used in copy:xxxxx methods of X11Drawables and somewhere else.
6 //It's a shame I have to write such "classes" :))
7 
8 namespace ROOT {
9 namespace MacOSX {
10 namespace X11 {
11 
12 struct Point {
13  int fX;
14  int fY;
15 
16  Point();
17  Point(int x, int y);
18 };
19 
20 struct Rectangle {
21  int fX;
22  int fY;
23 
24  unsigned fWidth;
25  unsigned fHeight;
26 
27  Rectangle();
28  Rectangle(int x, int y, unsigned w, unsigned h);
29 };
30 
31 }//X11
32 }//MacOSX
33 }//ROOT
34 
35 #endif
Namespace for new ROOT classes and functions.
Definition: StringConv.hxx:21
TH1 * h
Definition: legend2.C:5
Double_t x[n]
Definition: legend1.C:17
Double_t y[n]
Definition: legend1.C:17