Example #1
0
        private void extCheckBoxStar_Click(object sender, EventArgs e)
        {
            if (extCheckBoxStar.Checked == true)
            {
                ExtendedControls.ConfigurableForm f = new ExtendedControls.ConfigurableForm();
                int width = 500;
                f.Add(new ExtendedControls.ConfigurableForm.Entry("L", typeof(Label), "System:".T(EDTx.UserControlEDSM_System), new Point(10, 40), new Size(110, 24), null));
                f.Add(new ExtendedControls.ConfigurableForm.Entry("Sys", typeof(ExtendedControls.ExtTextBoxAutoComplete), "", new Point(120, 40), new Size(width - 120 - 20, 24), null));

                f.AddOK(new Point(width - 20 - 80, 80));
                f.AddCancel(new Point(width - 200, 80));

                f.Trigger += (dialogname, controlname, tag) =>
                {
                    if (controlname == "OK" || controlname == "Cancel" || controlname == "Close")
                    {
                        f.ReturnResult(controlname == "OK" ? DialogResult.OK : DialogResult.Cancel);
                    }
                    else if (controlname == "Sys:Return")
                    {
                        if (f.Get("Sys").HasChars())
                        {
                            f.ReturnResult(DialogResult.OK);
                        }

                        f.SwallowReturn = true;
                    }
                };

                f.InitCentred(this.FindForm(), this.FindForm().Icon, "Show System".T(EDTx.UserControlEDSM_EnterSys), null, null, closeicon: true);
                f.GetControl <ExtendedControls.ExtTextBoxAutoComplete>("Sys").SetAutoCompletor(SystemCache.ReturnSystemAutoCompleteList, true);
                DialogResult res = f.ShowDialog(this.FindForm());

                if (res == DialogResult.OK)
                {
                    string sname = f.Get("Sys");
                    if (sname.HasChars())
                    {
                        override_system = new EliteDangerousCore.SystemClass(sname);
                        PresentSystem(override_system);
                        extCheckBoxStar.Checked = true;
                    }
                    else
                    {
                        extCheckBoxStar.Checked = false;
                    }
                }
                else
                {
                    extCheckBoxStar.Checked = false;
                }
            }
            else
            {
                override_system = null;
                PresentSystem(last_sys);
                extCheckBoxStar.Checked = false;
            }
        }
Example #2
0
        private void extCheckBoxStar_Click(object sender, EventArgs e)
        {
            if (extCheckBoxStar.Checked == true)
            {
                ExtendedControls.ConfigurableForm f = new ExtendedControls.ConfigurableForm();
                int width = 700;
                f.Add(new ExtendedControls.ConfigurableForm.Entry("L", typeof(Label), "System:".Tx(this), new Point(10, 40), new Size(160, 24), null));
                f.Add(new ExtendedControls.ConfigurableForm.Entry("Sys", typeof(ExtendedControls.ExtTextBoxAutoComplete), "", new Point(180, 40), new Size(width - 180 - 20, 24), null));

                f.Add(new ExtendedControls.ConfigurableForm.Entry("OK", typeof(ExtendedControls.ExtButton), "OK".Tx(), new Point(width - 20 - 80, 80), new Size(80, 24), ""));
                f.Add(new ExtendedControls.ConfigurableForm.Entry("Cancel", typeof(ExtendedControls.ExtButton), "Cancel".Tx(), new Point(width - 200, 80), new Size(80, 24), ""));

                f.Trigger += (dialogname, controlname, tag) =>
                {
                    if (controlname == "OK" || controlname == "Cancel")
                    {
                        f.DialogResult = controlname == "OK" ? DialogResult.OK : DialogResult.Cancel;
                        f.Close();
                    }
                };

                f.Init(this.FindForm().Icon, new Size(width, 120), new Point(-999, -999), "Show System".Tx(this, "EnterSys"), null, null);
                f.GetControl <ExtendedControls.ExtTextBoxAutoComplete>("Sys").SetAutoCompletor(SystemClassDB.ReturnOnlySystemsListForAutoComplete);
                DialogResult res = f.ShowDialog(this.FindForm());

                if (res == DialogResult.OK)
                {
                    string sname = f.Get("Sys");
                    if (sname.HasChars())
                    {
                        showing_matcomds = null;
                        showing_system   = new EliteDangerousCore.SystemClass(sname);
                        override_system  = true;
                        DrawSystem();
                        extCheckBoxStar.Checked = true;
                    }
                    else
                    {
                        extCheckBoxStar.Checked = false;
                    }
                }
                else
                {
                    extCheckBoxStar.Checked = false;
                }
            }
            else
            {
                override_system = false;
                DrawSystem(last_he);
                extCheckBoxStar.Checked = false;
            }
        }
Example #3
0
        private void extButton21_Click(object sender, EventArgs e)
        {
            ConfigurableForm cfg = new ExtendedControls.ConfigurableForm();

            cfg.AllowSpaceForScrollBar   = false;
            cfg.RightMargin              = cfg.BottomMargin = 0;
            cfg.ForceNoWindowsBorder     = true;
            cfg.AllowSpaceForCloseButton = true;
            cfg.BorderMargin             = 0;

            ExtButton wikibutton = new ExtButton();

            wikibutton.Image = Properties.Resources.CursorToTop;
            cfg.Add(new ConfigurableForm.Entry(wikibutton, "Wiki", null, new Point(0, 0), new Size(24, 24), null));

            ExtButton videobutton = new ExtButton();

            videobutton.Image = Properties.Resources.CursorToTop;
            cfg.Add(new ConfigurableForm.Entry(videobutton, "Video", null, new Point(24, 0), new Size(24, 24), null));

            cfg.Trigger += (string logicalname, string ctrlname, object callertag) =>
            {
                if (ctrlname == "Close")
                {
                    cfg.ReturnResult(DialogResult.Cancel);
                }
                else if (ctrlname == "Wiki")
                {
                    cfg.ReturnResult(DialogResult.OK);
                }
                else if (ctrlname == "Video")
                {
                    cfg.ReturnResult(DialogResult.Yes);
                }
            };

            Theme.Current.WindowsFrame = false;
            Theme.Current.FontSize     = sender is float?(float)sender : 8.5f;

            DialogResult res = cfg.ShowDialog(this, new Point(500, 500), this.Icon, "", closeicon: true);
        }
Example #4
0
        // do videos
        // use file in folder if present, download folder..

        public static void Help(Form parent, Point pos, string name)
        {
            JToken helptouse = defaulthelp;

            string helpfile = Path.Combine(EDDOptions.Instance.HelpDirectory(), "help.json");

            if (File.Exists(helpfile))
            {
                string t        = BaseUtils.FileHelpers.TryReadAllTextFromFile(helpfile);
                JToken filejson = t != null?JToken.Parse(t) : null;

                if (filejson != null)
                {
                    Version intv  = new Version(helptouse["Version"].Str("0.0.0.0"));
                    Version filev = new Version(filejson["Version"].Str("0.0.0.0"));

                    if (filev >= intv)
                    {
                        helptouse = filejson;
                    }
                }
            }

            //System.IO.File.WriteAllText(@"c:\code\help.json",helptouse.ToString(true));
            //System.Diagnostics.Debug.WriteLine("Help on " + name);

            string wiki  = Properties.Resources.URLProjectWiki;     // default..
            string video = Properties.Resources.URLProjectVideos;

            JArray panels = helptouse["Panels"].Array();                                                                    // may be null if there is trouble

            JToken obj = panels?.Where(x => x.Object()["panel"].ValueEquals(name)).Select(x => x).FirstOrDefault() ?? null; // allow for panels to be null

            if (obj != null)
            {
                wiki  = obj["wiki"].StrNull();
                video = obj["video"].StrNull();

                if (wiki != null && wiki.StartsWith("/"))
                {
                    wiki = Properties.Resources.URLProjectWiki + wiki;
                }

                if (video != null && video.StartsWith("/"))
                {
                    video = Properties.Resources.URLProjectVideosRoot + video;
                }

                //System.Diagnostics.Debug.WriteLine("For {0} {1} {2}", name, wiki, video);
            }

            if (wiki.HasChars() && video.HasChars())
            {
                ConfigurableForm cfg = new ExtendedControls.ConfigurableForm();
                cfg.AllowSpaceForScrollBar   = false;
                cfg.RightMargin              = cfg.BottomMargin = 0;
                cfg.ForceNoWindowsBorder     = true;
                cfg.AllowSpaceForCloseButton = true;
                cfg.BorderMargin             = 0;
                cfg.ExtraMarginRightBottom   = new Size(0, 0);

                ExtButton wikibutton = new ExtButton();
                wikibutton.Image = global::EDDiscovery.Icons.Controls.Help_Wiki;
                cfg.Add(new ConfigurableForm.Entry(wikibutton, "Wiki", null, new Point(0, 0), new Size(24, 24), null));
                ExtButton videobutton = new ExtButton();
                videobutton.Image = global::EDDiscovery.Icons.Controls.Help_Video;
                cfg.Add(new ConfigurableForm.Entry(videobutton, "Video", null, new Point(26, 0), new Size(24, 24), null));

                cfg.Trigger += (string logicalname, string ctrlname, object callertag) =>
                {
                    if (ctrlname == "Close")
                    {
                        cfg.ReturnResult(DialogResult.Cancel);
                    }
                    else if (ctrlname == "Wiki")
                    {
                        cfg.ReturnResult(DialogResult.OK);
                    }
                    else if (ctrlname == "Video")
                    {
                        cfg.ReturnResult(DialogResult.Yes);
                    }
                };

                DialogResult res = cfg.ShowDialog(parent, pos, parent.Icon, "", closeicon: true);
                if (res == DialogResult.OK)
                {
                    BaseUtils.BrowserInfo.LaunchBrowser(wiki);
                }
                else if (res == DialogResult.Yes)
                {
                    BaseUtils.BrowserInfo.LaunchBrowser(video);
                }
            }
            else if (wiki.HasChars())
            {
                BaseUtils.BrowserInfo.LaunchBrowser(wiki);
            }
            else if (video.HasChars())
            {
                BaseUtils.BrowserInfo.LaunchBrowser(video);
            }
            else
            {
                MessageBox.Show("No help for " + name);
            }
        }
Example #5
0
    public static int JumpToDialog(this DataGridView grid, Form parent, int initialvalue, Func <DataGridViewRow, int> getindex)
    {
        ExtendedControls.ConfigurableForm f = new ExtendedControls.ConfigurableForm();

        int width    = 430;
        int ctrlleft = 150;

        Type t = typeof(DataGridViewDialogs);

        f.Add(new ExtendedControls.ConfigurableForm.Entry("L", typeof(Label), "Jump to:".Tx(t), new Point(10, 40), new Size(140, 24), ""));
        f.Add(new ExtendedControls.ConfigurableForm.Entry("Entry", typeof(ExtendedControls.NumberBoxLong), initialvalue.ToString(), new Point(ctrlleft, 40), new Size(width - ctrlleft - 20, 24), "Enter number to jump to or near to".Tx(t, "EN"))
        {
            numberboxdoubleminimum = 0, numberboxformat = "0"
        });

        f.Add(new ExtendedControls.ConfigurableForm.Entry("OK", typeof(ExtendedControls.ButtonExt), "OK".Tx(), new Point(width - 100, 70), new Size(80, 24), "Press to Accept".Tx(t)));
        f.Add(new ExtendedControls.ConfigurableForm.Entry("Cancel", typeof(ExtendedControls.ButtonExt), "Cancel".Tx(), new Point(width - 200, 70), new Size(80, 24), "Press to Cancel".Tx(t)));

        f.Trigger += (dialogname, controlname, tag) =>
        {
            if (controlname == "OK" || controlname == "Entry:Return")
            {
                long?v3 = f.GetLong("Entry");
                if (v3.HasValue)
                {
                    f.DialogResult = DialogResult.OK;
                    f.Close();
                }
                else
                {
                    ExtendedControls.MessageBoxTheme.Show(parent, "Value is not valid".Tx(t, "VNV"), "Warning".Tx(), MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
            }
            else if (controlname == "Cancel")
            {
                f.DialogResult = DialogResult.Cancel;
                f.Close();
            }
        };

        DialogResult res = f.ShowDialog(parent, parent.Icon, new Size(width, 110), new Point(-999, -999), "Jump to Entry".Tx(t, "Title"));

        if (res == DialogResult.OK)
        {
            int target = (int)f.GetLong("Entry").Value;

            int rowclosest = 0;
            int rowdist    = int.MaxValue;

            foreach (DataGridViewRow r in grid.Rows)
            {
                if (r.Visible)
                {
                    int index = getindex(r);
                    int delta = Math.Abs(target - index);
                    if (delta < rowdist)
                    {
                        rowdist    = delta;
                        rowclosest = r.Index;
                    }
                }
            }

            grid.DisplayRow(rowclosest, true);

            return(rowclosest);
        }
        else
        {
            return(-1);
        }
    }