Last active
December 26, 2015 11:48
-
-
Save derekm/7145913 to your computer and use it in GitHub Desktop.
Prefs pane for GNOME Shell Open Terminal extension
http://extensions.gnome.org/extension/721/gnome-shell-open-terminal/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Lang = imports.lang; | |
const Gtk = imports.gi.Gtk; | |
const GMenu = imports.gi.GMenu; | |
const ExtensionUtils = imports.misc.extensionUtils; | |
const Me = ExtensionUtils.getCurrentExtension(); | |
var bldr; | |
var pane; | |
var tree; | |
var root; | |
var icons; | |
var items; | |
function init() { | |
let prefs = Me.path + '/prefs.xml'; | |
bldr = new Gtk.Builder(); | |
bldr.add_from_file(prefs); | |
tree = new GMenu.Tree({ | |
menu_basename: "applications.menu", | |
flags: GMenu.TreeFlags.SORT_DISPLAY_NAME | |
}); | |
tree.load_sync(); | |
root = tree.get_root_directory(); | |
} | |
function buildIconView(dir) { | |
if (dir == undefined) | |
var iter = root.iter(); | |
else | |
var iter = dir.iter(); | |
let nextType; | |
while ((nextType = iter.next()) != GMenu.TreeItemType.INVALID) { | |
if (nextType == GMenu.TreeItemType.DIRECTORY) | |
buildIconView(iter.get_directory()); | |
else if (nextType == GMenu.TreeItemType.ENTRY) { | |
let entry = iter.get_entry(); | |
let appInfo = entry.get_app_info(); | |
let appIcon = appInfo.get_icon(); | |
if (appIcon == null) | |
continue; | |
let id = entry.get_desktop_file_id(); | |
let label = appInfo.get_name(); | |
let theme = Gtk.IconTheme.get_default(); | |
let gicon = theme.lookup_by_gicon(appIcon, 32, | |
Gtk.IconLookupFlags.GENERIC_FALLBACK); | |
if (gicon == null) | |
continue; | |
let icon = gicon.load_icon(); | |
let store = icons.append(); | |
icons.set_value(store, 0, icon); | |
icons.set_value(store, 1, label); | |
icons.set_value(store, 2, id); | |
} | |
} | |
} | |
function addToTreeView(iconview, path, user_data) { | |
let selection = iconview.get_selected_items()[0]; | |
let iter = icons.get_iter(selection)[1]; | |
let icon = icons.get_value(iter, 0); | |
let label = icons.get_value(iter, 1); | |
let id = icons.get_value(iter, 2); | |
let store = items.append(); | |
items.set_value(store, 0, icon); | |
items.set_value(store, 1, label); | |
items.set_value(store, 2, id); | |
} | |
function buildPrefsWidget() { | |
pane = bldr.get_object('paned1'); | |
icons = bldr.get_object('liststore1'); | |
items = bldr.get_object('liststore2'); | |
let iconview = bldr.get_object('iconview1'); | |
iconview.set_pixbuf_column(0); | |
iconview.set_text_column(1); | |
iconview.connect('item-activated', Lang.bind(this, addToTreeView)); | |
buildIconView(); | |
//buildPopupView(); | |
let treeview = bldr.get_object('treeview1'); | |
let iconCol = new Gtk.TreeViewColumn({title: "Icon"}); | |
let iconCell = new Gtk.CellRendererPixbuf(); | |
iconCol.pack_start(iconCell, true); | |
iconCol.add_attribute(iconCell, "pixbuf", 0); | |
treeview.append_column(iconCol); | |
let labelCol = new Gtk.TreeViewColumn({title: "Label"}); | |
let labelCell = new Gtk.CellRendererText({editable: true}); | |
labelCol.pack_start(labelCell, true); | |
labelCol.add_attribute(labelCell, "text", 1); | |
treeview.append_column(labelCol); | |
return pane; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- Generated with glade 3.16.0 on Wed Oct 23 22:01:27 2013 --> | |
<interface> | |
<!-- interface-requires gtk+ 3.6 --> | |
<object class="GtkListStore" id="liststore1"> | |
<columns> | |
<!-- column-name icon --> | |
<column type="GdkPixbuf"/> | |
<!-- column-name label --> | |
<column type="gchararray"/> | |
<!-- column-name id --> | |
<column type="gchararray"/> | |
</columns> | |
</object> | |
<object class="GtkListStore" id="liststore2"> | |
<columns> | |
<!-- column-name icon --> | |
<column type="GdkPixbuf"/> | |
<!-- column-name label --> | |
<column type="gchararray"/> | |
<!-- column-name id --> | |
<column type="gchararray"/> | |
</columns> | |
</object> | |
<object class="GtkMenu" id="menu1"> | |
<property name="visible">True</property> | |
<property name="can_focus">False</property> | |
</object> | |
<object class="GtkPaned" id="paned1"> | |
<property name="visible">True</property> | |
<property name="can_focus">True</property> | |
<child> | |
<object class="GtkScrolledWindow" id="scrolledwindow1"> | |
<property name="visible">True</property> | |
<property name="can_focus">True</property> | |
<property name="shadow_type">in</property> | |
<child> | |
<object class="GtkIconView" id="iconview1"> | |
<property name="visible">True</property> | |
<property name="can_focus">True</property> | |
<property name="margin">0</property> | |
<property name="model">liststore1</property> | |
</object> | |
</child> | |
</object> | |
<packing> | |
<property name="resize">False</property> | |
<property name="shrink">True</property> | |
</packing> | |
</child> | |
<child> | |
<object class="GtkBox" id="box1"> | |
<property name="visible">True</property> | |
<property name="can_focus">False</property> | |
<property name="orientation">vertical</property> | |
<child> | |
<object class="GtkLabel" id="label1"> | |
<property name="visible">True</property> | |
<property name="can_focus">False</property> | |
<property name="xalign">0.46000000834465027</property> | |
<property name="label" translatable="yes">Right-click here to preview your menu</property> | |
<property name="ellipsize">end</property> | |
</object> | |
<packing> | |
<property name="expand">False</property> | |
<property name="fill">True</property> | |
<property name="position">0</property> | |
</packing> | |
</child> | |
<child> | |
<object class="GtkTreeView" id="treeview1"> | |
<property name="visible">True</property> | |
<property name="can_focus">True</property> | |
<property name="hexpand">True</property> | |
<property name="vexpand">True</property> | |
<property name="model">liststore2</property> | |
<property name="reorderable">True</property> | |
<property name="search_column">1</property> | |
<child internal-child="selection"> | |
<object class="GtkTreeSelection" id="treeview-selection"/> | |
</child> | |
</object> | |
<packing> | |
<property name="expand">False</property> | |
<property name="fill">True</property> | |
<property name="position">1</property> | |
</packing> | |
</child> | |
</object> | |
<packing> | |
<property name="resize">True</property> | |
<property name="shrink">True</property> | |
</packing> | |
</child> | |
</object> | |
</interface> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment