Esempio n. 1
0
		void HandleRemoved (object o, RemovedArgs args)
		{
			Gtk.Widget w = args.Widget;
			w.ButtonPressEvent -= OnTabPress;
			if (currentTab >= box.Children.Length)
				currentTab = box.Children.Length - 1;
		}
Esempio n. 2
0
 void Window_Removed(object o, RemovedArgs args)
 {
     Console.WriteLine("GtkProgram.Window_Removed()");
     Application.Quit();
     //throw new NotImplementedException();
 }
Esempio n. 3
0
 void HandleRemoved (object o, RemovedArgs args)
 {
     UntrackLeaveEvent (args.Widget);
 }
Esempio n. 4
0
 protected void AfterClicked(object o, RemovedArgs args)
 {
     throw new NotImplementedException ();
 }
		/// <summary>
		/// Handles the deletion of a sibling.
		/// </summary>
		private void OnContainerRemoved(object sender, RemovedArgs args)
		{			
			CheckPosition();
		}
Esempio n. 6
0
 private void OnFrameWidgetRemoved (object o, RemovedArgs args)
 {
     if (adjustable != null && adjustable == args.Widget) {
         Hadjustment = null;
         Vadjustment = null;
         adjustable = null;
     }
 }