Skip to content

Developer Guide

Welcome to the Lertaro Developer Reference Manual. Built upon a decoupled multi-process architecture and an extensible plugin ecosystem, Lertaro provides an official SDK assembly: Lertaro.PluginSdk. By referencing this SDK, third-party developers can contribute custom search sources, extend context action menus, deeply integrate with third-party file managers and native file dialogs, and customize themes and preview handlers.

1. Architecture & Workflow

  • System Architecture —— Deep dive into the three-process isolation model (SYSTEM-level Windows Service, user-mode WPF App, and keyboard Hook process) and named pipe IPC.
  • Getting Started —— Step-by-step guide to creating a plugin class library, referencing the SDK, implementing IPlugin, and local debugging.
  • Packaging & Distribution —— Assembly directory conventions, bundling third-party managed/native DLLs, embedding i18n resources, and PostBuild deployment automation.
  • Plugin Examples —— Real-world case studies analyzing the official open-source CoreExtensions, PinyinAlias, and FlowLauncherBridge plugins.

2. Plugin SDK Reference

SDK CategoryCore Interfaces & ServicesKey Capabilities
Core Search & ActionsISearchableItemProvider
IInstantResultProvider
IAliasProvider
IQueryTokenProvider
ISearchResultAction
IDynamicActionProvider
Contribute indexed items, instant calculation answers, non-ASCII alias transliteration engines, query suffix token handlers, and static/dynamic context action menus.
System & Dialog AdaptersIActivePathCollector
IFileDialogAdapter
IInlineSearchAdapter
IQuickNavigationProvider
Detect active directories in file managers, hook native file dialogs, embed inline search bars with two-way selection sync, and provide Quick Navigation cascading menus.
UI & Preview ExtensionsISidebarFilterProvider
IResultColumnProvider
IQuickPanelTabProvider
IFilePreviewProvider
IThumbnailProvider
IThemeProvider
ITranslationProvider
Add sidebar filter categories, custom table columns, Quick Panel dynamic workspace tabs, QuickLook custom preview renderers, thumbnail extractors, WPF themes, and i18n language packs.
Shared AbstractionsISearchResult
FileMetadata
IPluginSearchWindow
IConfigurable
Read-only result models, high-precision file timestamps and size metadata, host window control handles, and schema-driven native configuration forms.
Host ServicesFuzzyMatchService
TranslationService
IconService
FavoritesService
HistoryService
FileMetadataService
DirectoryIndexerService
MemoryMaintenanceService
RecentFilesService
ExplorerPathService
PluginSettingsService
SettingsSearchService
SettingsWindowService
SearchRefreshService
UserDataService
Logger
High-performance host infrastructure: fzf fuzzy matching and highlight masks, cached icon extraction, favorite management, directory indexer proxies, deferred memory maintenance, data directory isolation, and native Shell file operations.

NOTE

All interface signatures, method parameters, and behavioral contracts in this manual have been verified directly against the Lertaro.PluginSdk source code.