コード例 #1
0
		public WelcomePageFrame (Gtk.Widget w)
		{
			VBox box = new VBox ();
			box.Show ();
			projectBar = new WelcomePageProjectBar ();
			box.PackStart (projectBar, false, false, 0);

			box.PackStart (w, true, true, 0);
			CanFocus = true;

			Add (box);
			Show ();
			UpdateProjectBar ();
		}
コード例 #2
0
        public WelcomePageFrame(Gtk.Widget w)
        {
            VBox box = new VBox();

            box.Show();
            projectBar = new WelcomePageProjectBar();
            box.PackStart(projectBar, false, false, 0);

            box.PackStart(w, true, true, 0);
            CanFocus = true;

            Add(box);
            Show();
            UpdateProjectBar();
        }
コード例 #3
0
		public WelcomePageFrame (Gtk.Widget w)
		{
			VBox box = new VBox ();
			box.Show ();
			projectBar = new WelcomePageProjectBar ();
			box.PackStart (projectBar, false, false, 0);

			box.PackStart (w, true, true, 0);
			CanFocus = true;

			Add (box);
			Show ();
			UpdateProjectBar ();

			IdeApp.Workbench.GuiLocked += HandleGuiLocked;
			IdeApp.Workbench.GuiUnlocked += HandleGuiUnlocked;
		}
コード例 #4
0
        public WelcomePageFrame(Gtk.Widget w)
        {
            VBox box = new VBox();

            box.Show();
            projectBar = new WelcomePageProjectBar();
            box.PackStart(projectBar, false, false, 0);

            box.PackStart(w, true, true, 0);
            CanFocus = true;

            Add(box);
            Show();
            UpdateProjectBar();

            IdeApp.Workbench.GuiLocked   += HandleGuiLocked;
            IdeApp.Workbench.GuiUnlocked += HandleGuiUnlocked;
        }
コード例 #5
0
        public WelcomePageFrame(Gtk.Widget w)
        {
            Accessible.Name = "WelcomePageFrame";
            welcomePage     = w;
            VBox box = new VBox();

            box.Accessible.SetShouldIgnore(true);

            box.Show();
            projectBar = new WelcomePageProjectBar();
            box.PackStart(projectBar, false, false, 0);

            box.PackStart(welcomePage, true, true, 0);
            CanFocus = true;

            Add(box);
            Show();
            UpdateProjectBar();

            IdeApp.Workbench.GuiLocked   += HandleGuiLocked;
            IdeApp.Workbench.GuiUnlocked += HandleGuiUnlocked;
        }