Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_CampaignMapUIElement.c
Go to the documentation of this file.
1//------------------------------------------------------------------------------
3{
4 // strings for searching in imagesets
5 [Attribute("Armory")]
6 protected string m_sArmory;
7 [Attribute("FuelDepot")]
8 protected string m_sFuelDepot;
9 [Attribute("LightVehicleDepot")]
10 protected string m_sLightVehicleDepot;
11 [Attribute("HeavyVehicleDepot")]
12 protected string m_sHeavyVehicleDepot;
13 [Attribute("RadioAntenna")]
14 protected string m_sRadioAntenna;
15 [Attribute("Medical")]
16 protected string m_sFieldHospital;
17 [Attribute("Barracks")]
18 protected string m_sBarracks;
19 [Attribute("SupplyDepot")]
20 protected string m_sSupplyDepot;
21 [Attribute("VehicleDepot")]
22 protected string m_sVehicleDepot;
23 [Attribute("Heli_Pad")]
24 protected string m_sHelipad;
25 [Attribute("Unknown")]
26 protected string m_sFactionNeutral;
27 [Attribute("Relay")]
28 protected string m_sRelay;
29 [Attribute("Base")]
30 protected string m_sBase;
31 [Attribute("SourceBase")]
32 protected string m_sSourceBase;
33 [Attribute("Mobile")]
34 protected string m_sMobileAssembly;
35 [Attribute("Major")]
36 protected string m_sMajorBase;
37 [Attribute("Minor")]
38 protected string m_sMinorBase;
39 [Attribute("Small")]
40 protected string m_sSmallBase;
41 [Attribute("Respawn")]
42 protected string m_sRespawn;
43 [Attribute("Bg")]
44 protected string m_sRespawnBackground;
45 [Attribute("Select")]
46 protected string m_sSelection;
47
48 [Attribute("{F7E8D4834A3AFF2F}UI/Imagesets/Conflict/conflict-icons-bw.imageset")]
50
51 //------------------------------------------------------------------------------
52 override void HandlerAttached(Widget w)
53 {
54 super.HandlerAttached(w);
55 }
56
57 //------------------------------------------------------------------------------
58 override bool OnMouseEnter(Widget w, int x, int y)
59 {
60 super.OnMouseEnter(w, x, y);
61 return false;
62 }
63
64 override void SetImage(string image)
65 {
66 if (m_wImage)
67 m_bVisible = m_wImage.LoadImageFromSet(0, m_sImageSet, image);
68 }
69};
override bool OnMouseEnter(Widget w, int x, int y)
override void SetImage(string image)
override void HandlerAttached(Widget w)
SCR_FieldOfViewSettings Attribute