commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] [gnuradio] 03/05: qtgui: adding util.py


From: git
Subject: [Commit-gnuradio] [gnuradio] 03/05: qtgui: adding util.py
Date: Mon, 17 Oct 2016 15:22:28 +0000 (UTC)

This is an automated email from the git hooks/post-receive script.

jcorgan pushed a commit to branch master
in repository gnuradio.

commit 5fc448bd285777af3309d300d96be35c2e910c89
Author: Tim O'Shea <address@hidden>
Date:   Mon Oct 17 10:22:13 2016 -0400

    qtgui: adding util.py
---
 gr-qtgui/python/qtgui/util.py | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gr-qtgui/python/qtgui/util.py b/gr-qtgui/python/qtgui/util.py
new file mode 100644
index 0000000..d2e9495
--- /dev/null
+++ b/gr-qtgui/python/qtgui/util.py
@@ -0,0 +1,35 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+# Copyright 2016 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 PyQt4 import Qt, QtCore, QtGui
+from gnuradio import gr
+
+def check_set_qss():
+    app = QtGui.qApp
+    qssfile = gr.prefs().get_string("qtgui","qss","")
+    if(len(qssfile)>0):
+        try:
+            app.setStyleSheet(open(qssfile).read())
+        except:
+            print "WARNING: bad QSS file, %s"%(qssfile)
+



reply via email to

[Prev in Thread] Current Thread [Next in Thread]