Plugin{Data,Object}.preferences() added.
This commit is contained in:
parent
53e8ee66a3
commit
4a420d372b
|
@ -37,6 +37,11 @@ namespace LAview.Core {
|
||||||
* Get Plugin readable name.
|
* Get Plugin readable name.
|
||||||
*/
|
*/
|
||||||
public abstract string get_readable_name ();
|
public abstract string get_readable_name ();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Open Preferences.
|
||||||
|
*/
|
||||||
|
public abstract void preferences ();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -58,6 +63,11 @@ namespace LAview.Core {
|
||||||
* Compose the object.
|
* Compose the object.
|
||||||
*/
|
*/
|
||||||
public abstract bool compose (Object parent, Gee.HashMap<string, AnswerValue> answers) throws Error;
|
public abstract bool compose (Object parent, Gee.HashMap<string, AnswerValue> answers) throws Error;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Open Preferences.
|
||||||
|
*/
|
||||||
|
public abstract void preferences ();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue