using System; using System.Collections.Generic; using System.Text; namespace OSGeo.MapGuide.Viewer { /// /// Represents a component that can receive viewer status messages /// public interface IMapStatusBar : IMapViewerComponent { /// /// Sets the message for the current cursor position /// /// void SetCursorPositionMessage(string message); /// /// Sets the message for the number of features selected /// /// void SetFeatureSelectedMessage(string message); /// /// Sets the message for the map scale /// /// void SetMapScaleMessage(string message); /// /// Sets the message for the map size /// /// void SetMapSizeMessage(string message); } }