/usr/share/help/ko/gnome-devel-demos/tooltip.js.page is in gnome-devel-docs 3.28.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 | <?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="tooltip.js" xml:lang="ko">
<info>
<title type="text">Tooltip (JavaScript)</title>
<link type="guide" xref="beginner.js#misc"/>
<link type="seealso" xref="toolbar.js"/>
<revision version="0.1" date="2013-06-25" status="review"/>
<credit type="author copyright">
<name>Meg Ford</name>
<email its:translate="no">megford@gnome.org</email>
<years>2013</years>
</credit>
<desc>위젯에 도움말을 추가합니다</desc>
<mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
<mal:name>조성호</mal:name>
<mal:email>shcho@gnome.org</mal:email>
<mal:years>2017</mal:years>
</mal:credit>
</info>
<title>Tooltip</title>
<media type="image" mime="image/png" src="media/tooltip.png"/>
<p>단추에 풍선 도움말(및 그림)을 넣은 도구 모음입니다.</p>
<note><p>이 예제는 <link xref="toolbar.js">도구 모음</link> 예제로 만듭니다.</p></note>
<links type="section"/>
<section id="code">
<title>예제 결과를 만드는 코드</title>
<code mime="application/javascript" style="numbered">//!/usr/bin/gjs
imports.gi.versions.Gdk = '3.0';
imports.gi.versions.Gtk = '3.0';
const Gdk = imports.gi.Gdk;
const GLib = imports.gi.GLib;
const Gio = imports.gi.Gio;
const Gtk = imports.gi.Gtk;
class TooltipExample {
// Create the application
constructor() {
this.application = new Gtk.Application({
application_id: 'org.example.jstooltip'
});
// Connect 'activate' and 'startup' signals to the callback functions
this.application.connect('activate', this._onActivate.bind(this));
this.application.connect('startup', this._onStartup.bind(this));
}
// Callback function for 'activate' signal presents windows when active
_onActivate() {
this.window.present();
}
// Callback function for 'startup' signal builds the UI
_onStartup() {
this._buildUI();
}
// Build the application's UI
_buildUI() {
// Create the application window
this.window = new Gtk.ApplicationWindow({
application: this.application,
window_position: Gtk.WindowPosition.CENTER,
title: "Toolbar with Tooltips Example",
default_width: 400,
default_height: 200,
border_width: 10
});
this.grid = new Gtk.Grid();
this.toolbar = this._createToolbar();
this.toolbar.set_hexpand(true);
this.toolbar.show();
this.grid.attach(this.toolbar, 0, 0, 1, 1);
this.window.add(this.grid);
this._newAction = new Gio.SimpleAction({ name: "new" });
this._newAction.connect("activate", this._newCallback.bind(this));
this.window.add_action(this._newAction);
this._openAction = new Gio.SimpleAction({ name: "open" });
this._openAction.connect("activate", this._openCallback.bind(this));
this.window.add_action(this._openAction);
this._undoAction = new Gio.SimpleAction({ name: "undo" });
this._undoAction.connect("activate", this._undoCallback.bind(this));
this.window.add_action(this._undoAction);
this._fullScreenAction = new Gio.SimpleAction({ name: "fullscreenToggle" });
this._fullScreenAction.connect("activate",
this._fullScreenCallback.bind(this));
this.window.add_action(this._fullScreenAction);
this.window.show_all();
}
_createToolbar() {
this.toolbar = new Gtk.Toolbar();
this.toolbar.get_style_context().add_class(Gtk.STYLE_CLASS_PRIMARY_TOOLBAR);
// button for the "new" action
this.newButton = Gtk.ToolButton.new_from_stock(Gtk.STOCK_NEW);
// with a tooltip with a given text
this.newButton.set_tooltip_text("Create a new file");
this.newButton.set_is_important(true);
this.toolbar.insert(this.newButton, 0);
this.newButton.show();
this.newButton.set_action_name("win.new");
// button for the "open" action
this.openButton = Gtk.ToolButton.new_from_stock(Gtk.STOCK_OPEN);
// with a tooltip with a given text in the Pango markup language
this.openButton.set_tooltip_markup("Open an <i>existing</i> file");
this.openButton.set_is_important(true);
this.toolbar.insert(this.openButton, 1);
this.openButton.show();
this.openButton.set_action_name("win.open");
// button for the "undo" action
this.undoButton = Gtk.ToolButton.new_from_stock(Gtk.STOCK_UNDO);
// with a tooltip with an image
// set true the property "has-tooltip"
this.undoButton.set_property("has-tooltip", true);
// connect to the callback function that for the tooltip
// with the signal "query-tooltip"
this.undoButton.connect("query-tooltip", this._undoTooltipCallback.bind(this));
this.undoButton.set_is_important(true);
this.toolbar.insert(this.undoButton, 2);
this.undoButton.show();
this.undoButton.set_action_name("win.undo");
// button for the "fullscreen/leave fullscreen" action
this.fullscreenButton = Gtk.ToolButton.new_from_stock(Gtk.STOCK_FULLSCREEN);
this.fullscreenButton.set_is_important(true);
this.toolbar.insert(this.fullscreenButton, 3);
this.fullscreenButton.set_action_name("win.fullscreenToggle");
return this.toolbar;
}
_newCallback(action, parameter) {
print("You clicked \"New\".");
}
_openCallback(action, parameter) {
print("You clicked \"Open\".");
}
// the callback function for the tooltip of the "undo" button
_undoTooltipCallback(widget, x, y, keyboard_mode, tooltip) {
// set the text for the tooltip
tooltip.set_text("Undo your last action");
// set an icon fot the tooltip
tooltip.set_icon_from_stock(Gtk.STOCK_UNDO, Gtk.IconSize.MENU);
// show the tooltip
return true;
}
_undoCallback(action, parameter) {
print("You clicked \"Undo\".");
}
_fullScreenCallback() {
if ((this.window.get_window().get_state() & Gdk.WindowState.FULLSCREEN) != 0 ){
this.fullscreenButton.set_stock_id(Gtk.STOCK_FULLSCREEN);
this.fullscreenButton.set_tooltip_text("Make your window fullscreen");
this.window.unfullscreen();
} else {
this.fullscreenButton.set_stock_id(Gtk.STOCK_LEAVE_FULLSCREEN);
this.fullscreenButton.set_tooltip_text("Leave fullscreen");
this.window.fullscreen();
}
}
};
// Run the application
let app = new TooltipExample ();
app.application.run (ARGV);
</code>
</section>
<section id="references">
<title>API 참고서</title>
<p>이 예제는 다음 참고자료가 필요합니다:</p>
<list>
<item><p><link href="http://www.roojs.com/seed/gir-1.2-gtk-3.0/gjs/Gtk.Tooltip.html">GtkTooltip</link></p></item>
<item><p><link href="http://www.roojs.com/seed/gir-1.2-gtk-3.0/gjs/Gtk.Toolbar.html">GtkToolbar</link></p></item>
<item><p><link href="http://www.roojs.com/seed/gir-1.2-gtk-3.0/gjs/Gtk.Widget.html">GtkWidget</link></p></item>
<item><p><link href="http://developer.gnome.org/gtk3/stable/gtk3-Stock-Items.html">취급 항목</link></p></item>
</list>
</section>
</page>
|