keepass2android/src/Kp2aBusinessLogic/IKp2aApp.cs
Philipp Crocoll d2a06617eb Refactoring:
Wiped out the historical partial Java naming conventions, replaced by C#
removed unused fields/parameters
removed many unused usings
...
(Thanks to ReSharper :-))
2013-06-15 12:40:01 +02:00

26 lines
708 B
C#

using System;
using Android.Content;
using KeePassLib.Serialization;
namespace keepass2android
{
public interface IKp2aApp
{
void SetShutdown();
Database GetDb();
void StoreOpenedFileAsRecent(IOConnectionInfo ioc, string keyfile);
Database CreateNewDatabase();
string GetResourceString(UiStringKey stringKey);
bool GetBooleanPreference(PreferenceKey key);
void AskYesNoCancel(UiStringKey titleKey, UiStringKey messageKey,
EventHandler<DialogClickEventArgs> yesHandler,
EventHandler<DialogClickEventArgs> noHandler,
EventHandler<DialogClickEventArgs> cancelHandler,
Context ctx);
}
}