promotional bannermobile promotional banner

Addon Mgr

Abandoned
This allows the currently loaded addons to be changed without reloading. This also allows saving sets of addons.

File Details

v1.1.3

  • R
  • Jan 21, 2010
  • 30.08 KB
  • 789
  • 3.3.0
  • Retail

File Name

AddonMgr-v1.1.3.zip

Supported Versions

  • 3.3.0

tag v1.1.3
08b347a64b7017676795516e06f66441884db36d
matthewf <matthewf@curseforge.com>
2010-01-21 23:28:59 +0000

Makes the drop down menu scrollable

Also makes the select button into an arrow
and places it by the edit box. This resembles
the title selection, and I hope is clearer.

--------------------

matthewf:
    - Alters Save/Load/Delete button layout
    Now that there are three buttons they can be
    anchored to the left, middle, and right. This
    makes them look better when the AddOn UI can
    be resized.
    - Changes the select button to an arrow
    The select button is now a down arrow.
    This matches the style of the title selection
    button.
    - This shrinks the drop down menu if appropriate
    The scroll bar is hidden at this time too.
    It currently assumes that the drop down
    menu has a fixed height - that needs to
    be handled.
    - Commenting
    - Removes Show/Hide code from Scroll Bar
    The Show/Hide code was left over after the removal of
    the hideable property. The shows that were triggered
    during resizes caused the bar to show at undesirable
    points. Control of the visibility of the bar is external
    to the bar atm, but it may be better to restore the
    switch.
    - Small efficiency change
    This uses the variable that holds the value of the height
    rather than fetching the height indirectly immediately
    after it was set.
    - Bug Fix! Can now load and delete groups and saves
    The method to get the text in the edit box was not
    returning the correct value. This prevented any
    action dependent on that value.
    - Moves the files around a bit
    Frames = entries in the blizzard addon ui
    templates = useable elements for the frames
    - First version of scrollable drop down menu
    This is a working prototype that needs the following:
    
    * The code should be moved into its own file
    * The handling of the menu needs to be cleaned up -
      dont use data that was constructed for the old
      system without removing redundant fields. Should
      just be a single call from the button press.
    * Needs to close after selection, and after a period
      of inactivity
    - This creates templates for the UI elements
    The templates are for the following elements:
    
    ScrollFrame
    ScrollFrameBar
    Button
    EditBox
    
    The ScrollFrame template is intended to be used
    in the drop down menu in addition to its current
    useage. The others were made because the blizzard
    implementation relies upon names to correctly
    create them.
    
    The templates do not depend on names to resolve
    references. The templates have allowed the
    AddonListFrame to become completely nameless.