glade-mode

Homepage: not distributed yet

Updated:

Summary

A mode to view glade interface using tree-widget

Commentary

1. Why I write it?
   Sometimes, I use glade draw a interface, I forget what signal I
   used for a widget, I have to swap Emacs from coding to Glade to
   look up for the signal. The other way is open the glade file to
   search. But I hate the markup label, and I want a easy way for
   me to browse the whole file. So I think use tree-widget to
   represent the glade interface is necessary.

2. Can it modify glade file?
   Currently not. But I think it is not hard to edit current
   content in the xml. It really hard to add something to the xml.
   Because I don't know what is valid to add to file.

3. How to invocate glade-mode automaticly when open .glade file?
   Because magic-mode-alist is used before auto-mode-alist, So you
   have to add a regexp to magic-mode-alist:
   (add-to-list 'magic-mode-alist
     '("<\\?xml[ \t\r\n]+[^>]*>[ \t\r\n]*

    

Dependencies