[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[sc-dev] SF.net SVN: supercollider:[8237] trunk/build/SCClassLibrary/Common/GUI/Base
Revision: 8237
http://supercollider.svn.sourceforge.net/supercollider/?rev=8237&view=rev
Author: jmfuo
Date: 2008-12-22 00:16:17 +0000 (Mon, 22 Dec 2008)
Log Message:
-----------
fixed label position
Modified Paths:
--------------
trunk/build/SCClassLibrary/Common/GUI/Base/EZListView.sc
trunk/build/SCClassLibrary/Common/GUI/Base/EZPopUpMenu.sc
trunk/build/SCClassLibrary/Common/GUI/Base/EZgui.sc
Modified: trunk/build/SCClassLibrary/Common/GUI/Base/EZListView.sc
===================================================================
--- trunk/build/SCClassLibrary/Common/GUI/Base/EZListView.sc 2008-12-21 23:36:42 UTC (rev 8236)
+++ trunk/build/SCClassLibrary/Common/GUI/Base/EZListView.sc 2008-12-22 00:16:17 UTC (rev 8237)
@@ -1,6 +1,12 @@
EZListView : EZlists{
-
+ *new { arg parentView, bounds, label,items, globalAction, initVal=0,
+ initAction=false, labelWidth=80, labelHeight=20, labelPosition=\top, gap=4;
+
+ ^super.new.init(parentView, bounds, label, items, globalAction, initVal,
+ initAction, labelWidth,labelHeight,labelPosition, gap);
+ }
+
init { arg parentView, bounds, label, argItems, argGlobalAction, initVal,
initAction, labelWidth, labelHeight, arglabelPosition, argGap;
var labelBounds, listBounds,w, winBounds;
Modified: trunk/build/SCClassLibrary/Common/GUI/Base/EZPopUpMenu.sc
===================================================================
--- trunk/build/SCClassLibrary/Common/GUI/Base/EZPopUpMenu.sc 2008-12-21 23:36:42 UTC (rev 8236)
+++ trunk/build/SCClassLibrary/Common/GUI/Base/EZPopUpMenu.sc 2008-12-22 00:16:17 UTC (rev 8237)
@@ -1,6 +1,12 @@
EZPopUpMenu : EZlists{
-
+ *new { arg parentView, bounds, label,items, globalAction, initVal=0,
+ initAction=false, labelWidth=80, labelHeight=20, labelPosition=\left, gap=4;
+
+ ^super.new.init(parentView, bounds, label, items, globalAction, initVal,
+ initAction, labelWidth,labelHeight,labelPosition, gap);
+ }
+
init { arg parentView, bounds, label, argItems, argGlobalAction, initVal,
initAction, labelWidth, labelHeight, arglabelPosition, argGap;
var labelBounds, listBounds,w, winBounds;
Modified: trunk/build/SCClassLibrary/Common/GUI/Base/EZgui.sc
===================================================================
--- trunk/build/SCClassLibrary/Common/GUI/Base/EZgui.sc 2008-12-21 23:36:42 UTC (rev 8236)
+++ trunk/build/SCClassLibrary/Common/GUI/Base/EZgui.sc 2008-12-22 00:16:17 UTC (rev 8237)
@@ -124,12 +124,6 @@
EZlists : EZgui{
var <items, <>globalAction ;
- *new { arg parentView, bounds, label,items, globalAction, initVal=0,
- initAction=false, labelWidth=80, labelHeight=20, labelPosition=\top, gap=4;
-
- ^super.new.init(parentView, bounds, label, items, globalAction, initVal,
- initAction, labelWidth,labelHeight,labelPosition, gap);
- }
value{ ^widget.value }
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
_______________________________________________
sc-dev mailing list
info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
archive: https://listarc.bham.ac.uk/marchives/sc-dev/
search: https://listarc.bham.ac.uk/lists/sc-dev/search/