diff --git a/index.html b/index.html index 267e9575..441e54a6 100644 --- a/index.html +++ b/index.html @@ -78,6 +78,9 @@
  • StringGrid - grid view with strings content
  • TreeWidget - tree view
  • ComboBox - combo box with text items
  • +
  • ToolBar - tool bar with buttons
  • +
  • StatusLine - control to show misc application statuses
  • +
  • AppFrame - base class for easy implementation of apps with main menu, toolbars, status bar
  • Layouts

    @@ -99,12 +102,9 @@ Similar to layouts in Android
  • ListWidget - layout dynamic items horizontally or vertically (one in row/column) with automatic scrollbar; can reuse widgets for similar items
  • ListAdapter - interface to provide data and widgets for ListWidget
  • WidgetListAdapter - simple implementation of ListAdapter interface - just a list of widgets (one per list item) to show
  • -

    TODOs:

    + -

    +

    Resources

    Resources like fonts and images use reference counting. For proper resource freeing, always destroy widgets implicitly.

    @@ -143,14 +143,15 @@ standard values are used. dub run dlangui:example1 -

    To develop using Visual-D, download sources for dlabgui and dependencies into some directory:

    +

    To develop using Visual-D, download sources for dlangui and dependencies into some directory:

        git clone https://github.com/buggins/dlangui.git
         git clone https://github.com/DerelictOrg/DerelictUtil.git
         git clone https://github.com/DerelictOrg/DerelictGL3.git
    -    git clone https://github.com/DerelictOrg/DerelictFI.git
         git clone https://github.com/DerelictOrg/DerelictFT.git
         git clone https://github.com/DerelictOrg/DerelictSDL2.git
    +    git clone https://github.com/gecko0307/dlib.git
    +    git clone https://github.com/Devisualization/image.git de_image
     

    Then open .sln using Visual D.