示例#1
0
文件: run.cs 项目: GNOME/chronojump
 void on_jumps_runs_more_delete_event(object o, DeleteEventArgs args)
 {
     RunsIntervalMoreWindowBox.jumps_runs_more.Hide();
     RunsIntervalMoreWindowBox = null;
 }
示例#2
0
文件: run.cs 项目: GNOME/chronojump
 void on_button_cancel_clicked(object o, EventArgs args)
 {
     RunsIntervalMoreWindowBox.jumps_runs_more.Hide();
     RunsIntervalMoreWindowBox = null;
 }
示例#3
0
文件: run.cs 项目: GNOME/chronojump
 //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;
 }
示例#4
0
文件: run.cs 项目: GNOME/chronojump
    public static RunsIntervalMoreWindow Show(Gtk.Window parent, bool testOrDelete)
    {
        if (RunsIntervalMoreWindowBox == null) {
            RunsIntervalMoreWindowBox = new RunsIntervalMoreWindow (parent, testOrDelete);
        }
        RunsIntervalMoreWindowBox.jumps_runs_more.Show ();

        return RunsIntervalMoreWindowBox;
    }
示例#5
0
 private void on_run_type_delete_intervallic(object o, EventArgs args)
 {
     runsIntervalMoreWin = RunsIntervalMoreWindow.Show(app1, false); //delete run type
 }
示例#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);
 }