[rkward-cvs] SF.net SVN: rkward: [1767] trunk/rkward

tfry at users.sourceforge.net tfry at users.sourceforge.net
Fri Mar 30 09:47:11 UTC 2007


Revision: 1767
          http://svn.sourceforge.net/rkward/?rev=1767&view=rev
Author:   tfry
Date:     2007-03-30 02:47:11 -0700 (Fri, 30 Mar 2007)

Log Message:
-----------
ChangeLog, TODO, set a minimum height for objectlistview

Modified Paths:
--------------
    trunk/rkward/ChangeLog
    trunk/rkward/TODO
    trunk/rkward/rkward/misc/rkobjectlistview.cpp

Modified: trunk/rkward/ChangeLog
===================================================================
--- trunk/rkward/ChangeLog	2007-03-30 09:26:04 UTC (rev 1766)
+++ trunk/rkward/ChangeLog	2007-03-30 09:47:11 UTC (rev 1767)
@@ -1,3 +1,4 @@
+- use maximum permissible width in the object viewer
 - fix a crash that occurred during startup under some circumstances
 - when flushing the output, also delete all graphs
 - add support for a "technical details" section in plugin help files

Modified: trunk/rkward/TODO
===================================================================
--- trunk/rkward/TODO	2007-03-30 09:26:04 UTC (rev 1766)
+++ trunk/rkward/TODO	2007-03-30 09:47:11 UTC (rev 1767)
@@ -162,6 +162,9 @@
 	- RKComponentProperties:
 		- the whole idea about modifiers is flawed. Instead, a new property should be created, if, and only if the modifier is ever requested. Now, how to make sure this property always has the correct value?
 			- thinking about it, only the boolean property modifiers "not" and "numeric" would really need to be changed.
+	- When saving workplace layout, save it relative to the workspace file. Allows to move the workspace, easier
+		- KURL::relativeUrl()
+		- How to deal with workplaces saved in the config (and not bound to a workspace file?)
 
 General code:
 	- use constBegin (), constEnd ()

Modified: trunk/rkward/rkward/misc/rkobjectlistview.cpp
===================================================================
--- trunk/rkward/rkward/misc/rkobjectlistview.cpp	2007-03-30 09:26:04 UTC (rev 1766)
+++ trunk/rkward/rkward/misc/rkobjectlistview.cpp	2007-03-30 09:47:11 UTC (rev 1767)
@@ -149,6 +149,7 @@
 	RKListViewItem *item = findObjectItem (RObjectList::getGlobalEnv ());
 	RK_ASSERT (item);
 	item->setOpen (true);
+	setMinimumHeight (item->height() * 5);
 
 	connect (RKGlobals::tracker (), SIGNAL (objectRemoved (RObject *)), this, SLOT (objectRemoved (RObject*)));
 	connect (RKGlobals::tracker (), SIGNAL (objectPropertiesChanged (RObject *)), this, SLOT (objectPropertiesChanged (RObject*)));


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the rkward-tracker mailing list