18 namespace GUITutorials {
26 virtual void InitMap();
27 virtual void InitRU();
28 virtual void InitUS();
30 virtual void InitAU();
31 virtual void InitFR();
32 virtual void InitUK();
40 kRU = 7, kUS = 1, kFR = 33, kDE = 49, kCH = 41, kCN = 86, kAU = 61,
41 kUK = 44, kUA = 380, kBR = 55
44 WorldMap(
const char *picName =
"worldmap.jpg");
45 virtual ~WorldMap() {}
47 virtual void Show() { fMain->
MapRaised(); }
48 TGImageMap* GetImageMap()
const {
return fImageMap; }
49 virtual TString GetTitle()
const;
52 void PrintCode(
Int_t code);
57 WorldMap::WorldMap(
const char* picName)
73 fImageMap->
Connect(
"RegionClicked(Int_t)",
"WorldMap",
this,
78 TString WorldMap::GetTitle()
const 82 return "Country Code (left button). City/Area Codes (right button)";
86 void WorldMap::InitRU()
90 int x[12] = { 403, 406, 427, 444, 438, 470, 508, 568, 599, 632, 645, 493 };
91 int y[12] = { 68, 90, 120, 125, 109, 94, 109, 101, 122, 107, 74, 46 };
93 fImageMap->AddRegion(reg, kRU);
94 fImageMap->SetToolTipText(kRU,
"Russia");
99 pm->
AddEntry(
"Protvino = 0967", 967);
100 pm->
AddEntry(
"St.Petersburg = 812", 812);
104 void WorldMap::InitUS()
108 int x[5] = { 136, 122, 165, 194, 232 };
109 int y[5] = { 110, 141, 158, 160, 118 };
111 fImageMap->AddRegion(reg, kUS);
113 int alaskaX[4] = { 86, 131, 154, 117 };
114 int alaskaY[4] = { 90, 82, 64, 63 };
115 TGRegion alaska(4, alaskaX, alaskaY);
116 fImageMap->AddRegion(alaska, kUS);
117 fImageMap->SetToolTipText(kUS,
"USA");
122 pm->
AddEntry(
"Illinois = 217", 217);
123 pm->
AddEntry(
"New York = 212", 212);
127 void WorldMap::InitFR()
131 int x[5] = { 349, 353, 368, 368, 358 };
132 int y[5] = { 112, 123, 119, 108, 107 };
134 fImageMap->AddRegion(reg, kFR);
135 fImageMap->SetToolTipText(kFR,
"France");
139 void WorldMap::InitUK()
143 int x[4] = { 346, 348, 359, 352 };
144 int y[4] = { 93, 104, 103, 87 };
146 fImageMap->AddRegion(reg, kUK);
147 fImageMap->SetToolTipText(kUK,
"United Kingdom");
151 void WorldMap::InitAU()
155 int x[6] = { 582, 576, 634, 658, 641, 607 };
156 int y[6] = { 271, 300, 310, 283, 251, 253 };
158 fImageMap->AddRegion(reg, kAU);
159 fImageMap->SetToolTipText(kAU,
"Australia");
163 void WorldMap::InitMap()
172 fImageMap->SetToolTipText(GetTitle().
Data(), 300);
176 void WorldMap::PrintCode(
Int_t code)
185 "Country Code",
Form(
"Country Code=%d",code),
186 icontype, buttons, &retval);
194 namespace GUI = ROOT::GUITutorials;
195 GUI::WorldMap *map =
new GUI::WorldMap;
virtual void Resize(UInt_t w=0, UInt_t h=0)
Resize the frame.
Namespace for new ROOT classes and functions.
void SetWindowName(const char *name=0)
Set window name. This is typically done via the window manager.
void SetIconName(const char *name)
Set window icon name. This is typically done via the window manager.
std::vector< std::vector< double > > Data
Bool_t Connect(const char *signal, const char *receiver_class, void *receiver, const char *slot)
Non-static method is used to connect from the signal of this object to the receiver slot...
virtual TGDimension GetDefaultSize() const
std::cout << fWidth << "x" << fHeight << std::endl;
char * Form(const char *fmt,...)
virtual void AddFrame(TGFrame *f, TGLayoutHints *l=0)
Add frame to the composite frame using the specified layout hints.
virtual void MapSubwindows()
Map all sub windows that are part of the composite frame.