namespace Core.Common.Gui
{
///
/// Handles all common high-level commands in the graphical user interface invoked via menu / toolbar.
///
public interface IGuiCommandHandler
{
///
/// Activates the propertyGrid toolbox
///
///
void ShowPropertiesFor(object obj);
///
/// Indicates if there is a property view object for the current .
///
///
/// true if a property view is defined, false otherwise.
bool CanShowPropertiesFor(object obj);
void OpenLogFileExternal();
}
}