1 / 20

TkRibbon : Windows Ribbons for Tk

TkRibbon : Windows Ribbons for Tk. Georgios Petasis Software and Knowledge Engineering Laboratory, Institute of Informatics and Telecommunications, National Centre for Scientific Research “Demokritos”, Athens, Greece petasis@iit.demokritos.gr. Overview. The Windows Ribbon framework

trent
Download Presentation

TkRibbon : Windows Ribbons for Tk

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. TkRibbon: Windows Ribbons for Tk Georgios Petasis Software and Knowledge Engineering Laboratory,Institute of Informatics and Telecommunications,National Centre for Scientific Research “Demokritos”,Athens, Greecepetasis@iit.demokritos.gr

  2. Overview • The Windows Ribbon framework • Creating a Ribbon • Writing the XAML Markup • Compiling the Markup • Creating the TkRibbon widget • Interacting with the Ribbon • Conclusions – Future work TkRibbon: Windows Ribbons for Tk

  3. The Windows Ribbon Framework • A new UI paradigm, aiming to unify into a single UI element: • Multilayered menus • Toolbars • Task panes Paint for Windows 7 TkRibbon: Windows Ribbons for Tk

  4. Ribbon UI components • The Ribbon framework consists of two UI components: • The Ribbon command bar, which contains: • The Application menu • A set of standard tabs • A Help button • A rich contextual menu TkRibbon: Windows Ribbons for Tk

  5. Ribbons and Applications • Two distinct but dependent development platforms: • A XAML-based markup language, which describes the controls, their properties and their visual layout. • A set of COM C++ interfaces that ensure interoperability between the Ribbon framework and the application. • A Ribbon is actually a COM object: • Attaches to the top part of a window • Redraws window and decoration as needed • Interacts with the user & application TkRibbon: Windows Ribbons for Tk

  6. TkRibbon: Ribbons for Tk • TkRibbon provides the needed middleware for: • Loading a resource DLL containing one (or more) Ribbons • Initialise the Ribbon framework • Create a “fake” Tk widget, for occupying the needed space for Tk widget managers • Attach a Ribbon to a Tk toplevel widget • Communicate user actions from the Ribbon to the application • Through Tk virtual events • Send requests to the Ribbon • By invoking widget subcommands TkRibbon: Windows Ribbons for Tk

  7. MARKUP CODE Create Ribbon Tk Widget Load Resource DLL Ribbon Declaration (Markup) Load Ribbon from Resource DLL Header.h Resource.rc Markup Binary.bml Markup Binary.bml Register Command Callback Register Command Event Handlers Resource DLL Creating a Ribbon in Tk Ribbon • Compile Ribbon Markup(UICC.exe) • Link TkRibbon: Windows Ribbons for Tk

  8. Writing the XAML Markup (1) • Two major parts: • Definition of commands • Layout of commands in tabs, groups inside a tab, and commands inside a group • Everything is a command • Commands have properties: • Label • Tooltip • Images • etc. TkRibbon: Windows Ribbons for Tk

  9. Writing the XAML Markup (2) TkRibbon: Windows Ribbons for Tk

  10. Compiling the XML into a DLL • Ribbons are contained in DLLs • Thus, the XAML describing a Ribbon must be compiled TkRibbon: Windows Ribbons for Tk

  11. Creating the widget (1) TkRibbon: Windows Ribbons for Tk

  12. Creating the widget (2) TkRibbon: Windows Ribbons for Tk

  13. The result: A Ribbon inside Tk TkRibbon: Windows Ribbons for Tk

  14. Interacting with a Ribbon • Three means of interaction: • Through the widget callback • When the Ribbon requests property values • Through virtual events • When an event occurred in the Ribbon • Through widget subcommands invocation • When the application performs a request to the Ribbon TkRibbon: Windows Ribbons for Tk

  15. The widget callback (1) • The callback is invoked when a property value is needed, because: • A property is not defined in the XML • A property has been invalidated • Three parameters (at most): • The command id • An integer • The property type • One from: UI_PKEY_Enabled, UI_PKEY_RepresentativeString, UI_PKEY_ItemsSource, UI_PKEY_Categories, UI_PKEY_SelectedItem, UI_PKEY_BooleanValue • The current value (if available) TkRibbon: Windows Ribbons for Tk

  16. The widget callback (2) • The callback is expected to return a value • According to the property type • The most complex types relate to galleries • UI_PKEY_Categories • UI_PKEY_ItemsSource • Combo boxes are also galleries! TkRibbon: Windows Ribbons for Tk

  17. Virtual events • <<onExecute>> • Delivered when the user has executed a control • “%d” contains the command id • <<onPreview>> • Delivered when mouse hovers over a command • <<onCancelPreview>> • Cancels an <<onPreview>> • <<onCreateUICommand>>, <<onViewChanged>>, <<onDestroyUICommand>>, <<onUpdateProperty>> • Reserved for future use TkRibbon: Windows Ribbons for Tk

  18. Widget subcommand • Many available subcommands • pathnameload_resources native-dll-path • pathnameload_ui module ribbon-name • Relate to loading a Ribbon • pathnameget_property property-type control-id • Retrieve the value of a property • pathnameinvalidate_state state-property control-id • pathnameinvalidate_value property control-id • pathnameinvalidate_property property control-id • Invalidate property aspects, so as new values will be requested TkRibbon: Windows Ribbons for Tk

  19. Conclusions – Future work • TkRibbon allows usage of Ribbons from Tk • A large percentage of Ribbon functionality is supported • Future work will concentrate on: • Supporting missing features • Recent Files item list not available • Saving and restoring state of the Quick toolbar • Contextual tabs are supported • But not tested yet • Support for contextual menus missing • Is it important? TkRibbon: Windows Ribbons for Tk

  20. Thank you!

More Related