WoWInterface SVN Portfolio

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk/PortfolioDemo
    from Rev 25 to Rev 27
    Reverse comparison

Rev 25 → Rev 27

PortfolioDemo.toc
6,7 → 6,7
## RequiredDeps: Portfolio
## DefaultState: disabled
## SavedVariables: PortfolioDemo_SavedVars
## Version: 1.2
## Version: 1.23
## X-Revision: $Rev: 5127 $
## X-Date: $Date: 2007-11-13 18:34:54 -0600 (Tue, 13 Nov 2007) $
## X-Category: Library
PortfolioRegistration.lua
213,6 → 213,33
point = {"TOPLEFT", "Dropdown1", "TOPRIGHT", 30, 0};
};
{
id = "Dropdown3";
headerText = "Truncated Dropdown";
type = CONTROLTYPE_DROPDOWN;
defaultValue = "1";
width = 100;
-- See UIDropDownMenu.lua for list of button attributes
menuList = {
{
text = "1 - Very Long Discription";
value = "1";
};
{
text = "2 - Stuff";
value = "2";
};
{
text = "3 - UBER_STRING_OF_LONGNESS";
value = "3";
};
{
text = "4 - \"SOME/PATH/TO/SOMEWHERE\"";
value = "4";
};
};
point = {nil, "Dropdown1", nil, nil, nil};
};
{
id = "Slider1";
text = "Slider #1 (%.1f)";
tooltipText = "Slider tooltip goodness on hover.";
224,7 → 251,6
type = CONTROLTYPE_SLIDER;
defaultValue = "0";
callback = function(...) callback("Slider1", ...) end;
point = {nil, "Dropdown1", nil, nil, nil};
};
{
id = "Checkbox3";