[JPP-Devel] SourceForge problems

2007-05-23 Thread Larry Becker
I have been having problems with accessing the openjump repository on SourceForge for the last hour. Is anyone else having issues? If I keep trying, I eventually get it to work, but it is taking way too long to update my copy of OJ. I will check back with it tomorrow. regards, Larry --

Re: [JPP-Devel] OpenJUMP is rendering Strings? Very interesting...

2007-05-23 Thread Larry Becker
SS, public RenderingManager(final LayerViewPanel panel) { this.panel = panel; repaintTimer.setCoalesce(true); putAboveLayerables(SelectionBackgroundRenderer.CONTENT_ID, new Renderer.Factory() { public Renderer create() {

Re: [JPP-Devel] Caching result of WMS requests?

2007-05-22 Thread Larry Becker
a new ThreadQueue implementation here, but it need's a bit more of testing. - Sascha Larry Becker schrieb: Hi Sascha, I have run into the WMS Layer problem you referred to. It is caused by the fact that WMSLayer renders on a separate Thread. To wait for those layers to finish rendering

Re: [JPP-Devel] Question?

2007-05-22 Thread Larry Becker
FOSS4G edition) Larry Becker schrieb: Michaël, I agree that PlugInContext is probably not appropriate in the model. I changed mine to WorkbenchContext since SkyJUMP no longer allows Task Cloning because it was buggy. Now that I think of it, the bugs might have been related to the issue

Re: [JPP-Devel] Question? - rendering

2007-05-22 Thread Larry Becker
Michaël, it looks like you need to mediate this dispute between me and Stefan. Stefan claims that the decimation optimization caused the zoombar to get very slow when given some worst case very large polygon data that he has. I claim that the problem occurs even without the optimization, and

Re: [JPP-Devel] Question?

2007-05-21 Thread Larry Becker
community if you could find the solution to this problem. regards, Larry Becker On 5/21/07, david alejandro garcia ortega [EMAIL PROTECTED] wrote: Hi I am working with the source code of OpenJump and i have the following question: When I load a dataset(shapefile) commited memory is about 150Mb

Re: [JPP-Devel] Question?

2007-05-21 Thread Larry Becker
but only sometimes :I stefan david alejandro garcia ortega schrieb: Thanks Larry i will try to find a solution to the problem. DAVID GARCIA From: /Larry Becker [EMAIL PROTECTED]/ Reply-To: /List

Re: [JPP-Devel] I could really use some help with this question on the RenderingManager...

2007-05-21 Thread Larry Becker
Hi SS, You said: The line that is generating the error mesage is this: if (getRenderer(contentID).equals(null)) The only way that could be true is if contentID is null. If I remember correctly, contentID is basically the layer object. Larry On 5/21/07, Sunburned Surveyor [EMAIL PROTECTED]

Re: [JPP-Devel] I could really use some help with this question on the RenderingManager...

2007-05-21 Thread Larry Becker
Wishful thinking. There are no layers in an empty project, so there are no renders. Larry On 5/21/07, Sunburned Surveyor [EMAIL PROTECTED] wrote: I just realized OpenJUMP isn't passing the LayerViewPanel or any other phantom object to the render() method. The only way the if

Re: [JPP-Devel] A question about null values...

2007-05-16 Thread Larry Becker
SS, When you get an exception while running in Eclipse, you should be able to click on the line in the Console and have it take you to the exact line that caused the error. Even if you are not running in Eclipse, the line number should be available in the Details, and Navigate - Go to Line

Re: [JPP-Devel] wiki on sourceforge

2007-05-16 Thread Larry Becker
the changelog on the vividsolutions cvs. But currently i am already quite happy to have the cvs email log ;) all the things mentioned by Sascha are very hepful and i really enjoy reading them for the wfs/printlayout plugin development. Larry Becker schrieb: A changeLog would be nice. You can

Re: [JPP-Devel] My Article in the OSGeo Journal

2007-05-15 Thread Larry Becker
Nice work. Larry On 5/15/07, Sunburned Surveyor [EMAIL PROTECTED] wrote: I had the privilege of writing a short, introductory article to spatial relationships for the first article of the OSGeo Journal. You can find the PDF version of the enrire issue here:

Re: [JPP-Devel] Annontations as a Layer?

2007-05-15 Thread Larry Becker
SS, To see an example of a special label class, see the com.vividsolutions.jump.workbench.ui.cursortool.NoteTool class. It is a simplified version of what you are talking about, I think. There is also a custom style called NoteStyle that renders it. No one seems to instantiate this orphaned

Re: [JPP-Devel] Switching to Subversion...

2007-05-11 Thread Larry Becker
Thanks Sunburned. I read the article linked to in Malte's post. I can see where Subversion's atomic commit would be important in some environments, but with the kind of service that I get from SourceForge, I would never get anything done if I had to start over each time I got an error.

Re: [JPP-Devel] Some help integrating changes from SkyJUMP...

2007-05-10 Thread Larry Becker
Sunburned, It's actually pretty straightforward to do the compare using Eclipse. I use the right-click Compare With feature to synchronize features with JUMP and OpenJump. It will open up a Compare editor that will step you through the differences and you can use the buttons to copy changes that

Re: [JPP-Devel] Question about Mneu Items for Plugins

2007-05-09 Thread Larry Becker
UI glue code and an XML format and reader. hope this clears up the discussion, regards, Larry Becker -- http://amusingprogrammer.blogspot.com/ - This SF.net email is sponsored by DB2 Express Download DB2 Express C

Re: [JPP-Devel] Rationale for Extension concept

2007-05-09 Thread Larry Becker
Hi Michaël, You are right. No additional functionality is required. There is only one problem. It doesn't work right now unless you are in the development environment. At least, I have never been able to get it to work in a runtime deployed version of JUMP. Larry On 5/9/07, Michaël Michaud

Re: [JPP-Devel] Question about Mneu Items for Plugins

2007-05-08 Thread Larry Becker
Hi Michaël, I believe the OJ feature request that you are referring to was submitted by Steve Tanner: Have JUMPConfiguration.java in XML file. Ugo added the following comment: Ugo Taddei: �Has anyone thought about changing the JUMPConfiguration.java to an xml-based config? That is,

Re: [JPP-Devel] Question about Mneu Items for Plugins

2007-05-08 Thread Larry Becker
representing jump's plugins and ui elements like menu-items and tools without using a specific library. I'm still not sure about the best approach, but it would be a great feature for OpenJUMP. Michaël Larry Becker a écrit : Hi Michaël, I believe the OJ feature request that you

Re: [JPP-Devel] Questions on FeatureCollection Interface

2007-05-01 Thread Larry Becker
Stefan is correct that Lists have more methods, although technically Collection is an interface not a super class. The List interface is a superset of the Collection interface. Notably it adds the important positional access methods. Of course, Lists also have order which all Collections do not

Re: [JPP-Devel] Questions on FeatureCollection Interface

2007-05-01 Thread Larry Becker
and Larry. Thank you in advance for your patient efforts to explain some of these basic Java principles to me. The Sunburned Surveyor On 5/1/07, Larry Becker [EMAIL PROTECTED] wrote: Stefan is correct that Lists have more methods, although technically Collection is an interface not a super

Re: [JPP-Devel] ArcSDE Extension

2007-04-30 Thread Larry Becker
on the ArcSDE Reader 2.0 plugin. It is still the one from August. Are you refering to a problem with OJ 1.2 Beta? ..And none of them (plugin + OJ 1.2) is installable either??? lots of wondering ;o) stefan Larry Becker schrieb: Stefan, I tried you new installable ArcSDE extension and I

Re: [JPP-Devel] Moving OpenJUMP Development To 1.5 JDK...

2007-04-14 Thread Larry Becker
Yes, I think the thread kind of got lost. I was talking about changing the code to take advantage of Java 5''s features, not just compiling with it, which as Stefan pointed out, we have been doing for quite some time. Larry On 4/14/07, Stefan Steiniger [EMAIL PROTECTED] wrote: Hei Landon,

Re: [JPP-Devel] Question about efficient in-memory feature storage...

2007-04-13 Thread Larry Becker
Hi Sunburned, Michaël is correct. It is time to embrace the Java 5 enhancements. It may even be time to start considering Java 6. My testing shows no problems with compatibility. Regarding specific suggestions, I'm afraid I haven't yet understood exactly what problem you are trying to

Re: [JPP-Devel] Question about efficient in-memory feature storage...

2007-04-13 Thread Larry Becker
it is an important one. The Sunburned Surveyor On 4/13/07, Larry Becker [EMAIL PROTECTED] wrote: Hi Sunburned, Michaël is correct. It is time to embrace the Java 5 enhancements. It may even be time to start considering Java 6. My testing shows no problems with compatibility. Regarding specific

Re: [JPP-Devel] Debugging - Where does System.err output go?

2007-04-12 Thread Larry Becker
I think that it goes to the system console in Eclipse or whatever, otherwise probably to the bit bucket. regards, Larry On 4/12/07, Sunburned Surveyor [EMAIL PROTECTED] wrote: I've got the code for the plug-in dependency system and the pluggable renderers integrated into a copy of OpenJUMP's

Re: [JPP-Devel] Help with pluggable renderers!

2007-04-12 Thread Larry Becker
In Eclipse, just highlight the reference you are interested in (in this case render), right click and choose References-Project. This will display all of the places in the project that reference your highlighted text in a Search panel that you can arrow through. It understands Java, so it is

Re: [JPP-Devel] Need some help with the pluggable rendering design...

2007-03-29 Thread Larry Becker
Hi Sunburned, I don't have a lot of time to study your problem, but I note that there is code in OpenJump that Stefan put in for Ole to support PIROL's image layer renderer (a plugin, right?). I've seen the code (just search for Ole in the source), but I haven't seen how PIROL uses it. It may

Re: [JPP-Devel] speed up of rendering

2007-03-24 Thread Larry Becker
with an older version of jump it takes one 2 sek after seeing the outlines and one sec more for filling. any suggestions? probably an issue which could be solved by the bbox? stefan Larry Becker schrieb: Right. That would be: http://skyjump.cvs.sourceforge.net/skyjump/skyjump/com/vividsolutions/jump

Re: [JPP-Devel] speed up of rendering

2007-03-24 Thread Larry Becker
, Stefan Steiniger [EMAIL PROTECTED] wrote: Hei Larry, Larry Becker schrieb: Hi Stefan, 1. Is there somewhere I can get a copy of the shape file to test with? i upload it here: ftp://ftp.geo.unizh.ch/pub/sstein/openjump/brdlaender.zip 2. Is the speed up working for other large shape

Re: [JPP-Devel] speed up of rendering

2007-03-24 Thread Larry Becker
slowdown only occurs when you drag the zoom bar (in any version of JUMP). thanks, Larry On 3/24/07, Larry Becker [EMAIL PROTECTED] wrote: Hi Stefan, It occurs to me that I never use the Zoom bar so I probably haven't tested it. The Zoom bar does a more radical kind of decimation simplification

Re: [JPP-Devel] 'Cancel vertex' functionality

2007-03-20 Thread Larry Becker
in the tool bar? It should be logical for users and I started to think that keyboard might be tricky for tablet PC users, even they do have virtual keyboard. -Jukka- -Original Message- From: [EMAIL PROTECTED] on behalf of Larry Becker Sent: Sun 18.3.2007 18:21 To: List for discussion of JPP

Re: [JPP-Devel] 'Cancel vertex' functionality

2007-03-20 Thread Larry Becker
on my todo list :o) btw.. i forgot but did you send the changes for the rendering, Larry? stefan Larry Becker schrieb: Hi Jukka, Bob was able to modify our ConstrainedMultiClickTool class to add a key listener for the Backspace key which will delete the last vertex. We couldn't make your

Re: [JPP-Devel] 'Cancel vertex' functionality

2007-03-20 Thread Larry Becker
/WKTFillPattern.java?view=log regards, Larry On 3/20/07, Stefan Steiniger [EMAIL PROTECTED] wrote: thanx, but i meant with rendering the speed improvement where you sent recently around the images. Or is it still in the testing phase? stefan Larry Becker schrieb: Hi Stefan, If you are referring

Re: [JPP-Devel] Make Java2DConverter exchangeable in Viewport?

2007-03-19 Thread Larry Becker
Hi Sascha, Great idea! Your patch is implemented in SkyJUMP. Of course, it has no effect until someone creates code to use it. I see that this would also be a way to implement my decimation optimization without losing any precision. thanks, Larry Becker On 3/19/07, Sascha L. Teichmann

Re: [JPP-Devel] Fwd: Open JUMP crashing issue

2007-03-18 Thread Larry Becker
SkyJUMP (and also probably the reason Kosmo) installs its own copy of the JVM. Regards, Larry Becker On 3/18/07, Landon Blake [EMAIL PROTECTED] wrote: I received this message at the JPP e-mail address. I am forwarding it to the mailing list. The Sunburned Surveyor -- Forwarded message

Re: [JPP-Devel] 'Cancel vertex' functionality

2007-03-18 Thread Larry Becker
Hi Jukka, As usual, you make an excellent point. I've heard the same complaint from our users. I'll look into it. regards, Larry Becker On 3/18/07, Rahkonen Jukka [EMAIL PROTECTED] wrote: Hi, Sometimes I do errors while digitising polylines or polygons with many vertises. Is there now

Re: [JPP-Devel] Obtaining a reference to the JUMPWorkbench object.

2007-03-16 Thread Larry Becker
The answer depends on the class. In some cases there is no way. regards, Larry On 3/16/07, Sunburned Surveyor [EMAIL PROTECTED] wrote: I'm doing some final tweaks on my pluggable rendering system for OpenJUMP. I need to know how to obtain a reference to the JUMPWorkbench from inside another

Re: [JPP-Devel] Obtaining a reference to the JUMPWorkbench object.

2007-03-16 Thread Larry Becker
: That really sucks. There has got to be a way to fix that. I'll have to take a look at my code to figure out a way around this. :[ Thanks Larry. The Sunburned Surveyor On 3/16/07, Larry Becker [EMAIL PROTECTED] wrote: The answer depends on the class. In some cases there is no way. regards

Re: [JPP-Devel] Fwd: Suggestion by Pedro on changing to Kosmo

2007-03-05 Thread Larry Becker
. I need to speak some more about these issues. I hope I can find time later this weekend. The Sunburned Surveyor On 3/2/07, *Larry Becker* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Hi Stefan, Putting all together it's quite

Re: [JPP-Devel] OpenJUMP at FOSSGIS in Berlin

2007-02-27 Thread Larry Becker
Hi Ugo, You didn't mention Kosmo. I have just started looking at Kosmo's code and it is incredible. There are 1437 Java files in Kosmo compared to 948 in OpenJump, 897 in SkyJUMP, and 775 in JUMP. Besides the new data sources, the most exciting potential seems to be in their renderer (which

Re: [JPP-Devel] Plan A For Supporting Plug-In Dependency

2007-02-27 Thread Larry Becker
link the message to the plug-in by the plug-ins class name. Does this sound like something that you had in mind? It might be better than simply presenting the user with a stack trace. Let me know what you think. Landon On 2/27/07, Larry Becker [EMAIL PROTECTED] wrote: Hi Sunburned

Re: [JPP-Devel] OpenJUMP at FOSSGIS in Berlin

2007-02-27 Thread Larry Becker
I can't explain it, but I can benchmark it. For the burlulc.shp redraw render speed benchmark (not counting time to load shape file): No color theming. uDig: 3 seconds. Kosmo: 5 seconds. gvSIG: 9 seconds. OpenJump, SkyJUMP: 13 seconds. with color theming on LUCODE uDig: 6 seconds.

Re: [JPP-Devel] The return of Concurrent modification error

2007-02-01 Thread Larry Becker
? Landon On 2/1/07, Larry Becker [EMAIL PROTECTED] wrote: Hey Sunburned, While I was testing out the PrintLayout, I got a Concurrent modification error on a project with only shapefiles. This seems to point to OJ specifically, since I have never yet gotten this error with SkyJUMP

Re: [JPP-Devel] The return of Concurrent modification error

2007-02-01 Thread Larry Becker
/07, Larry Becker [EMAIL PROTECTED] wrote: I should also note, so as not to overly alarm anyone, that the error was fully recoverable (like all of JUMP's errors), and did not happen again although I immediately tried loading the project again several times. Larry On 2/1/07, Larry Becker [EMAIL

Re: [JPP-Devel] PrintLayout Plugin 0.8.2

2007-01-31 Thread Larry Becker
I'm also getting an error. I'll try downloading and installing a fresh copy of OpenJUMP tomorrow. java.lang.NoClassDefFoundError: org/w3c/dom/xpath/XPathEvaluator at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(Unknown Source) at

Re: [JPP-Devel] Direction of line segments

2007-01-30 Thread Larry Becker
(a); firstFeature.setGeometry(CoordinateArrays.toLineOrPoint(a, new GeometryFactory())); wc.layerViewPanel.repaint(); } regards, Larry On 1/29/07, Larry Becker [EMAIL PROTECTED] wrote: Hi Michaël, That's interesting. I didn't know the arrow navigation trick. Is that an OpenJUMP PlugIn? It doesn't seem to work

Re: [JPP-Devel] OpenJUMP Icons

2007-01-30 Thread Larry Becker
I found 30 gifs inside rt.jar for Java 1.5 are at javax/swing/plaf/metal/icons. Is that what you mean? regards, Larry On 1/30/07, Sunburned Surveyor [EMAIL PROTECTED] wrote: I know I've asked this before, but I need to ask again. I'm starting on the development for the GUI to some of my

Re: [JPP-Devel] Direction of line segments

2007-01-29 Thread Larry Becker
/07, Larry Becker [EMAIL PROTECTED] wrote: Hi Pedro, To me, a simple specialized tool like Reverse Linestring is an ideal candidate for a Beanshell tool. Unfortunately, pasting the Beanshell code into the console gets old fast when you are doing it a lot. SkyJUMP has a small innovation

Re: [JPP-Devel] [jump-users] Re:new extensions for OpenJUMP: printing and project updating

2007-01-22 Thread Larry Becker
scale the image? 2. I have also tried printing a WMS layer but that did not work at all. Has anyone tried this?? I am not sure how to get access to the WMS image. 3. I use pdf995 as my PDF printer driver - it produces multi-page images without problems Geoff Larry Becker wrote

Re: [JPP-Devel] [jump-users] Re:new extensions for OpenJUMP: printing and project updating

2007-01-19 Thread Larry Becker
, but I would naturally welcome a more comprehensive solution to printing. The lack of a printing capability in OpenJUMP does seem a major limitation. Printing on multiple pages also appears an important capability as some users will have access to large format printers. Geoff Larry Becker wrote

Re: [JPP-Devel] Bug #1487099 - Final Verdict

2007-01-19 Thread Larry Becker
Sunburned, After searching the jump archives, I found this comment from Pedro to Ugo about the problem: UGO: I'm still using pre-Ugo mods (:-) release of OpenJump. I stuck with one the (late) December releases which is very stable. This problem has only arisen after the project became a full

Re: [JPP-Devel] Update on Bug #1487099

2007-01-18 Thread Larry Becker
Hi Sunburned, If I understand the bug in question, it is not easy to reproduce. It has been my experience that you can't fix bugs unless you can reproduce them, otherwise you can't know when they are fixed. All you can do otherwise is to apply a lot of preventative measures that may improve

Re: [JPP-Devel] Update on Bug #1487099

2007-01-18 Thread Larry Becker
Sunburned, It sounds like you have been studying up on the JUMP core quite a bit lately, and have reached a pretty good understanding of how it works. However, I'm confused about what the topic of Threads has to do with this bug fix. Events are not Threads, as I'm sure you realize. As far as

Re: [JPP-Devel] Splash Screen For OpenJUMP

2007-01-18 Thread Larry Becker
Just replace /openjump/src/com/vividsolutions/jump/workbench/ui/images/splash.png Larry On 1/18/07, Sunburned Surveyor [EMAIL PROTECTED] wrote: I'd like to update the splash screen for the 01.00.02 release of OpenJUMP. Can anyone give me some quick pointers on how to do that? Thanks, SS

Re: [JPP-Devel] Modified LayerManager class that fixes Bug #1487099...

2007-01-18 Thread Larry Becker
( category, type, categoryIndex)); } Thanks for your help Larry. The Sunburned Surveyor On 1/18/07, Larry Becker [EMAIL PROTECTED] wrote: Sunburned, I respectfully disagree with your analysis. I believe all of the iteration over LayerListeners occurs within the GUI

Re: [JPP-Devel] Help with Bug 1546889

2007-01-18 Thread Larry Becker
I'd like to know the answer to this one too. Larry On 1/18/07, Sunburned Surveyor [EMAIL PROTECTED] wrote: Michael, Looks like Stefan is hot on the trail of my bug! Would you be able to breifly decribe the purpose of this command and how it works? Thanks, The Sunburned Surveyor On

Re: [JPP-Devel] Splash Screen For OpenJUMP

2007-01-18 Thread Larry Becker
had some discussion on logo similarities and the number of the splashscreen is set up elsewhere stefan Larry Becker schrieb: Just replace /openjump/src/com/vividsolutions/jump/workbench/ui/images/splash.png Larry On 1/18/07, *Sunburned Surveyor

Re: [JPP-Devel] Is there a spatial function 'is not equal'?

2006-11-28 Thread Larry Becker
layer - use equals as relation - check the box for complement result :) and of course it works: thanx to Martin (i guess the spatial query was his implementation) stefan Larry Becker wrote: Complement Results is available in JUMP 1.2 and has been there for several months. On 11/27/06

Re: [JPP-Devel] Is there a spatial function 'is not equal'?

2006-11-27 Thread Larry Becker
, Larry Becker [EMAIL PROTECTED] wrote: I'm guessing by the fact that no one has mentioned it, that OJ hasn't implemented the Complement Result option from VividSolutions yet? Larry On 11/27/06, Rahkonen Jukka [EMAIL PROTECTED] wrote: Lähettäjä: Ugo Taddei [mailto:[EMAIL PROTECTED] Hello

Re: [JPP-Devel] CursorTool - isRightMouseButtonUsed()

2006-11-16 Thread Larry Becker
I believe that this function is used to determine if the right click context menu should be displayed while the CursorTool is active. Larry On 11/16/06, Sunburned Surveyor [EMAIL PROTECTED] wrote: The CursorTool interface declares a method named isRightMouseButton() used. I'm curious what the

Re: [JPP-Devel] nightly built and Java 1.5 switch

2006-11-07 Thread Larry Becker
Hi Stefan,For whom would occure problems if we switch OJ to Java 1.5? This seems like a question that would be more appropriate for the jump users list since it will affect all OJ users.regards,LarryOn 11/7/06, Stefan Steiniger [EMAIL PROTECTED] wrote: sorry -- i have seen that i broke the

Re: [JPP-Devel] New Blog Post...

2006-11-03 Thread Larry Becker
Just a stopwatch.On 11/3/06, Sunburned Surveyor [EMAIL PROTECTED] wrote: Put up a little post about using XML...http://openjump.blogspot.com/The Sunburned SurveyorP.S. - How are you guys profiling OpenJUMP for the Shapefile tests? Are you using a stop watch, or do you have a programmatic

Re: [JPP-Devel] java.lang.OutOfMemoryError: Java heap space error when tried to load large amount of memory

2006-09-25 Thread Larry Becker
Vamsee, Have you tried giving OpenJUMP a lot more memory? Say 1GB. Your PC might have to go to virtual memory, but it should still work if you give it enough memory. I know that 512MB sounds like enough for 250MB of shape files, but it isn't with JUMP. regards,Larry BeckerOn 9/25/06, vamsee movva

Re: [JPP-Devel] Some questions about isRollingBackEdits()...

2006-09-13 Thread Larry Becker
Hi Sunburned, Why would we ever need to check and see if a CursorTool was rolling back some action? EditTransaction should not commit the change when invalid geometry is produce as part of the operation. ROLLING_BACK_INVALID_EDITS_KEY is a flag that this is occuring so that other parts of the code

Re: [JPP-Devel] The deactivate() method of the AbstractCursorTool class...

2006-09-13 Thread Larry Becker
I believe that if a toolbox (like the edit toolbox) is closed, the current edit tool is deactivated and the first tool on the toolbar is selected by default.regards,LarryOn 9/13/06, Sunburned Surveyor [EMAIL PROTECTED] wrote: The deactivate method of the AbstractCursorTool currently looks like

Re: [JPP-Devel] The deactivate() method of the AbstractCursorTool class...

2006-09-13 Thread Larry Becker
OpenJUMP toolbar?Do you know what class handles this transition? SSOn 9/13/06, Larry Becker [EMAIL PROTECTED] wrote: I believe that if a toolbox (like the edit toolbox) is closed, the current edit tool is deactivated and the first tool on the toolbar is selected by default. regards, Larry On 9/13/06

Re: [JPP-Devel] A couple questions about Blackboard objects...

2006-09-12 Thread Larry Becker
Hi Sunburned, The Workbench blackboard is serialized as workbench-state.xml. Layer blackboards are not serialized. PlugInContext is a "snapshot", whereas WorkbenchContext is "current" e.g., thecurrently active window regards,LarryOn 9/12/06, Sunburned Surveyor [EMAIL PROTECTED] wrote: I've had

Re: [JPP-Devel] Another question on AbstractCursorTool source code...

2006-09-06 Thread Larry Becker
Hi Sunburned, I think what is going on here is that activate is used to change from one LayerViewPanel to another. When the change is made, the listener for the old panel has to be deactivated so that the cursor tool will listen only to the mouse events in the newly activated panel. If you removed

Re: [JPP-Devel] Unselectable Layer -- pls. Ugo/Larry/Udo have a look

2006-08-29 Thread Larry Becker
Sounds like a great feature. For a UI, how about putting Selectable under Editable on the layer list right-click menu?regards,LarryOn 8/29/06, Stefan Steiniger [EMAIL PROTECTED] wrote: Hei Juliana,i guess your idea is the best, to add a property to the Layer class(Layerable?)and then change the

<    3   4   5   6   7   8