Exemplo n.º 1
0
 public void FireLegendMouseUpEvent(int Handle, int Button, MapWindow.Interfaces.ClickLocation Location, ref bool Handled)
 {
     if (m_LegendMouseUp != null)
     {
         m_LegendMouseUp(Handle, Button, Location, ref Handled);
     }
 }
Exemplo n.º 2
0
 public void FireLegendDoubleClickEvent(int Handle, MapWindow.Interfaces.ClickLocation Location, ref bool Handled)
 {
     if (m_LegendDoubleClick != null)
     {
         m_LegendDoubleClick(Handle, Location, ref Handled);
     }
 }
        public void LegendDoubleClickTest()
        {
            MapWindow.PluginTracker target = new PluginTracker();                                   // TODO: Initialize to an appropriate value
            int LayerHandle = 0;                                                                    // TODO: Initialize to an appropriate value

            MapWindow.Interfaces.ClickLocation Location = new MapWindow.Interfaces.ClickLocation(); // TODO: Initialize to an appropriate value
            bool expected = false;                                                                  // TODO: Initialize to an appropriate value
            bool actual;

            actual = target.LegendDoubleClick(LayerHandle, Location);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void LegendMouseDownTest()
        {
            Plugins_IBasePlugin target = new Plugins_IBasePlugin();                                 // TODO: Initialize to an appropriate value
            int Handle = 0;                                                                         // TODO: Initialize to an appropriate value
            int Button = 0;                                                                         // TODO: Initialize to an appropriate value

            MapWindow.Interfaces.ClickLocation Location = new MapWindow.Interfaces.ClickLocation(); // TODO: Initialize to an appropriate value
            bool expected = false;                                                                  // TODO: Initialize to an appropriate value
            bool actual;

            actual = target.LegendMouseDown(Handle, Button, Location);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Exemplo n.º 5
0
 public void LegendMouseUp(int Handle, int Button, MapWindow.Interfaces.ClickLocation Location, ref bool Handled)
 {
 }
Exemplo n.º 6
0
 public void LegendDoubleClick(int Handle, MapWindow.Interfaces.ClickLocation Location, ref bool Handled)
 {
 }