Creation of a UserControl: Collapsible Panel

From OpenPetra Wiki
Revision as of 07:02, 11 January 2011 by Christiankatict (talk | contribs)
Jump to navigation Jump to search

Introduction

There are three different styles in which a 'Collapsible Panel' should be able to be displayed in openPETRA (see screenshots on the side).

Inside the Accordion Panel
Inside the Accordion Panel - collapsed
Vertical: Inside a Task Panel
Vertical: Inside a Task Panel - collapsed
Vertical: Dashboards in Main Menu Task Area
Vertical: Dashboards in Main Menu Task Area - collapsed
Horizontal: To-Do Bar
Horizontal: To-Do Bar - collapsed
Horizontal: Accordion Panel - collapsed

With 'Collapsible Panel' we mean each of the panels that host either a list of Task Items, or a UserControl with custom content (especially in case of Dashboards, but not limited to them).

The main feature of a Collapsible Panel is that it can be expanded or collapsed - either vertically or horizontally.

  • Vertical Collapsing (see first six screenshots on the side)
    • In the collapsed state only the Title Panel (a small panel containing a title text and a Button for expanding it and an optional Icon) is left. In this state the Collapsible Panel does not take up much space on the screen.
    • In the expanded state the Title Panel remains and in addition to that the actual content of the Collapsible Panel (a Task List or a UserControl) is shown. In this state the Collapsible Panel takes up at least as much space on the screen as its contents plus the space the Title Panel needs.
  • Horizontal Collapsing (see last three screenshots on the side)
    • In the expanded state the Collapsible Panel is as wide and as high as the content it hosts requires and the actual content of the Collapsible Panel (a Task List or a UserControl) is shown under the the Title Panel.
    • In the collapsed state the Collapsible Panel is just a narrow panel that doesn't show the content it hosts and is still as high as the content it hosts requires. In this state the Collapsible Panel does not take up much space on the screen. The Title Panel doesn't show the Title Text, but only a Button for expanding; instead, the Title Text is shown at an 90 degree angle underneath the Title Panel.

The other features of a Collapsible Panel are

  • it supports different 'Styles', as shown in the screenshots along the side;
  • it can host either a 'Task List' or an arbitrary UserControl as a content;
  • it auto-sizes in both vertical and horizontal direction to always fit the size of the content.


There is another Project, 'Creation of a UserControl: Task List', whose UserControl is specifically designed to be hosted inside a Collapsible Panel.

Note: The corresponding Bug (=Feature Request) is Bug #205.


Desired Outcome

  • Creation of one UserControl which acts as a 'Collapsible Panel' whose 'look and feel' can be set to three different styles, as shown in the screenshots along the side.
    • The different styles will need to affect
      • the Title Panel
        • font and colour of the Title Text
        • gradient colours of the Title Panel (compare screenshots 'Inside the Accordion Panel' and 'Inside a Task Panel' along the side)
        • height of the Title Panel (so it accommodates different Font sizes)
        • two Icons for collapsing/expanding on the Title Button
          • there are two sets containing four Icons each: one set for vertical collapsing (up-down arrows) and one set for horizontal collapsing (left-right arrows) mode. (Each set contains two Icons plus two 'hover' Icons, making four Icons.)
      • the Content Panel
        • gradient colours of the Content Panel (which hosts the actual content, e.g. Task List or a UserControl) (see screenshot 'Inside the Accordion Panel' along the side)
  • The UserContol needs to collapse when the collapse/expand Button is clicked and it is currently expanded, and it needs to expand when the collapse/expand Button is clicked and it is currently collapsed.
    • Vertical collapsing mode only: It shall also toggle its collapsed/expanded state if the Title Panel, the Title Text or the Title Icon is clicked.
    • The Icon on the Title Button needs to change on toggling to show the correct Icon for the collapsed/expanded state
  • The UserControl needs to support collapsing in either horizontal or vertical direction.
    • When set up to collapse in horizontal direction
      • there needs to be an option to specify whether it collapses 'to the right' or 'to the left'. This will affect the horizontal position of the collapse/expand Button, which Icon is shown for collapsing/expanding and whether the Title Text is rotated 90 degrees or 180 degrees (compare screenshots 'Horizontal: To-Do Bar - collapsed' and 'Horizontal: Accordion Panel - collapsed').
      • a Panel which can contain an arbitrary Control (which also can be a UserControl) needs to be shown on request and display the desired Control (Icon and text 'No Reminders.' in screenshot 'Horizontal: To-Do Bar - collapsed').
      • it must be possible to limit the height of the internal Panel which shows rotated Title text to a certain number of pixels so that part of the hosted content is still visible (Icons for openPetra Modules in screenshot 'Horizontal: Accordion Panel - collapsed'). If its height isn't limited, this internal Panel shall fill the full height of the UserControl in order to hide the hosted content completely.
  • Dealing with hosted content
    • When the UserControl is hosting the 'Task List', it needs to accept the Task Items as a single XmlNode and pass it on to the Task List.
    • When the UserControl is hosting an arbitrary UserControl, it needs to accept information about it so it can instantiate it.
    • The UserControl needs to dynamically create the hosted content (a Task List or an arbitrary UserControl) the first time it is expanded.
      • This is in order to speed up the realisation (painting) of a screen that hosts a Collapsing Panel which is in its 'collapsed' state (only the Title Panel needs to be realised in this case!).
  • The UserControl needs to be able to auto-size itself in vertical and horizontal direction - depending on the size needed for hosting the Task List or a UserControl in the Content Panel.
  • The UserControl needs to have a read-only Property 'IsCollapsed'. (This can be used by the screen which hosts this UserControl to inquire its state.)
  • The UserControl needs to have Properties to set the Title Text and the optional Title Icon.
  • The UserControl needs to raise Events when it got Expanded or Collapsed.
    • On receiving those Events, the screen which hosts this UserControl do any necessary screen re-arrangement, or change the tick on a MenuItem, for example.
  • Navigation between the content hosted in the Content Panel (Task List or arbitrary UserControl) and the Title Panel needs to be possible by keyboard!
    • <CURSOR-UP> and <CURSOR-DOWN> keys for navigation
    • <ENTER> and <SPACE> keys for changing the collapsed/expanded state if the Focus is on the Title Text
    • 'Highlighting' of Title Text if the Focus is there
      • Highlighting should be done by painting a rectangle with dotted line around the Title Text
  • Title Text will need to be able to show an underlined character (designated by an ampersand & sign in the text). If the user presses <ALT>+<{underlined character}>, the collapsed state shall be changed to expanded (only if the UserControl is currently collapsed) and the input Focus shall be given to the Content Panel.
    • See screenshot 'Menu Items in Accordion Panel' along the side (&General Ledger Collapsible Panel)
  • Disabling of a Collapsible Panel must be possible, but only if it is in its 'collapsed' state.
  • Hiding of a Collapsible Panel must be possible, independent of its collapsed/expanded state.
  • Public Methods for Disabling/Enabling and Hiding/Showing of a Collapsible Panel must be implemented.
    • Method for Disabling needs to throw a custom Exception if it is called while the Collapsible Panel is expanded.


Outline of the Solution

This lists the basic steps for getting to the desired outcome.

Where references are made to items which are described in the 'Desired Outcome' section, '[REF]' will be mentioned.

Step 1

Start with an existing UserControl:

  • Open the Ict.Common.Controls C# Project (located in \csharp\ICT\Common\Controls) and open the Class 'TPnlCollapsible' contained in file 'pnlCollapsible.cs'.
  • This is a basic implementation of a 'Collapsible Panel' which collapses only in vertical direction.
    • Have a look how things are done.
    • You can play around with that Panel by starting openPetra and clicking 'Find Partners' in the Task List on the right.
      • You won't be able to find any Partners at the moment as this is an empty openPETRA database, but the Collapsible Panel still works.
        • Note that the Panel can be expanded/collapsed by clicking its expand/collapse icon, by clicking anything else in the Title Panel, and by clicking the 'Partner Info' ToolBarButton and by checking/unchecking the 'View'->'Partner Info Panel' MenuItem.
  • Extend the UserControl so that it can also expand and collapse in horizontal direction
    • Add a public enum to that file, outside the Class definition.
      • Name it 'TCollapseDirection'.
      • Add the following values: cdVertical, cdHorizontal
    • Add a 'CollapseDirection' Property of Type 'TCollapseDirection'.
      • Implement the change of collapsing behaviour in a private Method that gets called from the 'setter' of this Property.
        • Among other things, the set of four Icons with arrows for collapsing/expanding need to be swapped with the other set of four icons
          • For this, four new Icons need to be added to the ImageList 'imlUpDownArrows'. To do this, switch to the Designer View of the IDE and select the 'imlUpDownArrows' Control in the area on the bottom. Then click on the '...' button in the Properties Panel to edit the ImageList collection of Icons. Add four new Icons for the horizontal collapse mode (ask ChristianK for the icon files).
    • The existing UserControl has hard-coded values for collapsed and expanded height (COLLAPSEDHEIGHT and EXPANDEDHEIGHT). For the moment we will use those for setting the collapsed and expanded width as well. This will be improved on in Step 2.
  • Test and demonstrate this in a small test application, which you should create for that purpose.

Step 2

TODO

Step 3

TODO

Step 4

  • Add .NET Attributes to Properties, public Methods and to the Events for use in the WinForms Designer.
  • Test and demonstrate the UserControl in the WinForms Designer.
  • Add XML Documentation to
    • the Class
    • the Properties
    • public and private Methods
    • the Enum
    • the Events
  • Check conformance with the openPETRA Code Style Guide!


Approval of Functionality and Program Code

  • Have both the functionality and the program code reviewed by ChristianK and Prof. Nurkkala.
  • Show the UserControl in the WinForms Designer. Documentation of Properties, Events and the design-time experience will be evaluated by ChristianK and Prof. Nurkkala.
  • Demonstrate the Collapsing Panel in the test application
    • show several instances to demonstrate the auto-sizing capability
      • in combination with the 'Task List' (no matter what stage of completion that UserControl is, if it is past 'Step 1' this should be fine).
      • in combination with an arbitrary UserControl
  • One special point will be awarded if the Collapsing Panel can be demonstrated inside openPETRA!
    • ChristianK will help with that
  • An additional special point will be awarded if the Collapsing Panel UserControl is integrated into the WinForms Generator!
    • ChristianK will help with that