pyqso/pyqso/toolbox.py

67 wiersze
2.2 KiB
Python

#!/usr/bin/env python3
# Copyright (C) 2013 Christian T. Jacobs.
# This file is part of PyQSO.
# PyQSO 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 of the License, or
# (at your option) any later version.
#
# PyQSO 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 PyQSO. If not, see <http://www.gnu.org/licenses/>.
from gi.repository import Gtk
import logging
from pyqso.dx_cluster import *
from pyqso.grey_line import *
from pyqso.awards import *
class Toolbox(Gtk.Frame):
""" Contains a Gtk.Notebook full of amateur radio-related tools. """
def __init__(self, parent):
""" Instantiate and insert the various tools into the toolbox. """
logging.debug("Setting up the toolbox...")
Gtk.Frame.__init__(self)
self.set_label("Toolbox")
self.parent = parent
self.tools = Gtk.Notebook()
self.dx_cluster = DXCluster(self.parent)
self.tools.insert_page(self.dx_cluster, Gtk.Label("DX Cluster"), 0)
self.grey_line = GreyLine(self.parent)
self.tools.insert_page(self.grey_line, Gtk.Label("Grey Line"), 1)
self.awards = Awards(self.parent)
self.tools.insert_page(self.awards, Gtk.Label("Awards"), 2)
self.add(self.tools)
self.tools.connect_after("switch-page", self._on_switch_page)
logging.debug("Toolbox ready!")
return
def toggle_visible_callback(self, widget=None):
""" Show/hide the toolbox. """
self.set_visible(not self.get_visible())
return
def _on_switch_page(self, widget, label, new_page):
""" Re-draw the Grey Line if the user switches to the grey line tab. """
if(isinstance(label, GreyLine)):
label.draw() # Note that 'label' is actually a GreyLine object.
return