Launchy 1.25 API Documentation

Overview

Launchy Plugin Design
Geting Started
Function Definitions and Docs

Design

By itself, Launchy can only index regular windows files such as mp3's, documents, links etc. There are infinitely more things that the simple Launchy interface could be used for, e.g. as a calculator, browser launcher, directory walker, etc.

Launchy's interface is broken down into a user input window and a program output window. As the user enters input, the items are matched against Launchy's index of objects and the best matching object's display name is displayed in the output window. If the user presses the enter key then the object is launched by the object's owner. If the user presses the TAB key then the owner is asked to provide a new set of objects.

Plugins can claim ownership of objects in 3 ways:
1) The plugin can directly add owned objects to Launchy's index (see the PluginGetIdentifiers function)
2) The plugin can claim ownership of all user input that matches a regular expression (PluginGetRegexs)
3) The plugin can claim ownership of an object owned by Launchy once the user has hit TAB (PluginFileOptions)

As an example of type 1 ownership, the Weby plugin adds "Google", "Amazon", etc. to Launchy's index. As an example of type 2 ownership, the Weby plugin owns all user input that contains "www" or "http". As an example of 3, the Explory plugin claims ownership of all .lnk files that point to directories once they have been tabbed. For instance, if you type "my documen" and hit tab, Explory will take over ownership of that object.

The owner of an object or user input is responsible for adding content (if necessary) when the user presses the TAB key and for performing some action when the user hits the enter key.

An example of adding content as the user types after hitting the TAB key are file and directory names in Explory. Example actions are launching web browsers, music players, and applications.

Getting Started

Necessary Files:
LaunchyPlugin.h
LaunchyPlugin.cpp

Optional Blank Plugin Project:
Blank Plugin

Example Plugin:
Weby

A plugin is a Win32 DLL file that implements each of the event handlers. The interfaces for each necessary handler are described in the Function Definitions and Docs section and each event function begins with the word "Plugin". Each DLL must include the LaunchyPlugin.h and LaunchyPlugin.cpp files. Therefore the DLL must be written in C++ and not C. The plugin must use UNICODE characters and it should statically link all necessary libraries.

A template Visual Studio 2005 program is listed above as "Blank Plugin". Also, there is a sample plugin provided called Weby. For more example plugins download the Launchy source code from SVN on the SourceForge page.

The LaunchyPlugin.h defines a number of helper functions that you will likely find useful in your module so it is highly recommended that you review the Function Definitions and Docs section carefully.