gitg/plugins/diff/gitg-diff.vala

142 lines
2.8 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; }
private GitgGtk.DiffView d_diff;
private GitgExt.ObjectSelection? d_view;
construct
{
d_diff = new GitgGtk.DiffView(null);
d_diff.show();
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 Icon? icon
{
owned get { return new ThemedIcon("diff-symbolic"); }
}
private void on_selection_changed(GitgExt.ObjectSelection selection)
{
selection.foreach_selected((commit) => {
var c = commit as Ggit.Commit;
if (c != null)
{
d_diff.commit = c;
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
}
return d_diff;
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