// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        public ProfileHandler(UIForm1 arg)
        {
            ui = arg;
            ui.log("ProfileHandler()");

            cbProfiles = ui.getProfilesCB();
            cbProfiles.SelectionChangeCommitted += new System.EventHandler(profileSelectionChangeHandler);
            getProfiles();
        }
        public FormNewCommand(UIForm1 arg)
        {
            InitializeComponent();
            ui = arg;

            items = new List <ItemVO>();
            items.Add(new ItemVO("Windows clipboard", 0));
            items.Add(new ItemVO("Key press", 1));
            items.Add(new ItemVO("Automated typing", 2));
            items.Add(new ItemVO("Run application", 3));

            cbCommandType.DataSource    = items;
            cbCommandType.DisplayMember = "Name";
            cbCommandType.ValueMember   = "Id";

            cbCommandTypeChangeHandler(null, null);
            cbCommandType.SelectionChangeCommitted += new System.EventHandler(cbCommandTypeChangeHandler);
        }
Esempio n. 3
0
 public FormKey(UIForm1 arg)
 {
     InitializeComponent();
     ui = arg;
 }
 public FormManager(UIForm1 arg)
 {
     ui = arg;
 }
 public WindowHandler(UIForm1 arg)
 {
     ui = arg;
     ui.log("WindowHandler()");
 }
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -


        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        public Recognizer(UIForm1 arg)
        {
            ui = arg;
            ui.log("Recognizer()");
        }
Esempio n. 7
0
 public FormAutoType(UIForm1 arg)
 {
     InitializeComponent();
     ui = arg;
 }
 public FormApplication(UIForm1 arg)
 {
     InitializeComponent();
     ui = arg;
 }
 public GrammarHandler(UIForm1 arg)
 {
     ui = arg;
     ui.log("GrammarHandler()");
 }
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        public CommandHandler(UIForm1 arg)
        {
            ui = arg;
            ui.log("CommandHandler()");
        }
 public FormClipboard(UIForm1 arg)
 {
     InitializeComponent();
     ui = arg;
 }