private void About(object obj, EventArgs args) { Gdk.Pixbuf logo = WidgetFu.LoadThemeIcon("system-search", 48); string[] people = new string[] { "Anna Dirks <*****@*****.**>", "Dan Winship <*****@*****.**>", "D Bera <*****@*****.**>", "Fredrik Hedberg <*****@*****.**>", "Joe Shaw <*****@*****.**>", "Jakub Steiner <*****@*****.**>", "Lukas Lipka <*****@*****.**>", }; string translators = Catalog.GetString("translator-credits"); if (translators == "translator-credits") // not translated { translators = null; } #pragma warning disable 612 // don't warn that Gnome.About is deprecated Gnome.About about = new Gnome.About("Beagle Search", Beagle.Util.ExternalStringsHack.Version, VersionFu.DefaultCopyright, null, people, null, null, logo); about.Run(); about.Dispose(); #pragma warning restore 612 }
protected virtual void OnAbout(object o, EventArgs args) { #pragma warning disable 612 // don't warn that Gnome.About is deprecated. Gnome.About about = new Gnome.About("Contact Viewer", ExternalStringsHack.Version, "Copyright (C) 2006 Pierre \u00D6stlund", null, new string [] { "Pierre \u00D6stlund" }, null, null, Beagle.Images.GetPixbuf("system-search.png")); about.Run(); about.Dispose(); #pragma warning restore 612 }
public void app_show_about(object o, EventArgs args) { // We don't have a custom logo yet; use nothing. Gdk.Pixbuf logo = new Gdk.Pixbuf(Gdk.Colorspace.Rgb, false, 8, 0, 0); string[] authors = { "Jonathan Pryor ([email protected])" }; string[] documentors = {}; Gnome.About a = new Gnome.About("Type Reflector", TypeReflectorApp.Version, "Copyright (C) 2002, 2003 Jonathan Pryor", "Mono Type Reflector", authors, documentors, "", logo); a.Show(); }
protected virtual void OnAbout (object o, EventArgs args) { #pragma warning disable 612 // don't warn that Gnome.About is deprecated. Gnome.About about = new Gnome.About ("Contact Viewer", ExternalStringsHack.Version, "Copyright (C) 2006 Pierre \u00D6stlund", null, new string [] { "Pierre \u00D6stlund" }, null, null, Beagle.Images.GetPixbuf ("system-search.png")); about.Run (); about.Dispose (); #pragma warning restore 612 }
private void About (object obj, EventArgs args) { Gdk.Pixbuf logo = WidgetFu.LoadThemeIcon ("system-search", 48); string[] people = new string[] { "Anna Dirks <*****@*****.**>", "Dan Winship <*****@*****.**>", "D Bera <*****@*****.**>", "Fredrik Hedberg <*****@*****.**>", "Joe Shaw <*****@*****.**>", "Jakub Steiner <*****@*****.**>", "Lukas Lipka <*****@*****.**>", }; string translators = Catalog.GetString ("translator-credits"); if (translators == "translator-credits") // not translated translators = null; #pragma warning disable 612 // don't warn that Gnome.About is deprecated Gnome.About about = new Gnome.About ("Beagle Search", Beagle.Util.ExternalStringsHack.Version, VersionFu.DefaultCopyright, null, people, null, null, logo); about.Run (); about.Dispose (); #pragma warning restore 612 }
public void on_about_activate(object sender, EventArgs a) { Gnome.About about = new Gnome.About( "LifeLets", "0.1", "(C) 2004 Mono Basic Brazilian Team", "Everyday's use 'sovereign computing' utilities", new System.String [] { "Klaus Wuestefled", "Rafael Teixeira", "Alessandro de Oliveira Binhara", "Helio Y. Mine", "Marcelo Davila de Pauli", "Marco Antonio Konopaki", "Jacson", "Maverson" }, new System.String [] {}, // documenters "", // string translator_credits, logo); about.Run(); }
public void app_show_about (object o, EventArgs args) { // We don't have a custom logo yet; use nothing. Gdk.Pixbuf logo = new Gdk.Pixbuf (Gdk.Colorspace.Rgb, false, 8, 0, 0); string[] authors = {"Jonathan Pryor ([email protected])"}; string[] documentors = {}; Gnome.About a = new Gnome.About ("Type Reflector", TypeReflectorApp.Version, "Copyright (C) 2002, 2003 Jonathan Pryor", "Mono Type Reflector", authors, documentors, "", logo); a.Show (); }
private void ShowAboutDialog(System.Object o, EventArgs e) { string [] authors = new string [] { "Cesar Garcia Tapia ([email protected])" }; string [] documenters = new string [] {}; string translaters = Mono.Posix.Catalog.GetString ("translator-credits"); Pixbuf pixbuf = null; Gnome.About about = new Gnome.About ("MCatalog", Defines.VERSION, "Copyright (C) 2003, Cesar Garcia Tapia", Mono.Posix.Catalog.GetString ("Media cataloger"), authors, documenters, translaters, pixbuf); about.Show (); }
private void on_bAyuda_clicked(object o, EventArgs args) { string[] authors = {"GoomerkO <*****@*****.**>"}; Gnome.About ab = new Gnome.About ("LemuRae", "0.1","Gumer Coronel Pérez (c) 2005",null,authors,null,null, new Pixbuf("/usr/share/pixmaps/lemurae.svg")); ab.Run(); }