User Tools

Site Tools


ui_extension:ui_extension

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
ui_extension:ui_extension [2005/03/23 14:55] – (old revision restored) 127.0.0.1ui_extension:ui_extension [2009/02/16 21:26] – removed musicmusic
Line 1: Line 1:
-====== UI Extensions ====== 
-===== 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 [[http://foobar2000.org/download.html#SDK|foobar2000 homepage]]. 
-=== The UI Extension SDK === 
-The UI Extension SDK can be downloaded from its [[http://music.everywebhost.com/#Columns|webpage]]. 
-=== Microsoft Visual C++ === 
-Information on Visual C++ can be found from its [[http://msdn.microsoft.com/visualc/productinfo/|homepage]].  
- 
-The optimising Microsoft Visual C++ 2003 (7.1) is currently the prefered compiler because of its better support for templating. Microsoft Visual C++ 6.0 will also work. 
- 
-The Microsoft Visual C++ 2003 compiler is freely available in the [[http://msdn.microsoft.com/visualc/vctoolkit2003/|Visual C++ 2003 toolkit]], and so are some .libs not included with the toolkit (namely msvcrt.lib) with the [[http://msdn.microsoft.com/netframework/downloads/updates/default.aspx#.NET%20Framework%201.1%20Downloads|.NET Framework SDK 1.1]]. You can use these to set up the MSVC7.1 compiler with the MSVC6 IDE if you wish. Be warned though, the MSVC6 debugger is not compatible with the MSVC7.1 compiler's pdb files. Alternate freely available debuggers you can use are the [[http://www.microsoft.com/whdc/devtools/debugging/default.mspx|Debugging Tools for Windows]], or [[http://lab.msdn.microsoft.com/express/visualc/|Microsoft Visual C++ 2005 Express]]. Also, be warned of [[http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx?feedbackid=a5c0e762-4af6-4d86-bc4b-987d4cb1eedc|this bug]] in the current version of the MSVC7.1 compiler. 
-=== Platform SDK === 
-Not usually required, but highly recommended is the current [[http://www.microsoft.com/msdownload/platformsdk/sdkupdate/|Microsoft Platform SDK]]. 
- 
-==== 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 [[http://foobar.org/FAQ.html#FAQ_d1|FAQ]] first. Reading the [[http://www.hydrogenaudio.org/forums/index.php?showtopic=18138|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_with_helpers.h" as appropriate in your code. 
- 
-UI Extension hosts must implement the [[http://music.everywebhost.com/ui_extension/classui__extension__host.html|ui_extension_host]] interface, whilst panels should implement the [[http://music.everywebhost.com/ui_extension/classui__extension.html|ui_extension]] interface. 
- 
-[[http://music.everywebhost.com/ui_extension/index.html|View doxygen generated documentation of the interfaces]] 
- 
-Some example components you can look at are:\\ 
-[[http://music.everywebhost.com/#Columns|Album list panel]]\\ 
-[[http://music.everywebhost.com/#Columns|ASCII playback buttons]]\\ 
-[[http://www.stud.uni-karlsruhe.de/~uzbs/fb2k/html/#history|History]]\\ 
-[[http://www.stud.uni-karlsruhe.de/~uzbs/fb2k/html/#simple_spectrum|Simple spectrum panel]]\\ 
-[[http://www.hydrogenaudio.org/forums/index.php?showtopic=29363|Track info panel]]\\ 
-[[http://music.everywebhost.com/#Columns|Static control panel]]\\ 
-[[http://music.everywebhost.com/#Columns|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. 
- 
-==== Plans for UI Extension 6 ==== 
-  * Rename TYPE_LAYOUT to TYPE_SPLITTER 
-  * 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 
- 
-> What will become of the tabbed panel stack which currently uses the TYPE_LAYOUT flag IIRC? The name "splitter" doesn't seem to fit there, perhaps the flag should be renamed to TYPE_CONTAINER instead.\\ --- //[[holger.stenger@gmx.de|foosion]] 2005/03/16 21:34// 
->> Hmm I just thought it fitted in more with the splitter subclass, which I would expect the tabbed panel stack to implement so that you can switch from the splitter types buit into columns ui to the panel stack without loosing config. But the built in splitters are not implemented as ui extensions, so I'll use which ever name you and Phi think makes the most sense in regard to the general scope of ui extensions in this category. --- //musicmusic 2005/03/16 21:38// 
ui_extension/ui_extension.txt · Last modified: 2008/05/21 22:09 by musicmusic