Files
keepass2android/src/Kp2aBusinessLogic/IDrawableFactory.cs
Philipp Crocoll 169994eb06 add option to choose Icon Sets from other apk.
Created preliminary app for ancient icons
2015-12-21 21:23:28 +01:00

19 lines
489 B
C#

using Android.Content;
using Android.Widget;
using Android.Content.Res;
using KeePassLib;
using Android.Graphics.Drawables;
namespace keepass2android
{
public interface IDrawableFactory
{
void AssignDrawableTo(ImageView iv, Context context, PwDatabase db, PwIcon icon, PwUuid customIconId, bool forGroup);
Drawable GetIconDrawable(Context context, PwDatabase db, PwIcon icon, PwUuid customIconId, bool forGroup);
bool IsWhiteIconSet { get; }
void Clear();
}
}