Re:graphical interface for gnu radio (fwd)

Josh,

I commented out the part you suggested and then it gave me the following
message:


Traceback (most recent call last):
File “./Main.py”, line 7, in ?
import ActionHandler
File “/home/anastas/grc_0.50/src/ActionHandler.py”, line 14, in ?
import Dialogs
File “/home/anastas/grc_0.50/src/Dialogs.py”, line 290, in ?
class AboutDialog(gtk.AboutDialog):
AttributeError: ‘module’ object has no attribute ‘AboutDialog’

Then I commented out the “AboutDialog” class as well
and it now gives me the message

==================
app init
Traceback (most recent call last):
File “./Main.py”, line 10, in ?
ActionHandler.ActionHandler()
File “/home/anastas/grc_0.50/src/ActionHandler.py”, line 44, in
init
self.handle_states(APPLICATION_INITIALIZE)
File “/home/anastas/grc_0.50/src/ActionHandler.py”, line 103, in
handle_states
for action in ACTIONS_LIST: action.set_sensitive(False) #set all
actions disabled
AttributeError: ‘gtk.Action’ object has no attribute ‘set_sensitive’

At this point I quit, since the “set_sensitive” seems to be used a lot
throughout the code…

Achilleas