ChronopicWindow.prepareChronopicConnection C# (CSharp) Method

prepareChronopicConnection() static private method

static private prepareChronopicConnection ( ) : void
return void
    void prepareChronopicConnection()
    {
        check_multitest_show.Sensitive = false;
        frame_connection.Visible = true;

        label_title.Text = Catalog.GetString("Please touch the platform or click Chronopic <i>TEST</i> button");
        label_title.UseMarkup = true;

        button_cancel.Sensitive = true;

        fakeConnectionButton = new Gtk.Button();
        fakeConnectionButton.Clicked += new EventHandler(on_chronopic_connection_ended);

        connecting = true;
        needUpdateChronopicWin = false;
        thread = new Thread(new ThreadStart(waitChronopicStart));
        GLib.Idle.Add (new GLib.IdleHandler (PulseGTK));

        LogB.ThreadStart();
        thread.Start();
    }