gitg/plugins/diff/gitg-diff.vala

156 lines
3.1 KiB
Vala
Raw Normal View History

2012-07-17 07:55:09 +00:00
/*
* This file is part of gitg
*
* Copyright (C) 2012 - Jesse van den Kieboom
*
* gitg is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* gitg is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with gitg. If not, see <http://www.gnu.org/licenses/>.
*/
namespace GitgDiff
{
public class Panel : Object, GitgExt.UIElement, GitgExt.Panel
{
// Do this to pull in config.h before glib.h (for gettext...)
private const string version = Gitg.Config.VERSION;
2012-07-17 07:55:09 +00:00
public GitgExt.Application? application { owned get; construct set; }
2013-02-18 12:53:39 +00:00
private Gtk.ScrolledWindow d_sw;
2013-06-23 12:40:04 +00:00
private Gitg.DiffView d_diff;
2012-07-17 07:55:09 +00:00
private GitgExt.ObjectSelection? d_view;
2013-06-23 12:40:04 +00:00
private Gitg.WhenMapped d_whenMapped;
2012-07-17 07:55:09 +00:00
construct
{
2013-02-18 12:53:39 +00:00
d_sw = new Gtk.ScrolledWindow(null, null);
d_sw.show();
2013-06-23 12:40:04 +00:00
d_diff = new Gitg.DiffView(null);
2012-07-17 07:55:09 +00:00
d_diff.show();
2013-02-18 12:53:39 +00:00
d_sw.add(d_diff);
2012-07-17 07:55:09 +00:00
2013-06-23 12:40:04 +00:00
d_whenMapped = new Gitg.WhenMapped(d_sw);
2013-03-01 15:11:06 +00:00
application.notify["current_view"].connect((a, v) => {
notify_property("available");
});
2012-07-17 07:55:09 +00:00
}
public string id
{
owned get { return "/org/gnome/gitg/Panels/Diff"; }
}
public bool available
2012-07-17 07:55:09 +00:00
{
get
2012-07-17 07:55:09 +00:00
{
var view = application.current_view;
if (view == null)
{
return false;
}
2012-07-17 07:55:09 +00:00
return (view is GitgExt.ObjectSelection);
}
2012-07-17 07:55:09 +00:00
}
public string display_name
{
owned get { return _("Diff"); }
2012-07-17 07:55:09 +00:00
}
public string? icon
2012-07-17 07:55:09 +00:00
{
owned get { return "diff-symbolic"; }
2012-07-17 07:55:09 +00:00
}
public void on_panel_activated()
{
}
2012-07-17 07:55:09 +00:00
private void on_selection_changed(GitgExt.ObjectSelection selection)
{
selection.foreach_selected((commit) => {
var c = commit as Gitg.Commit;
2012-07-17 07:55:09 +00:00
if (c != null)
{
2013-03-01 15:11:06 +00:00
d_whenMapped.update(() => {
d_diff.commit = c;
}, this);
2012-07-17 07:55:09 +00:00
return false;
}
return true;
});
}
public Gtk.Widget? widget
{
owned get
{
var objsel = (GitgExt.ObjectSelection)application.current_view;
if (objsel != d_view)
{
if (d_view != null)
{
d_view.selection_changed.disconnect(on_selection_changed);
}
d_view = objsel;
d_view.selection_changed.connect(on_selection_changed);
on_selection_changed(objsel);
2012-07-17 07:55:09 +00:00
}
2013-02-18 12:53:39 +00:00
return d_sw;
2012-07-17 07:55:09 +00:00
}
}
public bool enabled
2012-07-17 07:55:09 +00:00
{
get
{
return true;
}
2012-07-17 07:55:09 +00:00
}
public int negotiate_order(GitgExt.UIElement other)
{
// Should appear before the files
2012-07-18 07:35:28 +00:00
if (other.id == "/org/gnome/gitg/Panels/Files")
{
return -1;
}
else
{
return 0;
}
}
2012-07-17 07:55:09 +00:00
}
}
[ModuleInit]
public void peas_register_types(TypeModule module)
{
Peas.ObjectModule mod = module as Peas.ObjectModule;
mod.register_extension_type(typeof(GitgExt.Panel),
typeof(GitgDiff.Panel));
}
// ex: ts=4 noet