Esempio n. 1
0
 public void StartLogViewer()
 {
     if (DebugWorker.GetNewDebugWorker()._autoStartLog)
     {
         DebugWorker.GetNewDebugWorker().dbgLogger.view.StartLogViewer();
     }
 }
Esempio n. 2
0
 private void KeppySynthDebugWindow_Load(object sender, EventArgs e)
 {
     Driver = FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\keppysynth\\keppysynth.dll"); // Gets Keppy's Synthesizer version
     CurrentKSVer.ToolTipTitle = String.Format("Keppy's Synthesizer {0}", Driver.FileVersion);
     CurrentKSVer.SetToolTip(KSLogo, Credits);
     CurrentKSVer.SetToolTip(KSLogoVoc, Credits);
     CurrentKSVer.SetToolTip(VersionLabel, Credits);
     VersionLabel.Text = String.Format("Keppy's Synthesizer {0}", Driver.FileVersion);
     GetWindowsInfoData();                 // Get info about your Windows installation
     SynthDbg.ContextMenu      = MainCont; // Assign ContextMenu (Not the strip one) to the tab
     ChannelVoices.ContextMenu = MainCont; // Assign ContextMenu (Not the strip one) to the tab
     PCSpecs.ContextMenu       = MainCont; // Assign ContextMenu (Not the strip one) to the tab
     DebugWorker.RunWorkerAsync();         // Creates a thread to show the info
 }
Esempio n. 3
0
 public void SetParent(DebugWorker parent)
 {
     _parent = parent;
 }