2017 lines
104 KiB
XML
2017 lines
104 KiB
XML
|
<?xml version="1.0"?>
|
||
|
<doc>
|
||
|
<assembly>
|
||
|
<name>Hyphen</name>
|
||
|
</assembly>
|
||
|
<members>
|
||
|
<member name="T:Virtuoso.Hyphen.Mini.Module">
|
||
|
<summary>
|
||
|
Represents a standalone module loaded into the default AppDomain.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Mini.Module.#ctor(System.Boolean)">
|
||
|
<summary>
|
||
|
Initializes a new instance of the <see cref="T:Virtuoso.Hyphen.Mini.Module"/> class.
|
||
|
</summary>
|
||
|
<param name="exApi">TRUE if the modules runs under a post-0.7#20 API; FALSE otherwise.</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Mini.Module.Finalize">
|
||
|
<summary>
|
||
|
Finalizes the module.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Mini.Module.MirandaPluginInfo(System.UInt32)">
|
||
|
<summary>
|
||
|
Represents the MirandaPluginInfo export of Miranda's API.
|
||
|
</summary>
|
||
|
<param name="version">Miranda version (in Miranda's format)</param>
|
||
|
<returns>Ptr to an instance of the PLUGININFO(EX) structure.</returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Mini.Module.MirandaPluginInterfaces">
|
||
|
<summary>
|
||
|
Represents the MirandaPluginInterfaces export of Miranda's API.
|
||
|
</summary>
|
||
|
<returns>Ptr to an array of interface GUIDs.</returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Mini.Module.Load(System.IntPtr)">
|
||
|
<summary>
|
||
|
Represents the Load export of Miranda API. Loads Hyphen and initializes the module.
|
||
|
</summary>
|
||
|
<param name="pPluginLink">Ptr to an instance of the PLUGINLINK structure.</param>
|
||
|
<returns>Load result.</returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Mini.Module.ModulesLoadedHandler(System.Object,System.EventArgs)">
|
||
|
<summary>
|
||
|
Enables the plugin when Miranda completes initialization.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Mini.Module.Unload">
|
||
|
<summary>
|
||
|
Represents the Unload export of Miranda API. Unloads Hyphen and shuts down the runtime.
|
||
|
</summary>
|
||
|
<returns>Unload result.</returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Mini.Module.CanUnload">
|
||
|
<summary>
|
||
|
Gets a indication whether a plugin can be unloaded.
|
||
|
</summary>
|
||
|
<returns></returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Mini.Module.PublishPluginInformation(Virtuoso.Hyphen.Mini.StandalonePlugin,System.UInt32)">
|
||
|
<summary>
|
||
|
Gathers and publishes plugin information.
|
||
|
</summary>
|
||
|
<param name="plugin">Plugin to evaluate.</param>
|
||
|
<param name="version">Miranda version to pass to the plugin.</param>
|
||
|
<returns>TRUE if the information were obtained; FALSE if not.</returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Mini.Module.ProbeCustomApiExports(Virtuoso.Hyphen.Mini.StandalonePlugin)">
|
||
|
<summary>
|
||
|
Probes custom API exports of a standalone plugin.
|
||
|
</summary>
|
||
|
<param name="plugin">Plugin.</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Mini.Module.LoadActualPlugin">
|
||
|
<summary>
|
||
|
Loads the actual plugin behind a proxy assembly.
|
||
|
</summary>
|
||
|
<returns>An instance of a plugin.</returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Mini.Module.ExecuteCustomApiExport``1(System.String,System.Object[])">
|
||
|
<summary>
|
||
|
Executes a custom API export.
|
||
|
</summary>
|
||
|
<typeparam name="T">Type of the return value.</typeparam>
|
||
|
<param name="exportName">Export name.</param>
|
||
|
<param name="data">Additional data.</param>
|
||
|
<returns>Return value.</returns>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Hyphen.Mini.Module.StandalonePlugin">
|
||
|
<summary>
|
||
|
Gets a standalone plugin behind this module.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Hyphen.Mini.Module.IsPostV07Build20Api">
|
||
|
<summary>
|
||
|
Gets a value indicating whether the runtime runs under the post-0.7#20 Miranda API.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Hyphen.Mini.Module.PluginLoaded">
|
||
|
<summary>
|
||
|
Gets a value indicating whether the standalone plugin was loaded.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Hyphen.Mini.Module.PluginInitialized">
|
||
|
<summary>
|
||
|
Gets a value indicating whether the standalone plugins was initialized (i.e. has a descriptor).
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:Virtuoso.Hyphen.Mini.Module.AuxiliaryPluginManager">
|
||
|
<summary>
|
||
|
Auxiliary Plugin Manager used to load a standalone plugin into the default AppDomain.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:Virtuoso.Miranda.Plugins.Infrastructure.ContextWorker">
|
||
|
<summary>
|
||
|
Represents a base class for cross-domain callable object that operate with Miranda Context.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Mini.Module.AuxiliaryPluginManager.FinishInitialization">
|
||
|
<summary>
|
||
|
Populates context information to be available for standalone plugins residing in the default AppDomain.
|
||
|
</summary>
|
||
|
<remarks>The information are not published when there are no standalone modules to conserve resources.</remarks>
|
||
|
</member>
|
||
|
<member name="T:Virtuoso.Miranda.Plugins.MirandaPlugin.Hyphen">
|
||
|
<summary>
|
||
|
Represents an unknown plugin. Hyphen will impersonate itself with this plugin when binding to Miranda's events.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Mini.Custom.DatabaseDriver.MakeDatabaseThunk(System.String,System.Int32@)">
|
||
|
<summary>
|
||
|
MirandaContext is not available at the time of the invocation.
|
||
|
</summary>
|
||
|
<param name="profile"></param>
|
||
|
<param name="error"></param>
|
||
|
<returns></returns>
|
||
|
</member>
|
||
|
<member name="T:Virtuoso.Hyphen.Loader">
|
||
|
<summary>
|
||
|
Controls managed plugin fusion and orchestrates the runtime.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.Initialize">
|
||
|
<summary>
|
||
|
Initializes the runtime.
|
||
|
</summary>
|
||
|
<remarks>
|
||
|
Called from the exported IL stubs as a first method to initialize the Loader singleton.
|
||
|
</remarks>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.#ctor">
|
||
|
<summary>
|
||
|
Initializes the Loader and prepares its PLUGININFO.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.InitializePluginInfo">
|
||
|
<summary>
|
||
|
Publishes the plugin info and marshals it into a ptr.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.PopulatePluginInfo(Virtuoso.Hyphen.Native.PLUGININFO)">
|
||
|
<summary>
|
||
|
Populates the plugin info with Hyphen's identity.
|
||
|
</summary>
|
||
|
<param name="pluginInfo">Plugin info.</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.GetInstance(System.Version)">
|
||
|
<summary>
|
||
|
Gets a specified version of the Loader.
|
||
|
</summary>
|
||
|
<param name="requiredVersion">A version of the Loader to be returned.</param>
|
||
|
<returns>An instance of the Loader or NULL when the version cannot be satisfied.</returns>
|
||
|
<remarks>
|
||
|
Cannot be inlined because of the HyphenVersion property which relies on the Assembly.GetExecutingAssembly() method.
|
||
|
</remarks>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.GetInstance">
|
||
|
<summary>
|
||
|
Gets an instance of the Loader.
|
||
|
</summary>
|
||
|
<returns>An instance of the Loader.</returns>
|
||
|
<exception cref="T:System.InvalidOperationException"><see cref="M:Virtuoso.Hyphen.Loader.Initialize"/> method not called.</exception>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.MirandaPluginInfo(System.UInt32)">
|
||
|
<summary>
|
||
|
Represents the MirandaPluginInfo export of Miranda's API.
|
||
|
</summary>
|
||
|
<param name="version">Miranda version (in Miranda's format)</param>
|
||
|
<returns>Ptr to an instance of the PLUGININFO structure.</returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.MirandaPluginInfoEx(System.UInt32)">
|
||
|
<summary>
|
||
|
Represents the MirandaPluginInfoEx export of Miranda's API.
|
||
|
</summary>
|
||
|
<param name="version">Miranda version (in Miranda's format)</param>
|
||
|
<returns>Ptr to an instance of the PLUGININFOEX structure.</returns>
|
||
|
<remarks>
|
||
|
Specific to post-0.7#20 Miranda API.
|
||
|
</remarks>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.GetDummyPluginInfo">
|
||
|
<summary>
|
||
|
Gets the pointer to a dummy plugin info structure.
|
||
|
</summary>
|
||
|
<returns>Pointer.</returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.MirandaPluginInfoShared(System.UInt32)">
|
||
|
<summary>
|
||
|
Performs initialization steps common to all MirandaPluginInfo exports.
|
||
|
</summary>
|
||
|
<param name="version">Miranda version.</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.MirandaPluginInterfaces">
|
||
|
<summary>
|
||
|
Represents the MirandaPluginInterfaces export of Miranda's API.
|
||
|
</summary>
|
||
|
<returns>Ptr to an array of interface GUIDs.</returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.ModuleInducedLoad(System.IntPtr)">
|
||
|
<summary>
|
||
|
Called by a standalone module to ensure the Loader is ready (the module could be loaded before Hyphen).
|
||
|
</summary>
|
||
|
<param name="pPluginLink">Ptr to an instance of the PLUGINLINK structure.</param>
|
||
|
<remarks>
|
||
|
Calls the <see cref="M:Virtuoso.Hyphen.Loader.Load(System.IntPtr)"/> to ensure that the Loader is ready. This method is needed
|
||
|
to handle a situation when a standalone module is loaded before Hyphen.
|
||
|
Does nothing when Hyphen is already loaded.
|
||
|
</remarks>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.Load(System.IntPtr)">
|
||
|
<summary>
|
||
|
Represents the Load export of Miranda API. Loads Hyphen and initializes the runtime.
|
||
|
</summary>
|
||
|
<param name="pPluginLink">Ptr to an instance of the PLUGINLINK structure.</param>
|
||
|
<returns>Result.</returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.InitializeRuntimeContext(System.IntPtr)">
|
||
|
<summary>
|
||
|
Initializes the runtime context (including configuration).
|
||
|
</summary>
|
||
|
<param name="pPluginLink">Ptr to PLUGINLINK to initialize from.</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.HookRuntimeEvents">
|
||
|
<summary>
|
||
|
Hooks to the ModulesLoaded event to complete context initialization.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.CompleteInitialization(System.UIntPtr,System.IntPtr)">
|
||
|
<summary>
|
||
|
Completes the runtime initialization and fires the ModulesLoaded event.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.InitializeUpdater">
|
||
|
<summary>
|
||
|
Registers Hyphen for updates via Updater.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.InitializePluginsFolder">
|
||
|
<summary>
|
||
|
Initializes the FileSystemWatcher to watch for plugin changes.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.InitializeMenu">
|
||
|
<summary>
|
||
|
Populates Miranda's menu with Hyphen's items and initializes managed menu for plugins.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.InitializeManagedMenu">
|
||
|
<summary>
|
||
|
Initializes the managed menu for managed plugins. This menu, unlike Miranda's, supports item removal.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.Unload">
|
||
|
<summary>
|
||
|
Represents the Unload export of Miranda API. Unloads Hyphen and shuts down the runtime.
|
||
|
</summary>
|
||
|
<returns>Unload result.</returns>
|
||
|
<remarks>
|
||
|
Called by the UnloadOnShutdownService to unload managed plugins before Miranda does.
|
||
|
Managed plugins SHOULD NOT be unloaded when Miranda's unloading, because I do not consider it safe
|
||
|
(i.e. heap corruption is likely to occur).
|
||
|
</remarks>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.PerformFullUnload">
|
||
|
<summary>
|
||
|
Unloads Hyphen completelly.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.DisposePluginsWatcher">
|
||
|
<summary>
|
||
|
Disposes the plugin's folder watcher (if needed).
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.DisposePluginTasksMenu">
|
||
|
<summary>
|
||
|
Disposes the Tray manager (if needed).
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.UnloadOnShutdownService(System.UIntPtr,System.IntPtr)">
|
||
|
<summary>
|
||
|
Broadcasts the BeforeShutdown event to the managed plugins and unloads Hyphen on Miranda's shutdown.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.BroadcastBeforeMirandaExitEvent(Virtuoso.Miranda.Plugins.PluginManagerBase,System.Object)">
|
||
|
<summary>
|
||
|
Broadcasts the BeforeShutdown event to the managed plugins.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.LoadUnloadPluginsService(System.UIntPtr,System.IntPtr)">
|
||
|
<summary>
|
||
|
Loads / unloads managed plugins.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.ReloadPlugins">
|
||
|
<summary>
|
||
|
Reloads managed plugins.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.LoadPlugins">
|
||
|
<summary>
|
||
|
Loads managed plugins.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.StartFusion">
|
||
|
<summary>
|
||
|
Called by the FusionProgressDialog on another thread to perform the fusion itself.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.InitializeSandbox">
|
||
|
<summary>
|
||
|
Initializes a sandbox for plugins.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.InitializeFusionContext">
|
||
|
<summary>
|
||
|
Initializes a fusion context.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.LoadPluginManager">
|
||
|
<summary>
|
||
|
Loads the Plugin Manager.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.InitializePluginTasksMenu">
|
||
|
<summary>
|
||
|
Initializes the Tray Manager.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.InitializeUISyncContext">
|
||
|
<summary>
|
||
|
Initializes the UI sync context for event dispathing on the current thread.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.PromoteManagedMenuIntoAppDomain(Virtuoso.Miranda.Plugins.PluginManagerBase)">
|
||
|
<summary>
|
||
|
Registers managed main menu for Miranda's AddMenuItem services in an AppDomain.
|
||
|
</summary>
|
||
|
<param name="pluginManager">Plugin manager.</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.ClearStringResolverCache">
|
||
|
<summary>
|
||
|
Clears the StringResolver cache (plugins are loaded and resolvers are junk now).
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.ShowManagedMenuService(System.UIntPtr,System.IntPtr)">
|
||
|
<summary>
|
||
|
Shows managed menu.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.ConfigureModulesService(System.UIntPtr,System.IntPtr)">
|
||
|
<summary>
|
||
|
Shows a configuration dialog to configure standalone modules.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.ManagePluginsService(System.UIntPtr,System.IntPtr)">
|
||
|
<summary>
|
||
|
Shows Isolated-plugins management dialog.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.ManagePlugins">
|
||
|
<summary>
|
||
|
Shows the plugin management dialog.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.PluginsWatcherHandler(System.Object,System.IO.FileSystemEventArgs)">
|
||
|
<summary>
|
||
|
Handles a plugin file change.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.UnloadPlugins">
|
||
|
<summary>
|
||
|
Unloads managed plugins.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.UnloadPlugins(System.Boolean)">
|
||
|
<summary>
|
||
|
Unloads managed plugins.
|
||
|
</summary>
|
||
|
<param name="lazy">TRUE to perform fast unload only; FALSE to perfrom full unload.</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.TrapUnhandledException(System.Object,System.UnhandledExceptionEventArgs)">
|
||
|
<summary>
|
||
|
Handles Hyphen (default AppDomain) unhandled exceptions.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.TrapUnhandledException(System.Object,System.Threading.ThreadExceptionEventArgs)">
|
||
|
<summary>
|
||
|
Handles Windows Forms (default AppDomain) unhandled exceptions.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.VerifyFxConfiguration">
|
||
|
<summary>
|
||
|
Verifies the .config file is present and when it is not, the default one is created.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.EnsureSingleInstance">
|
||
|
<summary>
|
||
|
Ensures only a single instance of Hyphen is loaded into the process.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.GetSingletonMutexName">
|
||
|
<summary>
|
||
|
Formats singleton's mutex name.
|
||
|
</summary>
|
||
|
<returns>Mutext name.</returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.DoContextCallback(System.Delegate,System.Object[])">
|
||
|
<summary>
|
||
|
Invokes a delegate on behalf of Loader's AppDomain (i.e. the default one).
|
||
|
</summary>
|
||
|
<param name="del">Delegate.</param>
|
||
|
<param name="args">Optional arguments.</param>
|
||
|
<returns></returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Loader.VerifyDefaultDomain">
|
||
|
<summary>
|
||
|
Verifies whether the code is executing in the default AppDomain.
|
||
|
</summary>
|
||
|
<exception cref="T:System.NotSupportedException">The code is not executing in the default AppDomain.</exception>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Hyphen.Loader.HyphenVersion">
|
||
|
<summary>
|
||
|
Gets a current version of the runtime.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Hyphen.Loader.PluginsLoaded">
|
||
|
<summary>
|
||
|
Gets a value whether the plugins are loaded. Not synchronized, always use in a lock.
|
||
|
</summary>
|
||
|
<remarks>THIS MUST NOT BE SYNCHRONIZED, ALWAYS CALLED IN LOCK! (possible deadlock in FusionProgressDialog).</remarks>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Hyphen.Loader.PluginInfo">
|
||
|
<summary>
|
||
|
Gets Hyphen plugin info.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Forms.Controls.ManagedMainMenu.RegisterInterceptors(Virtuoso.Miranda.Plugins.Forms.Controls.ManagedMainMenu)">
|
||
|
<summary>
|
||
|
|
||
|
</summary>
|
||
|
<param name="menu"></param>
|
||
|
<remarks>
|
||
|
This method is static to not let the execution run in default AppDomain but in a domain of the menu itself.
|
||
|
</remarks>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ContactInfo.ContactDisplayNameOptions.Ansi">
|
||
|
<summary>
|
||
|
Will return char*, as usual.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ContactInfo.ContactDisplayNameOptions.NoMyHandle">
|
||
|
<summary>
|
||
|
Will never return the user's custom name.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ContactInfo.ContactDisplayNameOptions.Unicode">
|
||
|
<summary>
|
||
|
Will return TCHAR* instead of char*.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ContactInfo.ContactDisplayNameOptions.NoCache">
|
||
|
<summary>
|
||
|
Will not use the cache.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Infrastructure.MirandaDatabase.GetContactHandles">
|
||
|
<summary>
|
||
|
Enumerates contact handles, excluding the Me contact.
|
||
|
</summary>
|
||
|
<returns>Contact handles.</returns>
|
||
|
</member>
|
||
|
<member name="E:Virtuoso.Miranda.Plugins.Infrastructure.MirandaDatabase.BeforeEventAdded">
|
||
|
<summary>
|
||
|
Return TRUE to filter out the event, FALSE to pass the message along.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventInfo">
|
||
|
<summary>
|
||
|
Represents database event information.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventInfo.MS_DB_EVENT_GET">
|
||
|
<summary>
|
||
|
DB/Event/Get
|
||
|
Retrieves all the information stored in hDbEvent
|
||
|
wParam=(WPARAM)(HANDLE)hDbEvent
|
||
|
lParam=(LPARAM)(DBEVENTINFO*)&dbe
|
||
|
hDbEvent should have been returned by db/event/add or db/event/find*event
|
||
|
Returns 0 on success or nonzero if hDbEvent is invalid
|
||
|
Don't forget to set dbe.cbSize, dbe.pBlob and dbe.cbBlob before calling this
|
||
|
service
|
||
|
The correct value dbe.cbBlob can be got using db/event/getblobsize
|
||
|
If successful, all the fields of dbe are filled. dbe.cbBlob is set to the
|
||
|
actual number of bytes retrieved and put in dbe.pBlob
|
||
|
If dbe.cbBlob is too small, dbe.pBlob is filled up to the size of dbe.cbBlob
|
||
|
and then dbe.cbBlob is set to the required size of data to go in dbe.pBlob
|
||
|
On return, dbe.szModule is a pointer to the database module's own internal list
|
||
|
of modules. Look but don't touch.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventInfo.MS_DB_EVENT_GETCONTACT">
|
||
|
<summary>
|
||
|
DB/Event/GetContact
|
||
|
Retrieves a handle to the contact that owns hDbEvent.
|
||
|
wParam=(WPARAM)(HANDLE)hDbEvent
|
||
|
lParam=0
|
||
|
hDbEvent should have been returned by db/event/add or db/event/find*event
|
||
|
NULL is a valid return value, meaning, as usual, the user.
|
||
|
Returns (HANDLE)(-1) if hDbEvent is invalid, or the handle to the contact on
|
||
|
success
|
||
|
This service is exceptionally slow. Use only when you have no other choice at
|
||
|
all.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventInfo.MS_DB_EVENT_GETTEXT">
|
||
|
<summary>
|
||
|
DB/Event/GetText (0.7.0+)
|
||
|
Retrieves the event's text
|
||
|
wParam=(WPARAM)0 (unused)
|
||
|
lParam=(LPARAM)(DBEVENTGETTEXT*)egt - pointer to structure with parameters
|
||
|
egt->dbei should be the valid database event read via MS_DB_EVENT_GET
|
||
|
egt->datatype = DBVT_WCHAR or DBVT_ASCIIZ or DBVT_TCHAR. If a caller wants to
|
||
|
suppress Unicode part of event in answer, add DBVTF_DENYUNICODE to this field.
|
||
|
egt->codepage is any valid codepage, CP_ACP by default.
|
||
|
Function returns a pointer to a string in the required format.
|
||
|
This string should be freed by a call of mir_free
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventInfo.#ctor">
|
||
|
<summary>
|
||
|
Initializes a new instance of the <see cref="T:Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventInfo"/> class.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventInfo.#ctor(System.IntPtr)">
|
||
|
<summary>
|
||
|
Initializes a new instance of the <see cref="T:Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventInfo"/> class.
|
||
|
</summary>
|
||
|
<param name="mirandaHandle">Event handle.</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventInfo.FromHandle(System.IntPtr)">
|
||
|
<summary>
|
||
|
Creates a new instance of the <see cref="T:Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventInfo"/> from an event handle.
|
||
|
</summary>
|
||
|
<param name="mirandaHandle">Event handle.</param>
|
||
|
<returns>Database event info.</returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventInfo.FromHandle(System.IntPtr,Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventType@,Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventProperties@,System.String@,Virtuoso.Miranda.Plugins.Infrastructure.Protocol@,System.DateTime@)">
|
||
|
<summary>
|
||
|
Gets the event information based on its handle.
|
||
|
</summary>
|
||
|
<param name="eventHandle">Event handle.</param>
|
||
|
<param name="type">[OUT] Event type.</param>
|
||
|
<param name="flags">[OUT] Event flags.</param>
|
||
|
<param name="data">[OUT] Event data.</param>
|
||
|
<param name="owningModule">[OUT] Event related module.</param>
|
||
|
<param name="timestamp">[OUT] Event timestamp.</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventInfo.PrepareDbEventInfo(System.IntPtr,Virtuoso.Miranda.Plugins.Native.DBEVENTINFO@,Virtuoso.Miranda.Plugins.Native.InteropBuffer@)">
|
||
|
<summary>
|
||
|
Prepares the <see cref="T:Virtuoso.Miranda.Plugins.Native.DBEVENTINFO"/> for information extraction and the blob buffer.
|
||
|
</summary>
|
||
|
<param name="eventHandle">Event handle.</param>
|
||
|
<param name="dbEventInfo">[OUT] DB event info to marshal data into.</param>
|
||
|
<param name="buffer">[OUT] Locked Blob buffer.</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventInfo.MarshalEventInfo(System.IntPtr)">
|
||
|
<summary>
|
||
|
Initializes the instance by marshaling data from a <see cref="T:Virtuoso.Miranda.Plugins.Native.DBEVENTINFO"/> pointer.
|
||
|
</summary>
|
||
|
<param name="pDbEventInfo"><see cref="T:Virtuoso.Miranda.Plugins.Native.DBEVENTINFO"/> pointer.</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventInfo.GetEventInfo(Virtuoso.Miranda.Plugins.Native.DBEVENTINFO@,System.IntPtr,Virtuoso.Miranda.Plugins.Native.InteropBuffer,Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventType@,Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventProperties@,System.String@,Virtuoso.Miranda.Plugins.Infrastructure.Protocol@,System.DateTime@)">
|
||
|
<summary>
|
||
|
Get the event information from a <see cref="T:Virtuoso.Miranda.Plugins.Native.DBEVENTINFO"/> struct.
|
||
|
</summary>
|
||
|
<param name="dbEventInfo">[REF] <see cref="T:Virtuoso.Miranda.Plugins.Native.DBEVENTINFO"/> struct.</param>
|
||
|
<param name="mirandaHandle">Event handle (the blob buffer will be populated if not null).</param>
|
||
|
<param name="blobBuffer">Buffer to use for blob marshaling.</param>
|
||
|
<param name="type">[OUT] Event type.</param>
|
||
|
<param name="flags">[OUT] Event flags.</param>
|
||
|
<param name="data">[OUT] Event data.</param>
|
||
|
<param name="owningModule">[OUT] Event related module.</param>
|
||
|
<param name="timestamp">[OUT] Event timestamp.</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventInfo.PopulateBlobBuffer(Virtuoso.Miranda.Plugins.Native.DBEVENTINFO@,System.IntPtr)">
|
||
|
<summary>
|
||
|
Populates the blob buffer set by the <see cref="T:Virtuoso.Miranda.Plugins.Native.DBEVENTINFO"/> parameter.
|
||
|
</summary>
|
||
|
<param name="dbEventInfo">[REF] <see cref="T:Virtuoso.Miranda.Plugins.Native.DBEVENTINFO"/> struct identifiing the buffer.</param>
|
||
|
<param name="eventHandle">Event handle.</param>
|
||
|
<exception cref="T:Virtuoso.Miranda.Plugins.Native.MirandaException">Buffer could bet populated.</exception>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventInfo.GetEventTimestamp(Virtuoso.Miranda.Plugins.Native.DBEVENTINFO@,Virtuoso.Miranda.Plugins.Native.InteropBuffer,System.DateTime@)">
|
||
|
<summary>
|
||
|
Gets the event timestamp.
|
||
|
</summary>
|
||
|
<param name="dbEventInfo">[REF] <see cref="T:Virtuoso.Miranda.Plugins.Native.DBEVENTINFO"/> struct.</param>
|
||
|
<param name="blobBuffer">Buffer to reuse.</param>
|
||
|
<param name="timestamp">[OUT] Timestamp.</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventInfo.GetEventModule(Virtuoso.Miranda.Plugins.Native.DBEVENTINFO@)">
|
||
|
<summary>
|
||
|
Gets the event module.
|
||
|
</summary>
|
||
|
<param name="dbEventInfo">[REF] <see cref="!:>DBEVENTINFO"/> struct.</param>
|
||
|
<returns>Event module.</returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventInfo.GetEventData(Virtuoso.Miranda.Plugins.Native.DBEVENTINFO@)">
|
||
|
<summary>
|
||
|
Gets the event data.
|
||
|
</summary>
|
||
|
<param name="dbEventInfo">[REF] <see cref="T:Virtuoso.Miranda.Plugins.Native.DBEVENTINFO"/> struct.</param>
|
||
|
<returns>Event data.</returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventInfo.FromPointer(System.IntPtr)">
|
||
|
<summary>
|
||
|
Marshals the <see cref="T:Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventInfo"/> from a <see cref="T:Virtuoso.Miranda.Plugins.Native.DBEVENTINFO"/> struct pointer.
|
||
|
</summary>
|
||
|
<param name="pDbEventInfo"><see cref="T:Virtuoso.Miranda.Plugins.Native.DBEVENTINFO"/> struct pointer.</param>
|
||
|
<returns>Event info.</returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventInfo.GetContactHandle">
|
||
|
<summary>
|
||
|
Gets the handle of the contact owning this event. This method is very slow, use wisely.
|
||
|
</summary>
|
||
|
<returns>Associated contact handle.</returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Infrastructure.DatabaseEventInfo.GetContactHandle(System.IntPtr)">
|
||
|
<summary>
|
||
|
Gets the handle of the contact owning this event. This method is very slow, use wisely.
|
||
|
</summary>
|
||
|
<param name="eventHandle">Event handle to get the contact handle for.</param>
|
||
|
<returns>Associated contact handle.</returns>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolFlagsKind.Capabilities">
|
||
|
<summary>
|
||
|
The network capabilities that the protocol supports.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolFlagsKind.StatusModes">
|
||
|
<summary>
|
||
|
The status modes that the protocol supports.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolFlagsKind.AwayStatusModes">
|
||
|
<summary>
|
||
|
The status modes that the protocol supports away-style messages for. Uses the <see cref="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolFlagsKind.StatusModes"/> flags.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.None">
|
||
|
<summary>
|
||
|
None.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.IMSend">
|
||
|
<summary>
|
||
|
Supports IM sending.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.IMReceive">
|
||
|
<summary>
|
||
|
Supports IM receiving.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.UrlSend">
|
||
|
<summary>
|
||
|
Aupports separate URL sending.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.UrlReceive">
|
||
|
<summary>
|
||
|
Supports separate URL receiving.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.FileSend">
|
||
|
<summary>
|
||
|
Supports file sending.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.FileReceive">
|
||
|
<summary>
|
||
|
Supports file receiving.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.ModeMessageSend">
|
||
|
<summary>
|
||
|
Supports broadcasting away messages.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.ModeMessageReceive">
|
||
|
<summary>
|
||
|
Supports reading others' away messages.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.ServerContactList">
|
||
|
<summary>
|
||
|
Contact lists are stored on the server, not locally. See notes below.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.AuthorizationRequired">
|
||
|
<summary>
|
||
|
Will get authorisation requests for some or all contacts.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.Added">
|
||
|
<summary>
|
||
|
Will get 'you were added' notifications.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.VisibleList">
|
||
|
<summary>
|
||
|
Has an invisible list.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.InvisibleList">
|
||
|
<summary>
|
||
|
Has a visible list for when in invisible mode.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.IndividualStatus">
|
||
|
<summary>
|
||
|
Supports setting different status modes to each contact.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.Extensible">
|
||
|
<summary>
|
||
|
the protocol is extensible and Supports plugin-defined messages.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.P2P">
|
||
|
<summary>
|
||
|
Supports direct (not server mediated) communication between clients.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.NewUser">
|
||
|
<summary>
|
||
|
Supports creation of new user IDs.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.Chat">
|
||
|
<summary>
|
||
|
Has a realtime chat capability.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.IndividualModeMessage">
|
||
|
<summary>
|
||
|
Supports replying to a mode message request with different text depending on the contact requesting.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.BasicSearch">
|
||
|
<summary>
|
||
|
Supports a basic user searching facility.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.ExtendedSearch">
|
||
|
<summary>
|
||
|
Supports one or more protocol-specific extended search schemes.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.CanRenameFile">
|
||
|
<summary>
|
||
|
Supports renaming of incoming files as they are transferred.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.FileResume">
|
||
|
<summary>
|
||
|
Can resume broken file transfers.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.AddSearches">
|
||
|
<summary>
|
||
|
Can add search results to the contact list.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.ContactSend">
|
||
|
<summary>
|
||
|
Can send contacts to other users.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.ContactReceive">
|
||
|
<summary>
|
||
|
Can receive contacts from other users.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.ChangeInfo">
|
||
|
<summary>
|
||
|
Can change our user information stored on server.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.SearchByEmail">
|
||
|
<summary>
|
||
|
Supports a search by e-mail feature.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.UserIDIsEmail">
|
||
|
<summary>
|
||
|
Set if the uniquely identifying field of the network is the e-mail address.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.SearchByName">
|
||
|
<summary>
|
||
|
Supports searching by nick/first/last names.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.ExtendedSearchUI">
|
||
|
<summary>
|
||
|
Has a dialog box to allow searching all the possible fields.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ProtocolCapabilities.NumericUserID">
|
||
|
<summary>
|
||
|
The unique user IDs for this protocol are numeric.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ContactListEventProperties.Urgent">
|
||
|
<summary>
|
||
|
Flashes the icon even if the user is occupied, and puts the event at the top of the queue.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.ContactListEventProperties.Minor">
|
||
|
<summary>
|
||
|
The icon will not flash for ever, only a few times. This is for eg online alert.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Forms.ErrorDialog.components">
|
||
|
<summary>
|
||
|
Required designer variable.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Forms.ErrorDialog.Dispose(System.Boolean)">
|
||
|
<summary>
|
||
|
Clean up any resources being used.
|
||
|
</summary>
|
||
|
<param eventName="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Forms.ErrorDialog.InitializeComponent">
|
||
|
<summary>
|
||
|
Required method for Designer support - do not modify
|
||
|
the contents of this method with the code editor.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<!-- Ungültiger XML-Kommentar wurde für den Member "F:Virtuoso.Miranda.Plugins.Infrastructure.MirandaContext.MS_SYSTEM_GET_MMI" ignoriert -->
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Infrastructure.MirandaContext.InitializeCurrent(Virtuoso.Hyphen.MirandaPluginLink,System.Boolean)">
|
||
|
<summary>
|
||
|
Initializes a context from a plugin link.
|
||
|
</summary>
|
||
|
<param name="mirandaLink"></param>
|
||
|
<param name="skipContextPopulation"></param>
|
||
|
</member>
|
||
|
<member name="T:Virtuoso.Miranda.Plugins.Infrastructure.LazyEventBinder">
|
||
|
<summary>
|
||
|
Represents a late-binded master subscriber of Miranda events.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Native.DBEVENTINFO.LayoutAnsiUniString(System.String,System.IntPtr@)">
|
||
|
<summary>
|
||
|
Formats the ANSI-\0-UNICODE-\0\0 layout in the memory.
|
||
|
</summary>
|
||
|
<param name="data">String to layout.</param>
|
||
|
<param name="pBlob">[OUT] Blob pointer to the resulting memory layout.</param>
|
||
|
<returns>Blob size in bytes.</returns>
|
||
|
<remarks>Message blob format: ansi\0unicode\0\0</remarks>
|
||
|
</member>
|
||
|
<member name="T:Virtuoso.Miranda.Plugins.Resources.TextResources">
|
||
|
<summary>
|
||
|
Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ResourceManager">
|
||
|
<summary>
|
||
|
Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.Culture">
|
||
|
<summary>
|
||
|
Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
||
|
Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.Balloon_Text_FusionFinished">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Hyphen plugins are enabled and ready to use. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.Config_General">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die General ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.Config_General_About">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die About ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.Config_General_About_Description">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Show Hyphen copyright information. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.Config_General_Description">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Review Hyphen information. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.Config_Management">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Management ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.Config_Management_Description">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Manage Hyphen plugins. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.Config_Management_Plugins">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Plugins ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.Config_Management_Plugins_Description">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Enable or disable Hyphen plugins on individual basis. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_CallInvalidForUnknownNetworkProtocol">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die This operation is not supported for an unknown protocol. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_CannotDetectMirandaDefaultStringEncoding">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Cannot detect the default string encoding used in Miranda. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_CannotFinishMarshaling">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die An internal error occurred in the PluginManager while working with unmanaged memory. Contact Hyphen vendor, please. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_CannotOpenHomePage">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die An error occurred while opening plugin home page. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_CannotRegisterBuiltinProtocol">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Cannot register/unregister builtin protocol. Only custom protocol can be registered/unregistered. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_ConfigurationFailed">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Unable to initialize Hyphen configuration. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_DuplicitLoaderOptions">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Duplicit loader options detected. RequiredVersion or MinimalMirandaVersion were set by a base class previously. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_ErrorWhileCallingMirandaService">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Cannot complete the service call. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_ErrorWhileLoadingPlugins">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die An error occurred while loading plugins. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_FeatureNotAvailableInDomain">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die The feature is not available from current domain. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_Formatable1_AssemblyLoadError">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Cannot load plugin '{0}' - {1} ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_Formatable1_CannotLoadStringResolver">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Cannot load string resolver of type '{0}'. Check if there is a public default .ctor. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_Formatable1_EventHookingFailed">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Failed hooking event '{0}'. Check event name. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_Formatable1_ExplicitPluginLoadForbidden">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Cannot load plugin '{0}' - this plugin cannot be loaded automatically. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_Formatable1_InvalidMethodSignature">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Unable to process method '{0}' - method signature does not match required delegate signature. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_Formatable1_NoValidPluginCtorFound">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Cannot instantiate plugin type '{0}' - no valid constructor found. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_Formatable1_ServiceFunctionAlreadyExists">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Cannot create service function '{0}' - the service already exists. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_Formatable1_ServiceFunctionCreationFailed">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Failed creating service function '{0}'. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_Formatable1_UnableToLoadMasterType">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Master type for the {0} standalone plugin proxy not found. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_Formatable1_UnableToSetUpPluginDescriptor">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Unable to initialize plugin descriptor - {0} ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_Formatable1_UnauthorizedToInstantiatePlugin">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die An error occurred while instantiating plugin type '{0}' - Hyphen is not allowed to load the plugin. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_Formatable1_UnmanagedImageFound">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Cannot load plugin '{0}' - the image is not a valid CLI assembly. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_Formatable2_ErrorWhileInstantiatingPlugin">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die An error occurred while instantiating plugin type '{0}' - constructor threw an exception ({1}). ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_Formatable2_MirandaServiceReturnedFailure">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Cannot complete requested operation - Miranda service '{0}' returned {1}. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_Formatable2_RuntimeVersionNotAvailable">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Plugin {0} requires {1} but this version is not available, the plugin cannot be loaded. Please download the latest version. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_Formatable3_MenuItemServiceAlreadySet">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Cannot associate menu item '{0}' with method '{1}' - the item is already associated with service '{2}'. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_HookNotFound">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Hook not found. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_HyphenSxSNotSupported">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Multiple Hyphen plugins are not supported side-by-side. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_InternalErrorOccurred">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die An internal error occurred in Hyphen. Please contact Hyphen's author. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_InteropBufferNotLocked">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Cannot access the InteropBuffer without locking it before. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_InteropBufferNotUnlocked">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Cannot perform the requested operation on a locked buffer. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_InvalidCrossThreadInteropBufferUnlock">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Cannot unlock the buffer from a thread that does not locked it. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_InvalidFusionContext">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Invalid fusion context. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_InvalidHandle">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die The handle is invalid. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_InvalidValueToTranslate">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Cannot translate this value - invalid value address or value format. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_IOErrorOccurred">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Cannot load plugins - I/O error occurred. Check if you have permissions to access the 'Miranda\plugins\managed' directory. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_MirandaContextNotAvailable">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Miranda context has not been initialized yet. The context will be initialialized in the Load export, until then, context calls are not supported. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_MirandaRestartRequired">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Miranda must be restarted. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_OwnerUnknown">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Cannot read the setting on behalf of the owning module - the owning module cannot be determined. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_PluginAlreadyInitialized">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Internal error - cannot reinitialize already initialized plugin. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_PluginManagerAlreadyInitialized">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Already initialized. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_PluginNotInitialized">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Cannot complete requested operation - this plugin has not been loaded yet. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_SingletonNotInitializedYet">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Internal error occurred, cannot return requested information. The singleton has not been initialized yet. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_UnableToLoadConfiguration_StorageError">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die An error occurred while working with the Configuration Storage to load configuration. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_UnableToSaveConfiguration_StorageError">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die An error occurred while working with the Configuration Storage to save configuration. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.ExceptionMsg_UnableToUnloadPluginMangerFromCurrentAppDomain">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Unable to unload plugin manager - cannot initiate shutdown from its own AppDomain. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.MsgBox_Caption_HyphenCrashed">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Hyphen crashed ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.MsgBox_Caption_HyphenLoadFailed">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Unable to load Hyphen ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.MsgBox_Caption_LoadUnloadPlugins">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Hyphen plugins ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.MsgBox_Caption_LoadUnloadPluginsFailure">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Unable to load/unload plugins ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.MsgBox_Caption_NoOptionsAvailable">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die No options available ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.MsgBox_Caption_NoPluginsLoaded">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die No plugins enabled ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.MsgBox_Caption_PluginReloadComplete">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Plugins updated ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.MsgBox_Caption_RuntimeVersionNotAvailable">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Runtime version problem ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.MsgBox_Caption_Warning">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Warning ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.MsgBox_Formatable1_Caption_PluginError">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die {0} error ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.MsgBox_Formatable1_Caption_PluginUpdated">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Plugin {0} updated ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.MsgBox_Formatable1_Text_HyphenLoadFailed">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Unable to load Hyphen - {0} ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.MsgBox_Formatable1_Text_LoadUnloadPluginsFailure">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die An error occurred while loading/unloading managed plugins - {0}. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.MsgBox_Formatable1_Text_ModuleError">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die An error occured in the {0} plugin, some information may be lost. However, the plugin will continue running. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.MsgBox_Formatable2_Text_PluginError">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die An error occurred in the {1} plugin - {2}{0}{0}Press OK to disable the plugin, otherwise press Cancel. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.MsgBox_Text_GenericPluginError">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Some information may be lost. However, the plugin will continue running. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.MsgBox_Text_HyphenCrashed">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die An error occured in Hyphen. Please, contact its author to resolve the issue. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.MsgBox_Text_LoadUnloadPlugins_Unload">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die You are about to disable all Hyphen plugins. Are you sure? ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.MsgBox_Text_MirandaRestartRequired">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die There was an error with Microsoft.net configuration files. These files are critical for Hyphen execution. The problem was corrected but Miranda must be restarted to apply changes. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.MsgBox_Text_NoOptionsAvailable">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die This plugin has no options to configure. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.MsgBox_Text_NoPluginsLoaded">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die To perform the task, you have to enable the plugins first. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.MsgBox_Text_PluginReloadComplete">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Hyphen plugins were successfully reloaded. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.MsgBox_Text_PluginUpdated">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Hyphen plugins were updated. Do you wish to reload them? ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.MsgBox_Text_UnableToReportError">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die An error occured while preparing the report. Copy the details and visit http://forums.miranda-im.org for assistance. ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.UI_Caption_Configure">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Configure ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.UI_Caption_Error">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Error ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.UI_Formatable1_Text_PluginCrashed">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die {0} crashed ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.UI_Label_Empty">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die (no items / plugins loaded) ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.UI_Label_SelectPluginToDisplayDescr">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die (select a plugin) ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.UI_Label_Unknown">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die <unknown> ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.UI_Text_ConfigureStandaloneModules">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Options... ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.UI_Text_Hyphen">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Hyphen ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.UI_Text_LoadUnloadPlugins">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Enable or disable plugins ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.UI_Text_ManagePlugins">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Manage plugins... ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.UI_Text_No">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die No ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.UI_Text_ShowManagedMainMenu">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Extra items... ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.UI_Text_Yes">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Yes ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.TextResources.UI_ToolTip_HyphenTrayIcon">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Zeichenfolge, die Hyphen ähnelt.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:Virtuoso.Miranda.Plugins.Resources.VisualResources">
|
||
|
<summary>
|
||
|
Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.VisualResources.ResourceManager">
|
||
|
<summary>
|
||
|
Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.VisualResources.Culture">
|
||
|
<summary>
|
||
|
Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
||
|
Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.VisualResources.Engine">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Ressource vom Typ System.Drawing.Icon ähnlich wie (Symbol).
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.VisualResources.Icon_16x16_Configuration">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Ressource vom Typ System.Drawing.Icon ähnlich wie (Symbol).
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.VisualResources.Icon_16x16_Hyphen">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Ressource vom Typ System.Drawing.Icon ähnlich wie (Symbol).
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.VisualResources.Icon_32x32_Configuration">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Ressource vom Typ System.Drawing.Icon ähnlich wie (Symbol).
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.VisualResources.Icon_32x32_ConfigurationWarning">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Ressource vom Typ System.Drawing.Icon ähnlich wie (Symbol).
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.VisualResources.Image_48x48_Warning">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.VisualResources.Image_64x67_Configuration">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.VisualResources.Image_64x67_Information">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Resources.VisualResources.Image_64x67_Management">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Configuration.Forms.Controls.CategoryItemControl.OnSelected">
|
||
|
<summary>
|
||
|
Occurs when a control is selected and before it is prepared to be shown.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Configuration.Forms.Controls.CategoryItemControl.OnShow(System.Boolean)">
|
||
|
<summary>
|
||
|
Occurs when a control is about to be shown. The control is shown when the user clicks on its item.
|
||
|
</summary>
|
||
|
<param name="firstTime">TRUE if the control is being requested for the first time; FALSE if it is requested repeatedly.</param>
|
||
|
<returns>TRUE to cancel the display; FALSE to continue.</returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Configuration.Forms.Controls.CategoryItemControl.OnHide">
|
||
|
<summary>
|
||
|
Occurs when a control is about to be hidden. The control is hidden when the user clicks on another item.
|
||
|
</summary>
|
||
|
<returns>TRUE to cancel the dismissal; FALSE to continue.</returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Configuration.Forms.Controls.CategoryItemControl.Save">
|
||
|
<summary>
|
||
|
Occurs when the user dismisses the configuration dialog via OK button and the control is dirty. The control should save its settings now.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Configuration.Forms.Controls.CategoryItemControl.Close">
|
||
|
<summary>
|
||
|
Occurs when the user dismisses the configuration dialog via OK or CANCEL button.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Configuration.Forms.Controls.CategoryItemControl.SetControlDirtyHandler(System.Object,System.EventArgs)">
|
||
|
<summary>
|
||
|
Marks the control dirty.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Configuration.Forms.Controls.CategoryItemControl.HasUI">
|
||
|
<summary>
|
||
|
Gets a value indicating whether the control has an UI to show.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Configuration.Forms.Controls.PluginManagementContent.components">
|
||
|
<summary>
|
||
|
Required designer variable.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Configuration.Forms.Controls.PluginManagementContent.Dispose(System.Boolean)">
|
||
|
<summary>
|
||
|
Clean up any resources being used.
|
||
|
</summary>
|
||
|
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Configuration.Forms.Controls.PluginManagementContent.InitializeComponent">
|
||
|
<summary>
|
||
|
Required method for Designer support - do not modify
|
||
|
the contents of this method with the code editor.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:Virtuoso.Miranda.Plugins.Configuration.Forms.ConfigurationDialog">
|
||
|
<codename>Casablanca</codename>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Forms.PluginDialog.UnregisterDialog">
|
||
|
<summary>
|
||
|
Remove the dialog from the active dialog tracking list.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Forms.PluginDialog.UnregisterAndGetActiveDialogs(Virtuoso.Miranda.Plugins.PluginDescriptor)">
|
||
|
<summary>
|
||
|
Gathers active dialogs of the plugin and unregisters them.
|
||
|
</summary>
|
||
|
<param name="plugin">Plugin.</param>
|
||
|
<returns>Unregistered dialogs to dispose.</returns>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Configuration.Forms.ConfigurationDialog.components">
|
||
|
<summary>
|
||
|
Required designer variable.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Configuration.Forms.ConfigurationDialog.Dispose(System.Boolean)">
|
||
|
<summary>
|
||
|
Clean up any resources being used.
|
||
|
</summary>
|
||
|
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Configuration.Forms.ConfigurationDialog.InitializeComponent">
|
||
|
<summary>
|
||
|
Required method for Designer support - do not modify
|
||
|
the contents of this method with the code editor.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Configuration.Forms.Controls.CategoryItemHeader.components">
|
||
|
<summary>
|
||
|
Required designer variable.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Configuration.Forms.Controls.CategoryItemHeader.Dispose(System.Boolean)">
|
||
|
<summary>
|
||
|
Clean up any resources being used.
|
||
|
</summary>
|
||
|
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Configuration.Forms.Controls.CategoryItemHeader.InitializeComponent">
|
||
|
<summary>
|
||
|
Required method for Designer support - do not modify
|
||
|
the contents of this method with the code editor.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Configuration.Forms.Controls.CategoryItemSection.components">
|
||
|
<summary>
|
||
|
Required designer variable.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Configuration.Forms.Controls.CategoryItemSection.Dispose(System.Boolean)">
|
||
|
<summary>
|
||
|
Clean up any resources being used.
|
||
|
</summary>
|
||
|
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Configuration.Forms.Controls.CategoryItemSection.InitializeComponent">
|
||
|
<summary>
|
||
|
Required method for Designer support - do not modify
|
||
|
the contents of this method with the code editor.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:Virtuoso.Miranda.Plugins.Forms.Controls.CueBannerTextBox">
|
||
|
<summary>
|
||
|
Draws a textbox with a prompt inside of it, similar to the "Quick Search" box
|
||
|
in Outlook 2007, IE7 or the Firefox 2.0 search box. The prompt will disappear when
|
||
|
the focus is placed in the textbox, and will not display again if the Text property
|
||
|
contains any value. If the Text property is empty, then the prompt will display
|
||
|
again when the textbox loses the focus.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Forms.Controls.CueBannerTextBox.#ctor">
|
||
|
<summary>
|
||
|
Public constructor
|
||
|
</summary>
|
||
|
<remarks>Uncomment the SetStyle line to activate the OnPaint logic in place of the WndProc logic</remarks>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Forms.Controls.CueBannerTextBox.OnEnter(System.EventArgs)">
|
||
|
<summary>
|
||
|
When the textbox receives an OnEnter event, select all the text if any text is present
|
||
|
</summary>
|
||
|
<param name="e"></param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Forms.Controls.CueBannerTextBox.OnTextAlignChanged(System.EventArgs)">
|
||
|
<summary>
|
||
|
Redraw the control when the text alignment changes
|
||
|
</summary>
|
||
|
<param name="e"></param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Forms.Controls.CueBannerTextBox.OnPaint(System.Windows.Forms.PaintEventArgs)">
|
||
|
<summary>
|
||
|
Redraw the control with the prompt
|
||
|
</summary>
|
||
|
<param name="e"></param>
|
||
|
<remarks>This event will only fire if ControlStyles.UserPaint is set to true in the constructor</remarks>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Forms.Controls.CueBannerTextBox.WndProc(System.Windows.Forms.Message@)">
|
||
|
<summary>
|
||
|
Overrides the default WndProc for the control
|
||
|
</summary>
|
||
|
<param name="m">The Windows message structure</param>
|
||
|
<remarks>
|
||
|
This technique is necessary because the OnPaint event seems to be doing some
|
||
|
extra processing that I haven't been able to figure out.
|
||
|
</remarks>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Forms.Controls.CueBannerTextBox.DrawTextPrompt">
|
||
|
<summary>
|
||
|
Overload to automatically create the Graphics region before drawing the text prompt
|
||
|
</summary>
|
||
|
<remarks>The Graphics region is disposed after drawing the prompt.</remarks>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Forms.Controls.CueBannerTextBox.DrawTextPrompt(System.Drawing.Graphics)">
|
||
|
<summary>
|
||
|
Draws the PromptText in the TextBox.ClientRectangle using the PromptFont and PromptForeColor
|
||
|
</summary>
|
||
|
<param name="g">The Graphics region to draw the prompt on</param>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Forms.FusionProgressDialog.components">
|
||
|
<summary>
|
||
|
Required designer variable.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Forms.FusionProgressDialog.Dispose(System.Boolean)">
|
||
|
<summary>
|
||
|
Clean up any resources being used.
|
||
|
</summary>
|
||
|
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Forms.FusionProgressDialog.InitializeComponent">
|
||
|
<summary>
|
||
|
Required method for Designer support - do not modify
|
||
|
the contents of this method with the code editor.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Forms.InformationDialog.components">
|
||
|
<summary>
|
||
|
Required designer variable.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Forms.InformationDialog.Dispose(System.Boolean)">
|
||
|
<summary>
|
||
|
Clean up any resources being used.
|
||
|
</summary>
|
||
|
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Forms.InformationDialog.InitializeComponent">
|
||
|
<summary>
|
||
|
Required method for Designer support - do not modify
|
||
|
the contents of this method with the code editor.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Hyphen.Configuration.Controls.AboutContent.components">
|
||
|
<summary>
|
||
|
Required designer variable.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Configuration.Controls.AboutContent.Dispose(System.Boolean)">
|
||
|
<summary>
|
||
|
Clean up any resources being used.
|
||
|
</summary>
|
||
|
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Configuration.Controls.AboutContent.InitializeComponent">
|
||
|
<summary>
|
||
|
Required method for Designer support - do not modify
|
||
|
the contents of this method with the code editor.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:Virtuoso.Miranda.Plugins.IInternalConfigurator">
|
||
|
<summary>
|
||
|
Represents a marker interface for classes wrapping Hyphen runtime configuration.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:Virtuoso.Hyphen.Mini.ProtocolPlugin">
|
||
|
<summary>
|
||
|
Represents a base class for managed Miranda protocols.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Mini.ProtocolPlugin.#ctor">
|
||
|
<summary>
|
||
|
Initializes a new instance of the <see cref="T:Virtuoso.Hyphen.Mini.ProtocolPlugin"/> class.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Mini.ProtocolPlugin.LoadInternal(System.IntPtr)">
|
||
|
<summary>
|
||
|
Initializes the instance and creates essential protocol services.
|
||
|
</summary>
|
||
|
<param name="pPluginLink"></param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Mini.ProtocolPlugin.UnloadInternal">
|
||
|
<summary>
|
||
|
Unloads the protocol.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Mini.ProtocolPlugin.PSGetName(System.UIntPtr,System.IntPtr)">
|
||
|
<summary>
|
||
|
Gets a human-readable name for the protocol.
|
||
|
</summary>
|
||
|
<param name="capacity">The number of characters in the buffer.</param>
|
||
|
<param name="pBuffer">Buffer pointer.</param>
|
||
|
<returns>Returns 0 on success, nonzero on failure.</returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Mini.ProtocolPlugin.PSGetStatus(System.UIntPtr,System.IntPtr)">
|
||
|
<summary>
|
||
|
Gets the status mode that a protocol is currently in.
|
||
|
</summary>
|
||
|
<param name="wParam">Not used.</param>
|
||
|
<param name="lParam">Not used.</param>
|
||
|
<returns>Returns the status mode.</returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Mini.ProtocolPlugin.PSSetStatus(System.UIntPtr,System.IntPtr)">
|
||
|
<summary>
|
||
|
Changes the protocol's status mode.
|
||
|
</summary>
|
||
|
<param name="newStatusRaw">New status values.</param>
|
||
|
<param name="lParam">Not used.</param>
|
||
|
<returns>Returns 0 on success, nonzero on failure.</returns>
|
||
|
<remarks>
|
||
|
Will send an ack with:
|
||
|
type=ACKTYPE_STATUS, result=ACKRESULT_SUCCESS, hProcess=(HANDLE)previousMode, lParam=newMode.
|
||
|
</remarks>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Mini.ProtocolPlugin.PSLoadIcon(System.UIntPtr,System.IntPtr)">
|
||
|
<summary>
|
||
|
Loads one of the protocol-specific icons
|
||
|
</summary>
|
||
|
<param name="whichIcon">Which icon (currently ignored).</param>
|
||
|
<param name="lParam">Not used.</param>
|
||
|
<returns>Icon handle (HICON).</returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Mini.ProtocolPlugin.PSGetCaps(System.UIntPtr,System.IntPtr)">
|
||
|
<summary>
|
||
|
Gets the capability flags of the module.
|
||
|
</summary>
|
||
|
<param name="flagsNum">Flags category.</param>
|
||
|
<param name="lParam">Not used.</param>
|
||
|
<returns></returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Hyphen.Mini.ProtocolPlugin.PSSSendMessage(System.UIntPtr,System.IntPtr)">
|
||
|
<summary>
|
||
|
Sends an instant message.
|
||
|
</summary>
|
||
|
<param name="flags">Flags.</param>
|
||
|
<param name="pCcsData">Contact-Chain-Send data pointer.</param>
|
||
|
<returns>Returns a hProcess corresponding to the one in the ack event.</returns>
|
||
|
<remarks>
|
||
|
Will send an ack when the message actually gets sent type=ACKTYPE_MESSAGE, result=success/failure, lParam=0.
|
||
|
</remarks>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Hyphen.Mini.ProtocolPlugin.PluginInterfaces">
|
||
|
<summary>
|
||
|
Gets the plugin interfaces.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Hyphen.Mini.ProtocolPlugin.ThisProtocol">
|
||
|
<summary>
|
||
|
Gets the managed protocol descriptor for this module.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Hyphen.Mini.ProtocolPlugin.ProtocolType">
|
||
|
<summary>
|
||
|
Gets the protocol type.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Hyphen.Mini.ProtocolPlugin.ProtocolIcon">
|
||
|
<summary>
|
||
|
Gets the protocol icon.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Hyphen.Mini.ProtocolPlugin.SupportedCapabilities">
|
||
|
<summary>
|
||
|
Gets the protocol supported capabilities.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Hyphen.Mini.ProtocolPlugin.SupportedAwayStatusModes">
|
||
|
<summary>
|
||
|
Gets the status modes the protocol supports an away message for.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Hyphen.Mini.ProtocolPlugin.SupportedStatusModes">
|
||
|
<summary>
|
||
|
Gets the protocol supported status modes.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Hyphen.Mini.ProtocolPlugin.ProtocolStatus">
|
||
|
<summary>
|
||
|
Gets or sets the protocol status.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:Virtuoso.Miranda.Plugins.Helpers.IniStructure">
|
||
|
<summary>
|
||
|
Handles Ini categories, keys and their associated values, static methods implemented for file
|
||
|
handling (saving and reading)
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Helpers.IniStructure.#ctor">
|
||
|
<summary>
|
||
|
Initialies a new IniStructure
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Helpers.IniStructure.AddCategory(System.String)">
|
||
|
<summary>
|
||
|
Adds a category to the IniStructure
|
||
|
</summary>
|
||
|
<param name="Name">Name of the new category</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Helpers.IniStructure.DeleteCategory(System.String)">
|
||
|
<summary>
|
||
|
Deletes a category and its contents
|
||
|
</summary>
|
||
|
<param name="Name">category to delete</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Helpers.IniStructure.RenameCategory(System.String,System.String)">
|
||
|
<summary>
|
||
|
Renames a category
|
||
|
</summary>
|
||
|
<param name="Name">Category to rename</param>
|
||
|
<param name="NewName">New name</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Helpers.IniStructure.GetCategories">
|
||
|
<summary>
|
||
|
Returns the names of all categories
|
||
|
</summary>
|
||
|
<returns></returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Helpers.IniStructure.GetCategoryName(System.Int32)">
|
||
|
<summary>
|
||
|
Returns the name of a category by specifying the index.
|
||
|
Useful to enumerate through all categories.
|
||
|
</summary>
|
||
|
<param name="Index">The category index</param>
|
||
|
<returns></returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Helpers.IniStructure.AddValue(System.String,System.String,System.String)">
|
||
|
<summary>
|
||
|
Adds a key-value pair to a specified category
|
||
|
</summary>
|
||
|
<param name="CategoryName">Name of the category</param>
|
||
|
<param name="Key">New name of the key</param>
|
||
|
<param name="Value">Associated value</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Helpers.IniStructure.GetValue(System.String,System.String)">
|
||
|
<summary>
|
||
|
Returns the value of a key-value pair in a specified category by specifying the key
|
||
|
</summary>
|
||
|
<param name="CategoryName">Name of the category</param>
|
||
|
<param name="Key">Name of the Key</param>
|
||
|
<returns></returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Helpers.IniStructure.GetValue(System.Int32,System.Int32)">
|
||
|
<summary>
|
||
|
Returns the key-value pair in a specified category by specifying the index
|
||
|
</summary>
|
||
|
<param name="CategoryName">Index of the category</param>
|
||
|
<param name="Key">Index of the Key</param>
|
||
|
<returns></returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Helpers.IniStructure.GetKeyName(System.Int32,System.Int32)">
|
||
|
<summary>
|
||
|
Returns the name of the key in a key-value pair in a specified category by specifying the index
|
||
|
</summary>
|
||
|
<param name="CatIndex">Index of the category</param>
|
||
|
<param name="KeyIndex">Index of the key</param>
|
||
|
<returns></returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Helpers.IniStructure.DeleteValue(System.String,System.String)">
|
||
|
<summary>
|
||
|
Deletes a key-value pair
|
||
|
</summary>
|
||
|
<param name="CategoryName">Name of the category</param>
|
||
|
<param name="Key">Name of the Key</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Helpers.IniStructure.RenameKey(System.String,System.String,System.String)">
|
||
|
<summary>
|
||
|
Renames the keyname in a key-value pair
|
||
|
</summary>
|
||
|
<param name="CategoryName">Name of the category</param>
|
||
|
<param name="KeyName">Name of the Key</param>
|
||
|
<param name="NewKeyName">New name of the Key</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Helpers.IniStructure.ModifyValue(System.String,System.String,System.String)">
|
||
|
<summary>
|
||
|
Modifies the value in a key-value pair
|
||
|
</summary>
|
||
|
<param name="CategoryName">Name of the category</param>
|
||
|
<param name="KeyName">Name of the Key</param>
|
||
|
<param name="NewValue">New name of the Key</param>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Helpers.IniStructure.GetKeys(System.String)">
|
||
|
<summary>
|
||
|
Returns all keys in a category
|
||
|
</summary>
|
||
|
<param name="CategoryName">Name of the category</param>
|
||
|
<returns></returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Helpers.IniStructure.WriteIni(Virtuoso.Miranda.Plugins.Helpers.IniStructure,System.String,System.String)">
|
||
|
<summary>
|
||
|
Writes an IniStructure to a file with a comment.
|
||
|
</summary>
|
||
|
<param name="IniData">The contents to write</param>
|
||
|
<param name="Filename">The complete path and name of the file</param>
|
||
|
<param name="comment">Comment to add</param>
|
||
|
<returns></returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Helpers.IniStructure.WriteIni(Virtuoso.Miranda.Plugins.Helpers.IniStructure,System.String)">
|
||
|
<summary>
|
||
|
Writes an IniStructure to a file without a comment.
|
||
|
</summary>
|
||
|
<param name="IniData">The contents to write</param>
|
||
|
<param name="Filename">The complete path and name of the file</param>
|
||
|
<returns></returns>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Helpers.IniStructure.ReadIni(System.String)">
|
||
|
<summary>
|
||
|
Reads an ini file and returns the content as an IniStructure. Returns null if an error occurred.
|
||
|
</summary>
|
||
|
<param name="Filename">The filename to read</param>
|
||
|
<returns></returns>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.Protocols.AckRouter.MS_PROTO_CHAINSEND">
|
||
|
<summary>
|
||
|
Call the next service in the chain for this send operation.
|
||
|
wParam=wParam
|
||
|
lParam=lParam
|
||
|
The return value should be returned immediately
|
||
|
wParam and lParam should be passed as the parameters that your service was
|
||
|
called with. wParam must remain untouched but lParam is a CCSDATA structure
|
||
|
that can be copied and modified if needed.
|
||
|
Typically, the last line of any chaining protocol function is
|
||
|
return CallService(MS_PROTO_CHAINSEND,wParam,lParam);
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:Virtuoso.Miranda.Plugins.Infrastructure.Protocols.AckRouter.MS_PROTO_CHAINRECV">
|
||
|
<summary>
|
||
|
Call the next service in the chain for this receive operation
|
||
|
wParam=wParam
|
||
|
lParam=lParam
|
||
|
The return value should be returned immediately
|
||
|
wParam and lParam should be passed as the parameters that your service was
|
||
|
called with. wParam must remain untouched but lParam is a CCSDATA structure
|
||
|
that can be copied and modified if needed.
|
||
|
When being initiated by the network-access protocol module, wParam should be
|
||
|
zero.
|
||
|
Thread safety: ms_proto_chainrecv is completely thread safe since 0.1.2.0
|
||
|
Calls to it are translated to the main thread and passed on from there. The
|
||
|
function will not return until all callees have returned, irrepective of
|
||
|
differences between threads the functions are in.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:Virtuoso.Miranda.Plugins.Infrastructure.MirandaEventHandler`1">
|
||
|
<summary>
|
||
|
Represents a generic handler for Miranda-raised events.
|
||
|
</summary>
|
||
|
<typeparam name="TEventArgs">Type of EventArgs.</typeparam>
|
||
|
<param name="sender">Sender of the event.</param>
|
||
|
<param name="e">Event arguments.</param>
|
||
|
<returns>TRUE to block the event from bubbling to another subscribers, FALSE to pass it along.</returns>
|
||
|
</member>
|
||
|
<member name="T:Virtuoso.Miranda.Plugins.Infrastructure.RuntimeEnvironment">
|
||
|
<summary>
|
||
|
Provides information about current state of Hyphen runtime.
|
||
|
This class can be used only from the context of standalone modules (i.e. from the default AppDomain only).
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Infrastructure.RuntimeEnvironment.Initialize">
|
||
|
<summary>
|
||
|
Marks the class initialized.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Virtuoso.Miranda.Plugins.Infrastructure.RuntimeEnvironment.VerifyInitialized">
|
||
|
<summary>
|
||
|
Verifies whether the class was initialized (from the default AppDomain).
|
||
|
</summary>
|
||
|
<exception cref="T:System.NotSupportedException">Class not initialized (i.e. called from other than default AppDomain).</exception>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Infrastructure.RuntimeEnvironment.HyphenIsLoading">
|
||
|
<summary>
|
||
|
Gets an indication whether the Hyphen runtime is currently loading.
|
||
|
</summary>
|
||
|
<exception cref="T:System.NotSupportedException">Class not initialized (i.e. called from other than default AppDomain).</exception>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Infrastructure.RuntimeEnvironment.IsolatedModePluginsLoaded">
|
||
|
<summary>
|
||
|
Gets an indication whether the Isolated plugins are loaded.
|
||
|
</summary>
|
||
|
<exception cref="T:System.NotSupportedException">Class not initialized (i.e. called from other than default AppDomain).</exception>
|
||
|
</member>
|
||
|
<member name="T:Virtuoso.Miranda.Plugins.Infrastructure.Skin">
|
||
|
<summary>
|
||
|
Manages Miranda skin entities, for example icons and sounds.
|
||
|
</summary>
|
||
|
<mHeader>m_skin.h</mHeader>
|
||
|
</member>
|
||
|
<member name="T:Virtuoso.Miranda.Plugins.Properties.Resources">
|
||
|
<summary>
|
||
|
Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Properties.Resources.ResourceManager">
|
||
|
<summary>
|
||
|
Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Properties.Resources.Culture">
|
||
|
<summary>
|
||
|
Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
||
|
Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Properties.Resources.Icon_232_32x32">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Properties.Resources.Icon_256_32x32">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Properties.Resources.RibbonClick">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Virtuoso.Miranda.Plugins.Properties.Resources.RibbonHover">
|
||
|
<summary>
|
||
|
Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
|
||
|
</summary>
|
||
|
</member>
|
||
|
</members>
|
||
|
</doc>
|