Exemplo n.º 1
0
 void on_jumps_runs_more_delete_event(object o, DeleteEventArgs args)
 {
     RunsIntervalMoreWindowBox.jumps_runs_more.Hide();
     RunsIntervalMoreWindowBox = null;
 }
Exemplo n.º 2
0
 void on_button_cancel_clicked(object o, EventArgs args)
 {
     RunsIntervalMoreWindowBox.jumps_runs_more.Hide();
     RunsIntervalMoreWindowBox = null;
 }
Exemplo n.º 3
0
 //when a runInterval is done using runsIntervalMoreWindow, the accept doesn't destroy this instance, because
 //later we need data from it.
 //This is used for destroying, then if a new runInterval type is added, it will be shown at first time clicking "more" button
 public void Destroy()
 {
     RunsIntervalMoreWindowBox = null;
 }
Exemplo n.º 4
0
    public static RunsIntervalMoreWindow Show(Gtk.Window parent, bool testOrDelete)
    {
        if (RunsIntervalMoreWindowBox == null) {
            RunsIntervalMoreWindowBox = new RunsIntervalMoreWindow (parent, testOrDelete);
        }
        RunsIntervalMoreWindowBox.jumps_runs_more.Show ();

        return RunsIntervalMoreWindowBox;
    }
Exemplo n.º 5
0
 private void on_run_type_delete_intervallic(object o, EventArgs args)
 {
     runsIntervalMoreWin = RunsIntervalMoreWindow.Show(app1, false); //delete run type
 }
Exemplo n.º 6
0
 private void on_run_type_delete_intervallic(object o, EventArgs args)
 {
     runsIntervalMoreWin = RunsIntervalMoreWindow.Show(app1, false); //delete run type
     runsIntervalMoreWin.Button_deleted_test.Clicked += new EventHandler(on_deleted_run_i_type);
 }