Main Plugin Class
Inheritance: KeePass.Plugins.Plugin
Example #1
0
 /// <summary>
 /// Windows Form Constructor when modifying existing Time Correction.
 /// </summary>
 /// <param name="plugin">Plugin Host.</param>
 /// <param name="url">URL to modify.</param>
 internal FormTimeCorrection(KeeTrayTOTPExt plugin, string url)
 {
     _plugin = plugin;                     //Defines variable from argument.
     InitializeComponent();                //Form Initialization.
     ComboBoxUrlTimeCorrection.Text = url; //Defines default value from argument.
 }
Example #2
0
 /// <summary>
 /// Windows Form Constructor.
 /// </summary>
 /// <param name="Plugin">Plugin Host.</param>
 internal SetupTOTP(KeeTrayTOTPExt Plugin, PwEntry Entry)
 {
     _plugin = Plugin;      //Defines variable from argument.
     entry   = Entry;       //Defines variable from argument.
     InitializeComponent(); //Form Initialization.
 }
Example #3
0
 /// <summary>
 /// Windows Form Constructor when creating new Time Correction.
 /// </summary>
 /// <param name="plugin">Plugin Host.</param>
 internal FormTimeCorrection(KeeTrayTOTPExt plugin)
 {
     _plugin = plugin;      //Defines variable from argument.
     InitializeComponent(); //Form Initialization.
 }
Example #4
0
 /// <summary>
 /// Windows Form Constructor.
 /// </summary>
 /// <param name="plugin">Plugin Host.</param>
 /// <param name="gettingStarted">Getting Started Display Flag.</param>
 internal FormHelp(KeeTrayTOTPExt plugin, bool gettingStarted = false)
 {
     _plugin         = plugin;
     _gettingStarted = gettingStarted;
     InitializeComponent();
 }
Example #5
0
 /// <summary>
 /// Windows Form Constructor.
 /// </summary>
 /// <param name="pPLUGIN">Plugin Host.</param>
 internal FormSettings(KeeTrayTOTPExt pPLUGIN)
 {
     _plugin = pPLUGIN;     //Defines variable from argument.
     InitializeComponent(); //Form Initialization.
 }
 /// <summary>
 /// Provides support to add a custom column to KeePass, in this case the TOTP Provider Column.
 /// </summary>
 /// <param name="plugin">Handle to the plugin class.</param>
 internal TrayTOTP_CustomColumn(KeeTrayTOTPExt plugin)
 {
     _plugin     = plugin;
     _pluginHost = _plugin.PluginHost;
 }
Example #7
0
 /// <summary>
 /// Windows Form Constructor.
 /// </summary>
 /// <param name="plugin">Plugin Host.</param>
 internal FormAbout(KeeTrayTOTPExt plugin)
 {
     _plugin = plugin;
     InitializeComponent();
 }
Example #8
0
 /// <summary>
 /// Windows Form Constructor.
 /// </summary>
 /// <param name="plugin">Plugin Host.</param>
 /// <param name="gettingStarted">Getting Started Display Flag.</param>
 internal FormHelp(KeeTrayTOTPExt plugin, bool gettingStarted = false)
 {
     _plugin = plugin;
     _gettingStarted = gettingStarted;
     InitializeComponent();
 }
 internal TrayTOTP_ColumnProvider(KeeTrayTOTPExt plugin)
 {
     _plugin = plugin;
 }
 /// <summary>
 /// Provides support to add a custom column to KeePass, in this case the TOTP Provider Column.
 /// </summary>
 /// <param name="Plugin">Handle to the plugin class.</param>
 internal TrayTOTP_CustomColumn(KeeTrayTOTPExt Plugin)
 {
     plugin = Plugin;
     m_host = plugin.m_host;
 }
Example #11
0
 /// <summary>
 /// Windows Form Constructor.
 /// </summary>
 /// <param name="pPLUGIN">Plugin Host.</param>
 internal FormSettings(KeeTrayTOTPExt pPLUGIN)
 {
     _plugin = pPLUGIN; //Defines variable from argument.
     InitializeComponent(); //Form Initialization.
 }
Example #12
0
 /// <summary>
 /// Windows Form Constructor.
 /// </summary>
 /// <param name="Plugin">Plugin Host.</param>
 internal SetupTOTP(KeeTrayTOTPExt Plugin, PwEntry Entry)
 {
     _plugin = Plugin; //Defines variable from argument.
     entry = Entry; //Defines variable from argument.
     InitializeComponent(); //Form Initialization.
 }
 /// <summary>
 /// Provides support to add a custom column to KeePass, in this case the TOTP Provider Column.
 /// </summary>
 /// <param name="Plugin">Handle to the plugin class.</param>
 internal TrayTOTP_CustomColumn(KeeTrayTOTPExt Plugin)
 {
     plugin = Plugin;
     m_host = plugin.m_host;
 }
Example #14
0
 /// <summary>
 /// Windows Form Constructor.
 /// </summary>
 /// <param name="plugin">Plugin Host.</param>
 internal FormAbout(KeeTrayTOTPExt plugin)
 {
     _plugin = plugin;
     InitializeComponent();
 }
 /// <summary>
 /// Windows Form Constructor when modifying existing Time Correction.
 /// </summary>
 /// <param name="Plugin">Plugin Host.</param>
 /// <param name="URL">URL to modify.</param>
 internal FormTimeCorrection(KeeTrayTOTPExt Plugin, string URL)
 {
     plugin = Plugin; //Defines variable from argument.
     InitializeComponent(); //Form Initialization.
     ComboBoxUrlTimeCorrection.Text = URL; //Defines default value from argument.
 }
 /// <summary>
 /// Windows Form Constructor when creating new Time Correction.
 /// </summary>
 /// <param name="Plugin">Plugin Host.</param>
 internal FormTimeCorrection(KeeTrayTOTPExt Plugin)
 {
     plugin = Plugin; //Defines variable from argument.
     InitializeComponent(); //Form Initialization.
 }