User Tools

Site Tools


ui_extension:ui_extension

UI Extensions

Warning: This page is terribly out-dated

Introduction

A UI Extension generally refers to a component that implements the ui_extension API. They are also commonly refered to as panels.

The UI Extension API an API that allows a component (a UI Extension Host) to insert a window created by another component (UI Extension) into one of its windows as a child window. UI Extensions come in two forms: multiple instance extensions, of which allow hosts to make as many instances of its window as they want. Single instance windows only have one instance of its window created at any one time.

Developer resources

Prerequistes for developing UI Extension aware components

In order to create UI Extension aware components, you will need:

The foobar2000 SDK

The foobar200 SDK can be downloaded from the foobar2000 homepage.

The UI Extension SDK

The UI Extension SDK can be downloaded from its webpage.

Microsoft Visual C++

Information on Visual C++ can be found from its homepage.

Microsoft Visual C++ 2003 and 6.0 will both currently work.

Platform SDK

Not usually required, but recommended is the current Microsoft Platform SDK. Beware, the current version of the Platform SDK is not compatible with MSVC6.

Developing UI Extension aware components

If you are unaware of how to set up the foobar2000 SDK, and create foobar2000 components, please read the foobar2000 FAQ first. Reading the plugin development tutorial is also worthwhile.

You should extract the UI Extension archive to the foobar2000\ui_extension sub-directory of your SDK root folder. You should then proceed to insert the ui_extension project into your workspace, and add it as a dependency of your project.

You should include the header “../ui_extension.h” as appropriate in your code.

UI Extension hosts must implement the ui_extension_host interface, whilst panels should implement the ui_extension interface.

View doxygen generated documentation of the interfaces

Some example components you can look at are:
Album list panel
ASCII playback buttons
Track info panel
Static control panel
Extended search panel

Known shortcomings in UI Extension API version 5

  • ui_extension_host::override_status_text, ui_extension_host::restore_status_text have no HWND parameter. This hinders the functionality of panel-hosts.
  • No method to retrieve whether a component supports multiple instances or not.
  • A method to create a configuration dialog for a ui_extension instance may be useful.

Changes for UI Extension 6

  • Add a subclass for splitter panels
  • Add methods for displaying a configuration dialog for UI Extensions
  • ui_extension_host API will no longer be single instance only
  • Implement methods in ui_extension_factory to retrieve whether extension is single or multiple instance
  • Add HWND parameters to ui_extension_host::override_status_text and ui_extension_host::restore_status_text functions
  • Changed way adding items to host menu works
  • Added APIs for embedding standard Columns UI spectrum analyser in your own window
  • Added APIs for new customisable buttons toolbar (including default bitmaps, pushed state, and drop-downs)
  • Rename TYPE_LAYOUT to TYPE_CONTAINER
  • More..
ui_extension/ui_extension.txt · Last modified: 2008/05/21 22:09 by musicmusic