1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
<?xml version="1.0" encoding="utf-8"?>
<page xmlns="http://projectmallard.org/1.0/" xmlns:its="http://www.w3.org/2005/11/its" xmlns:xi="http://www.w3.org/2001/XInclude" type="guide" style="task" id="aboutdialog.js" xml:lang="sv">
<info>
<title type="text">AboutDialog (Javascript)</title>
<link type="guide" xref="beginner.js#windows"/>
<revision version="0.1" date="2012-05-30" status="draft"/>
<credit type="author copyright">
<name>Taryn Fox</name>
<email its:translate="no">jewelfox@fursona.net</email>
<years>2012</years>
</credit>
<desc>Visa information om ett program</desc>
<mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
<mal:name>Sebastian Rasmussen</mal:name>
<mal:email>sebras@gmail.com</mal:email>
<mal:years>2019</mal:years>
</mal:credit>
<mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
<mal:name>Anders Jonsson</mal:name>
<mal:email>anders.jonsson@norsjovallen.se</mal:email>
<mal:years>2021</mal:years>
</mal:credit>
</info>
<title>AboutDialog</title>
<media type="image" mime="image/png" src="media/aboutdialog_GMenu.png"/>
<p>En modal dialogruta som visar information om ett program och dess upphovsmän. Denna öppnas genom att klicka på ”Om” i programmets meny, vilket vanligtvis är en bra plats att placera den på.</p>
<code mime="application/javascript" style="numbered">#!/usr/bin/gjs
imports.gi.versions.Gtk = '3.0';
const Gio = imports.gi.Gio;
const GLib = imports.gi.GLib;
const Gtk = imports.gi.Gtk;
class AboutDialogExample {
// Skapa programmet i sig
constructor() {
this.application = new Gtk.Application({
application_id: 'org.example.jsaboutdialog',
flags: Gio.ApplicationFlags.FLAGS_NONE
});
// Anslut ”activate”- och ”startup”-signaler till återanropsfunktionerna
this.application.connect('activate', this._onActivate.bind(this));
this.application.connect('startup', this._onStartup.bind(this));
}
// Återanropsfunktion för ”activate”-signal visar fönster när den aktiveras
_onActivate() {
this._window.present();
}
// Återanropsfunktion för ”startup”-signal skapar menyn och bygger användargränssnittet
_onStartup() {
this._initMenus();
this._buildUI();
}
// Bygg användargränssnittet
_buildUI() {
// Skapa programfönstret
this._window = new Gtk.ApplicationWindow({ application: this.application,
window_position: Gtk.WindowPosition.CENTER,
title: "AboutDialog-exempel",
default_height: 250,
default_width: 350 });
// Visa fönstret och alla barnkomponenter
this._window.show_all();
}
// Skapa programmenyn
_initMenus() {
let menu = new Gio.Menu();
menu.append("Om", 'app.about');
menu.append("Avsluta",'app.quit');
this.application.set_app_menu(menu);
// Skapa ”Om”-menyobjektet och få det att anropa _showAbout()-funktionen
let aboutAction = new Gio.SimpleAction({ name: 'about' });
aboutAction.connect('activate', () => { this._showAbout(); });
this.application.add_action(aboutAction);
// Skapa ”Avsluta”-menyobjektet och få det att stänga fönstret
let quitAction = new Gio.SimpleAction ({ name: 'quit' });
quitAction.connect('activate', () => { this._window.destroy(); });
this.application.add_action(quitAction);
}
_showAbout() {
// Strängvektor över namnen på personerna som varit inblandade i projektet
var authors = ["GNOME:s dokumentationsgrupp"];
var documenters = ["GNOME:s dokumentationsgrupp"];
// Skapa Om-dialogen
let aboutDialog = new Gtk.AboutDialog({ title: "AboutDialog-exempel",
program_name: "GtkApplication-exempel",
copyright: "Copyright \xa9 2012 GNOME:s dokumentationsgrupp",
authors: authors,
documenters: documenters,
website: "http://developer.gnome.org",
website_label: "GNOME:s utvecklarwebbplats" });
// Fäst Om-dialogen vid fönstret
aboutDialog.modal = true;
aboutDialog.transient_for = this._window;
// Visa Om-dialogen
aboutDialog.show();
// Anslut stängningsknappen till destroy-signalen för dialogen
aboutDialog.connect('response', function() {
aboutDialog.destroy();
});
}
};
// Kör programmet
let app = new AboutDialogExample();
app.application.run(ARGV);
</code>
<p>I detta exempel använde vi följande:</p>
<list>
<item><p><link href="http://developer.gnome.org/gio/unstable/GMenu.html">GMenu</link></p></item>
<item><p><link href="http://developer.gnome.org/gio/stable/GSimpleAction.html">GSimpleAction</link></p></item>
<item><p><link href="http://www.roojs.com/seed/gir-1.2-gtk-3.0/gjs/Gtk.AboutDialog.html">Gtk.AboutDialog</link></p></item>
<item><p><link href="http://www.roojs.com/seed/gir-1.2-gtk-3.0/gjs/Gtk.Application.html">Gtk.Application</link></p></item>
<item><p><link href="http://developer.gnome.org/gtk3/stable/GtkApplicationWindow.html">Gtk.ApplicationWindow</link></p></item>
</list>
</page>
|