mirror of
https://gitlab.gnome.org/GNOME/gitg
synced 2024-10-31 03:48:10 +00:00
103 lines
2.4 KiB
Vala
103 lines
2.4 KiB
Vala
/*
|
|
* 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 GitgExt
|
|
{
|
|
|
|
/**
|
|
* A view action.
|
|
*
|
|
* A view action indicates a user preference to open gitg in a particular view.
|
|
*/
|
|
public enum ViewAction
|
|
{
|
|
/**
|
|
* Open gitg in the History view.
|
|
*/
|
|
HISTORY,
|
|
|
|
/**
|
|
* Open gitg in the Commit view.
|
|
*/
|
|
COMMIT,
|
|
|
|
/**
|
|
* Open gitg in the default view.
|
|
*/
|
|
DEFAULT = HISTORY
|
|
}
|
|
|
|
/**
|
|
* gitg View interface.
|
|
*
|
|
* The View interface can be implemented to provide a main view in
|
|
* gitg. An example of such views are the builtin Dashboard, History and
|
|
* Commit views.
|
|
*
|
|
* Implementations of the GitgExtView interface will be integrated
|
|
* automatically in the gitg interface according to the various interface
|
|
* methods and properties that need to be implemented.
|
|
*/
|
|
public interface View : Object, UIElement
|
|
{
|
|
/**
|
|
* Method called to reload the view.
|
|
*
|
|
* @return void
|
|
*
|
|
*/
|
|
public abstract void reload();
|
|
|
|
/**
|
|
* Give the view itself a chance to perform some actions after being
|
|
* activated.
|
|
*
|
|
* @return void
|
|
*
|
|
*/
|
|
public abstract void on_view_activated();
|
|
|
|
/**
|
|
* Check whether the view is the default view for a particular action.
|
|
*
|
|
* Implement this method when a view should be the preferred default view
|
|
* for a particular action. The first available view indicating to be
|
|
* a default view will be used as the default activated view when launching
|
|
* gitg (or when opening a repository).
|
|
*
|
|
* @param action the action
|
|
*
|
|
* @return ``true`` if the view is a default for @action, ``false`` otherwise.
|
|
*
|
|
*/
|
|
public abstract bool is_default_for(string action);
|
|
|
|
/**
|
|
* A Gtk Builder element that the panel plugins will be
|
|
* populated into.
|
|
*
|
|
* @return Gtk.Stack?
|
|
*
|
|
*/
|
|
public abstract Gtk.Stack? stack_panel { get; }
|
|
}
|
|
|
|
}
|
|
|
|
// ex: ts=4 noet
|