I set up Aptana Studio 3 just like kiwidude and user_none described but I get errors in the editor when I open files. For example, opening gui2/device.py give this:
Code:
Description Resource Path Location Type
Unresolved import: pyqtSignal device.py /calibre/src/calibre/gui2 line 9 PyDev Problem
Unresolved import: QAction device.py /calibre/src/calibre/gui2 line 8 PyDev Problem
Unresolved import: QActionGroup device.py /calibre/src/calibre/gui2 line 8 PyDev Problem
Unresolved import: QDialog device.py /calibre/src/calibre/gui2 line 9 PyDev Problem
Unresolved import: QIcon device.py /calibre/src/calibre/gui2 line 8 PyDev Problem
Unresolved import: QMenu device.py /calibre/src/calibre/gui2 line 8 PyDev Problem
Unresolved import: QObject device.py /calibre/src/calibre/gui2 line 9 PyDev Problem
Unresolved import: Qt device.py /calibre/src/calibre/gui2 line 9 PyDev Problem
Unresolved import: SIGNAL device.py /calibre/src/calibre/gui2 line 8 PyDev Problem
And I have red X's next to these lines:
Code:
from PyQt4.Qt import (QMenu, QAction, QActionGroup, QIcon, SIGNAL,
Qt, pyqtSignal, QDialog, QObject)
How do I resolve this?