[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[sc-dev] SF.net SVN: supercollider:[8341] trunk/build/SCClassLibrary/Common/GUI/Base
Revision: 8341
http://supercollider.svn.sourceforge.net/supercollider/?rev=8341&view=rev
Author: jmfuo
Date: 2008-12-31 11:35:40 +0000 (Wed, 31 Dec 2008)
Log Message:
-----------
made clearer method name : prMakeView
Modified Paths:
--------------
trunk/build/SCClassLibrary/Common/GUI/Base/EZListView.sc
trunk/build/SCClassLibrary/Common/GUI/Base/EZNumber.sc
trunk/build/SCClassLibrary/Common/GUI/Base/EZPopUpMenu.sc
trunk/build/SCClassLibrary/Common/GUI/Base/EZRangerSC.sc
trunk/build/SCClassLibrary/Common/GUI/Base/EZSlider.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-31 11:30:36 UTC (rev 8340)
+++ trunk/build/SCClassLibrary/Common/GUI/Base/EZListView.sc 2008-12-31 11:35:40 UTC (rev 8341)
@@ -10,7 +10,7 @@
bounds.isNil.if{bounds= 160@200};
// if no parent, then pop up window
- # view,bounds = this.prPopUpWindow( parentView,bounds);
+ # view,bounds = this.prMakeView( parentView,bounds);
// calcualate bounds
# labelBounds,listBounds = this.prSubViewBounds(bounds, label.notNil);
Modified: trunk/build/SCClassLibrary/Common/GUI/Base/EZNumber.sc
===================================================================
--- trunk/build/SCClassLibrary/Common/GUI/Base/EZNumber.sc 2008-12-31 11:30:36 UTC (rev 8340)
+++ trunk/build/SCClassLibrary/Common/GUI/Base/EZNumber.sc 2008-12-31 11:35:40 UTC (rev 8341)
@@ -33,7 +33,7 @@
bounds.isNil.if {bounds= 160@20};
// if no parent, then pop up window
- # view,bounds = this.prPopUpWindow( parentView,bounds);
+ # view,bounds = this.prMakeView( parentView,bounds);
labelSize=labelWidth@labelHeight;
numSize = numberWidth@labelHeight;
Modified: trunk/build/SCClassLibrary/Common/GUI/Base/EZPopUpMenu.sc
===================================================================
--- trunk/build/SCClassLibrary/Common/GUI/Base/EZPopUpMenu.sc 2008-12-31 11:30:36 UTC (rev 8340)
+++ trunk/build/SCClassLibrary/Common/GUI/Base/EZPopUpMenu.sc 2008-12-31 11:35:40 UTC (rev 8341)
@@ -10,7 +10,7 @@
bounds.isNil.if{bounds= 160@44};
// if no parent, then pop up window
- # view,bounds = this.prPopUpWindow( parentView,bounds);
+ # view,bounds = this.prMakeView( parentView,bounds);
// calcualate bounds
# labelBounds,listBounds = this.prSubViewBounds(bounds, label.notNil);
Modified: trunk/build/SCClassLibrary/Common/GUI/Base/EZRangerSC.sc
===================================================================
--- trunk/build/SCClassLibrary/Common/GUI/Base/EZRangerSC.sc 2008-12-31 11:30:36 UTC (rev 8340)
+++ trunk/build/SCClassLibrary/Common/GUI/Base/EZRangerSC.sc 2008-12-31 11:35:40 UTC (rev 8341)
@@ -34,7 +34,7 @@
bounds.isNil.if{bounds = 350@20};
// if no parent, then pop up window
- # view,bounds = this.prPopUpWindow( parentView,bounds);
+ # view,bounds = this.prMakeView( parentView,bounds);
labelSize=labelWidth@labelHeight;
numSize = numberWidth@labelHeight;
Modified: trunk/build/SCClassLibrary/Common/GUI/Base/EZSlider.sc
===================================================================
--- trunk/build/SCClassLibrary/Common/GUI/Base/EZSlider.sc 2008-12-31 11:30:36 UTC (rev 8340)
+++ trunk/build/SCClassLibrary/Common/GUI/Base/EZSlider.sc 2008-12-31 11:35:40 UTC (rev 8341)
@@ -33,7 +33,7 @@
bounds.isNil.if{bounds = 350@20};
// if no parent, then pop up window
- # view,bounds = this.prPopUpWindow( parentView,bounds);
+ # view,bounds = this.prMakeView( parentView,bounds);
labelSize=labelWidth@labelHeight;
numSize = numberWidth@labelHeight;
Modified: trunk/build/SCClassLibrary/Common/GUI/Base/EZgui.sc
===================================================================
--- trunk/build/SCClassLibrary/Common/GUI/Base/EZgui.sc 2008-12-31 11:30:36 UTC (rev 8340)
+++ trunk/build/SCClassLibrary/Common/GUI/Base/EZgui.sc 2008-12-31 11:35:40 UTC (rev 8341)
@@ -51,7 +51,7 @@
^[labelBounds, widgetBounds]
}
- prPopUpWindow{arg parentView,bounds; // return a container, or a popUpWindow with a container
+ prMakeView{arg parentView,bounds; // return a container, or a popUpWindow with a container
var w, winBounds, view;
parentView.isNil.if{
popUp=true;
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/