How to detect if file in IDE is being edited using Open Tools API
Asked Answered
N

2

6

I made a small IDE plug-in using Open Tools API that accesses ClearCase. It has menu items "Check In", "Check Out", etc. It works OK but I want it to check out a read-only file automatically if I start typing in IDE editor or if I attempt to save the file. Do you think this is possible?

I tried a few things but gave up eventually. IOTAEditorServices.KeyboardServices has AddKeyboardBinding method which looked promising. Using it I added a notifier with binding type btPartial (and later tried btComplete) and the plug-in started detecting some shortcut key presses but not all keyboard events, far from it... Any ideas would be much appreciated!

Neoteny answered 26/5, 2009 at 4:33 Comment(2)
Did you solve your problem? I'd love to see your code. I've just asked a similar question: #6671121Navarrette
@neves: You'd better focus on TOndrej's answser below. Presumably, user112365 is no more alive and kicking on SO.Ewold
V
8

I think a "cleaner" way is to hook up a IOTAEditorNotifier to each editor and have your IOTAEditor.Modified method called by the IDE whenever the contents of the editor is modified, whether by keyboard, mouse or programmatically from another plugin.

Here's an example which registers an IOTAIDENotifier to be notified of files being opened in the IDE so it can register its IOTAEditorNotifier instances.

Viperine answered 26/5, 2009 at 8:0 Comment(3)
Thanks a lot. Sounds like this should work. I'll give it a try and let you know later, most likely on Friday.Neoteny
@Neoteny Did you ever figure this out? I tried this but the problem is that Read-Only files cannot be modified. So the IOTAEditor.Modified is never fired.Alika
@Alika I think you can remove the read-only flag from the edit buffer even if the file itself is read-only.Viperine
D
1

I must be possible somehow: we use SourceConexion (http://www.epocalipse.com/scx.htm) here, which auto checks-out the file before you edit the source or change the form.

JVCS has IDE integration support, it is open source, maybe they have implemented this too: http://jedivcs.sourceforge.net/

Debauch answered 26/5, 2009 at 7:3 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.