Example #1
0
 internal void IniWriteValues(XmlDocument xmlDocument)
 {
     SetParams(xmlDocument);
     this.mouseCoordinator = new MouseCoordinator();
     mouseCoordinator.ShowDialog();
     IniRemotePic(xmlDocument);
     CheckNextVal();
 }
Example #2
0
 public AppCoordinator(AppForm appForm)
 {
     _appForm = appForm;
     keyboardMouseSimulator   = new KeyboardMouseSimulator(this);
     cursorIconManager        = new CursorIconManager(this);
     xmlModifier              = new XMLModifier(this);
     hexListener              = new HexListener(this);
     userCommandsListener     = new UserCommandsListener(this);
     mouseEventListener       = new MouseEventListener(this);
     mouseCoordinator         = new MouseCoordinator();
     recordWindowErrorHandler = new RecordWindowErrorHandler(this);
     this.textToSpeech        = new TextToSpeechHelper();
     javaKiller = new JavaKiller();
     hexWindow  = new HexWindow(this);
 }