summaryrefslogtreecommitdiff
path: root/gr-qtgui/examples/pyqt_example_c.py
diff options
context:
space:
mode:
authorJohnathan Corgan2011-09-24 11:19:17 -0700
committerJohnathan Corgan2011-09-24 11:19:17 -0700
commit2e6df0c3084b29648648148b1bd5aeddc63fe00f (patch)
treeb0d55f66ba2c40260a2d9b57ffcce4e10421990d /gr-qtgui/examples/pyqt_example_c.py
parent35222394b0515b91d814d8f17df75048782d1238 (diff)
parent1371c92be1ed0a4b371915168eecacd00fc3538c (diff)
downloadgnuradio-2e6df0c3084b29648648148b1bd5aeddc63fe00f.tar.gz
gnuradio-2e6df0c3084b29648648148b1bd5aeddc63fe00f.tar.bz2
gnuradio-2e6df0c3084b29648648148b1bd5aeddc63fe00f.zip
Merge branch 'master' into next
Conflicts: gr-qtgui/apps/usrp_display.py
Diffstat (limited to 'gr-qtgui/examples/pyqt_example_c.py')
-rwxr-xr-xgr-qtgui/examples/pyqt_example_c.py32
1 files changed, 29 insertions, 3 deletions
diff --git a/gr-qtgui/examples/pyqt_example_c.py b/gr-qtgui/examples/pyqt_example_c.py
index 607ab12ee..553d346c9 100755
--- a/gr-qtgui/examples/pyqt_example_c.py
+++ b/gr-qtgui/examples/pyqt_example_c.py
@@ -1,9 +1,35 @@
#!/usr/bin/env python
+#
+# Copyright 2011 Free Software Foundation, Inc.
+#
+# This file is part of GNU Radio
+#
+# GNU Radio is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3, or (at your option)
+# any later version.
+#
+# GNU Radio is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GNU Radio; see the file COPYING. If not, write to
+# the Free Software Foundation, Inc., 51 Franklin Street,
+# Boston, MA 02110-1301, USA.
+#
from gnuradio import gr
-from gnuradio import qtgui
-from PyQt4 import QtGui, QtCore
-import sys, sip
+import sys
+
+try:
+ from gnuradio import qtgui
+ from PyQt4 import QtGui, QtCore
+ import sip
+except ImportError:
+ print "Error: Program requires PyQt4 and gr-qtgui."
+ sys.exit(1)
class dialog_box(QtGui.QWidget):
def __init__(self, display, control):