//draw an object only if checkList is empty or all true;
        public void Scan(Gtk.Widget widget)
        {
            widget.HideAll();
            if ((CheckList.Capacity == 0) || (!CheckList.Contains(false)))
            {
                widget.ShowAll();
            }

            return;
        }