Exemplo n.º 1
0
        public MainWindow(Builder builder, IntPtr handle) : base(handle)
        {
            try
            {
                this._builder = builder;
                builder.Autoconnect(this);
                this.Title         = Names.ApplicationName;
                _progressbar1.Text = Names.ApplicationName;
                CodeWidget.Initialize();
                Box box = new Box(Orientation.Vertical, 0);
                _dock                 = new Dock();
                this._master          = (DockMaster)this._dock.Master;
                _master.SwitcherStyle = SwitcherStyle.Tabs;
                this._layout          = new DockLayout(this._dock);
                _layout.Master        = _master;
                this._bar             = new DockBar(this._dock);
                Box box2 = new Box(Orientation.Horizontal, 5);
                box.PackStart(box2, true, true, 0u);
                box2.PackStart(this._bar, false, false, 0u);
                box2.PackEnd(this._dock, true, true, 0u);
                DockItem dockItem = new DockItem("code1", "Code", Stock.Edit, DockItemBehavior.CantClose);
                dockItem.Grip.Hide();
                this._dock.AddItem(dockItem, DockPlacement.Center);
                this._dock.BorderWidth = 2u;
                CodeWidget.AddWelcomeTab(string.Format("Welcome to {0} !", Names.ApplicationName));
                dockItem.Add(this.GetCodePane());
                dockItem.ShowAll();

                DockItem dockItem4 = new DockItem("outputConsole", "Output", Stock.Execute, 0);
                this._dock.AddItem(dockItem4, DockPlacement.Bottom);
                dockItem4.Add(_outputWidget);
                dockItem4.ShowAll();

                DockItem dockItem2 = new DockItem("projectExplorer", "Project Explorer", Stock.Harddisk, 0);
                this._dock.AddItem(dockItem2, DockPlacement.Left);
                dockItem2.Add(this.CreateProjectExplorerPane());
                dockItem2.ShowAll();

                DockItem dockItem3 = new DockItem("properties", "Properties", Stock.Properties, 0);
                this._dock.AddItem(dockItem3, DockPlacement.Right);
                dockItem3.Add(this.CreatePropertiesPane());
                dockItem3.ShowAll();

                this.DeleteEvent += OnDeleteEvent;
                this.Add(box);
                this.Icon = Pixbuf.LoadFromResource("iCode.resources.images.icon.png");
                this._buildProjectAction.Activated += (sender, e) =>
                {
                    Task.Factory.StartNew(() =>
                    {
                        if (ProjectManager.BuildProject())
                        {
                            StateLabel.Text = "Build succeeded.";
                        }
                        else
                        {
                            StateLabel.Text = "Build failed.";
                        }
                    });
                };
                this._aboutICodeAction.Activated += (sender, e) => { AboutWindow.Create().ShowAll(); };

                ProjectManager.AddSensitiveWidget(_buildProjectAction);
                ProjectManager.AddSensitiveWidget(_button6);
                ProjectManager.AddSensitiveWidget(_button7);

                _label1.Text = Names.ApplicationName;

                this._button6.Clicked += (sender, e) => { ProjectManager.RunProject(); };
                Gtk.CssProvider nopad = new CssProvider();
                nopad.LoadFromData(@"
                widget
                { 
                    border-radius: 4px;
                    background: @borders;
                }
                progress, trough 
                {
                    border-bottom-right-radius: 4px;
                    border-bottom-left-radius: 4px;
                    min-height: 4px;
                }
                ");
                var layoutFile = System.IO.Path.Combine(Program.ConfigPath, "Layouts.xml");

                if (!File.Exists(layoutFile))
                {
                    _layout.SaveLayout("default_layout");
                    _layout.SaveToFile(layoutFile);
                }

                _layout.LoadFromFile(layoutFile);

                XDocument xdoc       = XDocument.Load(layoutFile);
                var       layoutList = xdoc.Elements().First().Elements().ToList();
                Dictionary <MenuItem, string> names = new Dictionary <MenuItem, string>();
                Menu menu = new Menu();

                var saveItem = new MenuItem();
                saveItem.Label      = "Save actual layout...";
                saveItem.Activated += (o, a) =>
                {
                    InputWindow input = InputWindow.Create();
                    input.Title = "Select name for the layout";
                    input.Run();
                    if (string.IsNullOrWhiteSpace(input.Text))
                    {
                        return;
                    }
                    Console.WriteLine($"Saving layout \"{input.Text}\"");
                    _layout.SaveLayout(input.Text);
                    var menuItem = new MenuItem();
                    menuItem.Label      = input.Text;
                    menuItem.Activated += (o, a) => { _layout.LoadLayout(input.Text); };
                    menu.Append(menuItem);
                };
                menu.Append(saveItem);

                foreach (var a in layoutList)
                {
                    var menuItem = new MenuItem();
                    var name     = a.Attributes().First(x => x.Name == "name").Value;
                    names.Add(menuItem, name);
                    menuItem.Label      = name;
                    menuItem.Activated += (o, a) =>
                    {
                        Console.WriteLine($"Loading layout {names[menuItem]}");
                        _layout.LoadLayout(names[menuItem]);
                    };
                    menu.Append(menuItem);

                    if (name == "__default_")
                    {
                        this.ShowAll();
                        _layout.LoadLayout(name);
                    }
                }

                _layoutAction.Submenu = menu;

                if (Program.UpdateAvailable)
                {
                    var updateMenu = new MenuItem();
                    var itemMenu   = new Menu();
                    var item       = new MenuItem();

                    updateMenu.Label      = "Update iCode in background";
                    updateMenu.Activated += (sender, args) =>
                    {
                        Gtk.Application.Invoke((o, a) =>
                        {
                            itemMenu.Remove(updateMenu);
                            item.Label = "Update in progress...";
                        });

                        Task.Factory.StartNew(() =>
                        {
                            var outp = iCode.Utils.Extensions.LaunchProcess(
                                System.IO.Path.Combine(System.IO.Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location),
                                                       "Updater"), $"\"{Program.AppImagePath}\"", out int ret);
                            if (ret == 0)
                            {
                                Gtk.Application.Invoke((o, a) =>
                                {
                                    item.Label = "Update completed.";
                                });
                            }
                            else
                            {
                                Gtk.Application.Invoke((o, a) =>
                                {
                                    item.Label = "Update failed.";
                                });
                            }
                        });
                    };

                    itemMenu.Append(updateMenu);
                    item.Label = "Update available";

                    item.Submenu = itemMenu;
                    _menuBar.Append(item);
                }

                _statusBox.ButtonPressEvent += (o, args) =>
                {
                    // Here it will redirect to the future error pane, but I need to fix signing first
                };

                _statusBox.StyleContext.AddProvider(nopad, 1);
                _progressbar1.StyleContext.AddProvider(nopad, 1);
                _createProjectAction.Activated += CreateProject;
                _openProjectAction.Activated   += LoadProjectActivated;
                // var b = layout.LoadFromFile(System.IO.Path.Combine(Program.ConfigPath, "layouts/saved.layout"));
                // Console.WriteLine("Fail or success ? It's " + b + " !");
            }
            catch (Exception e)
            {
                ExceptionWindow.Create(e, this).ShowAll();
            }
        }