Allow an already-instantiated IFlexDisplayObject to be used as the icon

for a menu item. JFC, this is pretty straightforward but was a fiasco
to get right because I was using a MediaWrapper as the icon, and something
wasn't playing nicely (not yet debugged), but the error looked like
it was with the Menu superclass.

Also set all CommandMenus to have variableRowHeight.


git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@266 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Ray Greenwell
2007-06-16 00:09:23 +00:00
parent 25d48696ee
commit 7a6d334a99
3 changed files with 166 additions and 0 deletions
@@ -0,0 +1,43 @@
//
// $Id$
//
// Nenya library - tools for developing networked games
// Copyright (C) 2002-2007 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/nenya/
//
// This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published
// by the Free Software Foundation; either version 2.1 of the License, or
// (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
package com.threerings.flex.menuClasses {
import mx.core.IFlexDisplayObject;
import mx.core.IUIComponent;
import mx.controls.listClasses.ListData;
public class CommandListData extends ListData
{
/** An already-instantiated icon, to use if the icon property is null. */
public var iconObject :IFlexDisplayObject;
public function CommandListData (text :String, icon :Class, iconObject :IFlexDisplayObject,
labelField :String, uid :String, owner :IUIComponent,
rowIndex :int = 0, columnIndex :int = 0)
{
super(text, icon, labelField, uid, owner, rowIndex, columnIndex);
this.iconObject = iconObject;
}
}
}
@@ -0,0 +1,48 @@
//
// $Id$
//
// Nenya library - tools for developing networked games
// Copyright (C) 2002-2007 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/nenya/
//
// This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published
// by the Free Software Foundation; either version 2.1 of the License, or
// (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
package com.threerings.flex.menuClasses {
import flash.display.DisplayObject;
import mx.controls.menuClasses.MenuItemRenderer;
public class CommandMenuItemRenderer extends MenuItemRenderer
{
public function CommandMenuItemRenderer ()
{
super();
}
override protected function commitProperties () :void
{
super.commitProperties();
if ((icon == null) && (listData is CommandListData)) {
icon = CommandListData(listData).iconObject;
if (icon != null) {
addChild(DisplayObject(icon));
}
}
}
}
}