forked from gnome-terminator/terminator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[bug 706] 706-Favorites-Bookmarks-Plugin-next gnome-terminator#706
- bookmark plugin, basic features, support in UI in prefs window (via plugin) - tags feature, can be used to build xml later - - TODO: - display shortcuts in menu - selection of urls from keyboard - Defaults: - press <Alt>b (see below) to add current dir in bookmark <Alt>r to remove - sub-menu via right click->bookmarks->urls->(act menu) and - Prefs->Plugins->BookmarkPlugin
- Loading branch information
Showing
7 changed files
with
555 additions
and
8 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- Generated with glade 3.40.0 --> | ||
<interface> | ||
<requires lib="gtk+" version="3.24"/> | ||
<object class="GtkWindow" id="BookmarkPlugin"> | ||
<property name="can-focus">False</property> | ||
<child> | ||
<object class="GtkBox"> | ||
<property name="visible">True</property> | ||
<property name="can-focus">False</property> | ||
<property name="orientation">vertical</property> | ||
<child> | ||
<object class="GtkScrolledWindow"> | ||
<property name="visible">True</property> | ||
<property name="can-focus">True</property> | ||
<property name="vexpand">True</property> | ||
<property name="shadow-type">in</property> | ||
<child> | ||
<object class="GtkTreeView" id="BookmarkPluginTreeView_1"> | ||
<property name="visible">True</property> | ||
<property name="can-focus">True</property> | ||
<property name="enable-grid-lines">horizontal</property> | ||
<child internal-child="selection"> | ||
<object class="GtkTreeSelection"/> | ||
</child> | ||
</object> | ||
</child> | ||
</object> | ||
<packing> | ||
<property name="expand">False</property> | ||
<property name="fill">True</property> | ||
<property name="position">0</property> | ||
</packing> | ||
</child> | ||
<child> | ||
<object class="GtkButtonBox"> | ||
<property name="visible">True</property> | ||
<property name="can-focus">False</property> | ||
<property name="layout-style">center</property> | ||
<child> | ||
<object class="GtkButton" id="BookmarkPluginButtonAdd"> | ||
<property name="label">gtk-add</property> | ||
<property name="visible">True</property> | ||
<property name="can-focus">True</property> | ||
<property name="receives-default">True</property> | ||
<property name="use-stock">True</property> | ||
</object> | ||
<packing> | ||
<property name="expand">True</property> | ||
<property name="fill">True</property> | ||
<property name="position">0</property> | ||
</packing> | ||
</child> | ||
<child> | ||
<placeholder/> | ||
</child> | ||
<child> | ||
<object class="GtkButton" id="BookmarkPluginButtonRemove"> | ||
<property name="label">gtk-remove</property> | ||
<property name="visible">True</property> | ||
<property name="can-focus">True</property> | ||
<property name="receives-default">True</property> | ||
<property name="use-stock">True</property> | ||
</object> | ||
<packing> | ||
<property name="expand">True</property> | ||
<property name="fill">True</property> | ||
<property name="position">2</property> | ||
</packing> | ||
</child> | ||
</object> | ||
<packing> | ||
<property name="expand">False</property> | ||
<property name="fill">True</property> | ||
<property name="position">1</property> | ||
</packing> | ||
</child> | ||
</object> | ||
</child> | ||
</object> | ||
</interface> |
Oops, something went wrong.