diff options
Diffstat (limited to 'grc/gui/ParamWidgets.py')
-rw-r--r-- | grc/gui/ParamWidgets.py | 25 |
1 files changed, 19 insertions, 6 deletions
diff --git a/grc/gui/ParamWidgets.py b/grc/gui/ParamWidgets.py index eab6a315b9..2fd6ccd1dc 100644 --- a/grc/gui/ParamWidgets.py +++ b/grc/gui/ParamWidgets.py @@ -1,12 +1,25 @@ -# -*- coding: utf-8 -*- -"""${FILE_NAME}""" +# Copyright 2007-2016 Free Software Foundation, Inc. +# This file is part of GNU Radio +# +# GNU Radio Companion 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 2 +# of the License, or (at your option) any later version. +# +# GNU Radio Companion 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 this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + import os -from grc.gui import Colors +from gi.repository import Gtk, Gdk -__author__ = "Sebastian Koslowski" -__email__ = "sebastian.koslowski@gmail.com" -__copyright__ = "Copyright 2016, Sebastian Koslowski" +from . import Colors class InputParam(Gtk.HBox): |