using System; using System.Drawing; using System.Windows.Forms; namespace OpenDBDiff.Abstractions.Ui { public interface IFront : ICloneable { Point Location { get; set; } string Name { get; set; } Size Size { get; set; } int TabIndex { get; set; } bool Visible { get; set; } DockStyle Dock { get; set; } Boolean TestConnection(); string ConnectionString { get; set; } string ErrorConnection { get; } string DatabaseName { get; } string Text { get; set; } AnchorStyles Anchor { get; set; } Control Control { get; } void SetSettingsFrom(IFront other); } }