public void updateViewer(VideoSource v) { if (v.Options.UseGlobal) { v.ViewerOpacity = globalOpacity; v.Options.EnableRecording = globalEnableRecording; v.Options.RecordFolder = globalRecordFolder; v.Options.EnableAlertSound = globalEnableAlertSound; v.Options.AlertSoundFile = globalAlertSoundFile; v.Options.Codec = globalCodec; v.Options.EnableAlwaysShow = globalEnableAlwaysShow; v.Options.EnableMotionAlert = globalEnableMotionAlert; v.Options.DetectorType = globalDetectorType; } }
private void mjpegToolStripMenuItem_Click(object sender, EventArgs e) { URLForm form = new URLForm(); form.Description = "Enter URL of an updating JPEG from a web camera"; //Load recent URLs String[] urls = new String[recentURLs.Count]; recentURLs.CopyTo(urls, 0); form.URLs = urls; form.StartPosition = FormStartPosition.CenterScreen; if (form.ShowDialog(this) == DialogResult.OK) { //remove existing item (so it will be placed at top of list) if (recentURLs.Contains(form.URL)) { recentURLs.Remove(form.URL); } //update recent URLs if (recentURLs.Count == RECENT_URL_LIMIT) { recentURLs.RemoveAt(RECENT_URL_LIMIT - 1); } recentURLs.Add(form.URL); //open the stream String sourceName = showGetSourceNameBox(); if (sourceName != null) //user didn't select cancel { MJPEGStream s = new MJPEGStream(); s.Source = form.URL; Log.info(String.Format("Video source: {0}", s.Source)); VideoSource v = new VideoSource(sourceName, s); sources.Add(v); v.RemoveSelected += new VideoSource.RemoveEventHandler(r_RemoveSelected); v.setViewerGlobalStickey(showAllToolStripMenuItem.Checked); globalOptions.updateViewer(v); v.startCamera(); //start camera by default } } }