-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mac OS X compatibility? #24
Comments
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”
brew install qt
brew install sip
brew install pyqt Installing sip installs python 2.7 in /usr/local/bin, and puts in front of the /usr/bin in path. Change header qiew.py to
After this qiew starts but doesn't receive key events (it does receive mouse clicks in the window). --- a/qiew.py
+++ b/qiew.py
@@ -134,7 +134,7 @@ class binWidget(QtGui.QWidget):
self.activateWindow()
self.setFocus()
- self.installEventFilter(self)
+ #self.installEventFilter(self)
"""
# build thumbnail
@@ -469,6 +469,11 @@ class Qiew(QtGui.QWidget):
self.setWindowTitle('qiew - {0}'.format(sys.argv[1]))
self.showMaximized()
self.wid.activateWindow()
+ self.raise_()
+ self.installEventFilter(self)
+
+ def eventFilter(self, watched, event):
+ return self.wid.eventFilter(watched, event)
|
selection doesn't work, perhaps transparency doesn't work? Have you tried selecting a section? ALT+S then F9 on a section. |
Transparency works. |
can you try again? some changes have been done. (fixes for linux) |
Selection still doesn't work. But keys work and window appears in front.
with
because I'm starting the brew python version. It would be nice to have a icon for the window :) If you want to test more maybe I can set you an account on the laptop. |
am schimbat '#!/usr/bin/python'. deci eventual să-mi faci cont.. da cam într-o săptămână.. |
Dacă citești ceva mai sus vezi că merge transparency. |
Da, ciudat. Poate nu recunoaște shift apăsat atunci
|
Works greatly on OSX 10.10 qiew is one of the a few hex editor with disassmbly support on OSX, but it's still on early stage. I believe you shall make a promotion about qiew on Hackernews or some other forums and blog. |
Thanks! It does not support mouse yet. I'll try to figure it out what to do with the shortcuts also. Thanks for the suggestions also! |
Qiew wasn't tested on MAC OS X. It should work, hopefully with minor modifications.
The text was updated successfully, but these errors were encountered: