/usr/share/pyshared/chirpui/editorset.py is in chirp 0.1.12-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 | #!/usr/bin/python
#
# Copyright 2008 Dan Smith <dsmith@danplanet.com>
#
# This program 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.
#
# This program 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, see <http://www.gnu.org/licenses/>.
import os
import gtk
import gobject
from chirp import chirp_common, directory, csv, xml
from chirpui import memedit, dstaredit, bankedit, common, importdialog
from chirpui import inputdialog, reporting
class EditorSet(gtk.VBox):
__gsignals__ = {
"want-close" : (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, ()),
"status" : (gobject.SIGNAL_RUN_LAST,
gobject.TYPE_NONE,
(gobject.TYPE_STRING,)),
"usermsg": (gobject.SIGNAL_RUN_LAST,
gobject.TYPE_NONE,
(gobject.TYPE_STRING,)),
"editor-selected" : (gobject.SIGNAL_RUN_LAST,
gobject.TYPE_NONE,
(gobject.TYPE_STRING,)),
}
def __init__(self, source, parent_window=None, tempname=None):
gtk.VBox.__init__(self, True, 0)
self.parent_window = parent_window
if isinstance(source, str):
self.filename = source
self.radio = directory.get_radio_by_image(self.filename)
elif isinstance(source, chirp_common.Radio):
self.radio = source
self.filename = tempname or source.VARIANT
else:
raise Exception("Unknown source type")
self.rthread = common.RadioThread(self.radio)
self.rthread.setDaemon(True)
self.rthread.start()
self.rthread.connect("status", lambda e, m: self.emit("status", m))
self.tabs = gtk.Notebook()
self.tabs.connect("switch-page", self.tab_selected)
self.tabs.set_tab_pos(gtk.POS_LEFT)
if isinstance(self.radio, chirp_common.IcomDstarSupport):
self.memedit = memedit.DstarMemoryEditor(self.rthread)
self.dstared = dstaredit.DStarEditor(self.rthread)
else:
print "Starting memedit"
self.memedit = memedit.MemoryEditor(self.rthread)
print "Started"
self.dstared = None
self.memedit.connect("usermsg", lambda e, m: self.emit("usermsg", m))
if self.radio.get_features().has_bank_index:
self.banked = bankedit.BankEditor(self.rthread)
else:
self.banked = None
lab = gtk.Label("Memories")
self.tabs.append_page(self.memedit.root, lab)
self.memedit.root.show()
if self.dstared:
lab = gtk.Label("D-STAR")
self.tabs.append_page(self.dstared.root, lab)
self.dstared.root.show()
self.dstared.connect("changed", self.dstar_changed)
if self.banked:
lab = gtk.Label("Banks")
self.tabs.append_page(self.banked.root, lab)
self.banked.root.show()
self.banked.connect("changed", self.banks_changed)
self.pack_start(self.tabs)
self.tabs.show()
# pylint: disable-msg=E1101
self.memedit.connect("changed", self.editor_changed)
self.label = self.text_label = None
self.make_label()
self.modified = (tempname is not None)
if tempname:
self.filename = tempname
self.update_tab()
def make_label(self):
self.label = gtk.HBox(False, 0)
self.text_label = gtk.Label("")
self.text_label.show()
self.label.pack_start(self.text_label, 1, 1, 1)
button = gtk.Button("X")
button.set_relief(gtk.RELIEF_NONE)
button.connect("clicked", lambda x: self.emit("want-close"))
button.show()
self.label.pack_start(button, 0, 0, 0)
self.label.show()
def update_tab(self):
fn = os.path.basename(self.filename)
if self.modified:
text = "%s*" % fn
else:
text = fn
self.text_label.set_text(self.radio.get_name() + ": " + text)
def save(self, fname=None):
if not fname:
fname = self.filename
if not os.path.exists(self.filename):
return # Probably before the first "Save as"
else:
self.filename = fname
self.rthread.lock()
self.radio.save(fname)
self.rthread.unlock()
self.modified = False
self.update_tab()
def dstar_changed(self, *args):
print "D-STAR editor changed"
self.memedit.set_urcall_list(self.dstared.editor_ucall.get_callsigns())
self.memedit.set_repeater_list(self.dstared.editor_rcall.get_callsigns())
self.memedit.prefill()
self.modified = True
self.update_tab()
def banks_changed(self, *args):
print "Banks changed"
self.memedit.set_bank_list(self.banked.get_bank_list())
self.memedit.prefill()
self.modified = True
self.update_tab()
def editor_changed(self, *args):
if not isinstance(self.radio, chirp_common.LiveRadio):
self.modified = True
self.update_tab()
def get_tab_label(self):
return self.label
def is_modified(self):
return self.modified
def _do_import_locked(self, dlgclass, src_radio, dst_rthread):
# An import/export action needs to be done in the absence of any
# other queued changes. So, we make sure that nothing else is
# staged for the thread and lock it up. Then we use the hidden
# interface to queue our own changes before opening it up to the
# rest of the world.
dst_rthread._qlock_when_idle(5) # Suspend job submission when idle
dialog = dlgclass(src_radio, dst_rthread.radio, self.parent_window)
r = dialog.run()
dialog.hide()
if r != gtk.RESPONSE_OK:
dst_rthread._qunlock()
return
count = dialog.do_import(dst_rthread)
print "Imported %i" % count
if count > 0:
self.editor_changed()
gobject.idle_add(self.memedit.prefill)
dst_rthread._qunlock()
return count
def choose_sub_device(self, radio):
devices = radio.get_sub_devices()
choices = [x.VARIANT for x in devices]
d = inputdialog.ChoiceDialog(choices)
d.label.set_text(("The %s %s " % (radio.VENDOR, radio.MODEL)) +
"has multiple independent sub-devices." +
os.linesep + "Choose one to import from:")
r = d.run()
chosen = d.choice.get_active_text()
d.destroy()
if r == gtk.RESPONSE_CANCEL:
raise Exception("Cancelled")
for d in devices:
if d.VARIANT == chosen:
return d
raise Exception("Internal Error")
def do_import(self, filen):
try:
src_radio = directory.get_radio_by_image(filen)
if src_radio.get_features().has_sub_devices:
src_radio = self.choose_sub_device(src_radio)
except Exception, e:
common.show_error(e)
return
try:
count = self._do_import_locked(importdialog.ImportDialog,
src_radio,
self.rthread)
reporting.report_model_usage(src_radio, "importsrc", True)
except Exception, e:
common.log_exception()
common.show_error("There was an error during import: %s" % e)
def do_export(self, filen):
try:
if filen.lower().endswith(".csv"):
dst_radio = csv.CSVRadio(filen)
elif filen.lower().endswith(".chirp"):
dst_radio = xml.XMLRadio(filen)
else:
raise Exception("Unsupported file type")
except Exception, e:
common.log_exception()
common.show_error(e)
return
dst_rthread = common.RadioThread(dst_radio)
dst_rthread.setDaemon(True)
dst_rthread.start()
try:
count = self._do_import_locked(importdialog.ExportDialog,
self.rthread.radio,
dst_rthread)
except Exception, e:
common.log_exception()
common.show_error("There was an error during export: %s" % e)
return
if count <= 0:
return
# Wait for thread queue to complete
dst_rthread._qlock_when_idle()
try:
dst_radio.save(filename=filen)
except Exception, e:
common.log_exception()
common.show_error("There was an error during export: %s" % e, self)
def prime(self):
mem = chirp_common.Memory()
mem.freq = 146010000
def cb(*args):
gobject.idle_add(self.memedit.prefill)
job = common.RadioJob(cb, "set_memory", mem)
job.set_desc("Priming memory")
self.rthread.submit(job)
def tab_selected(self, notebook, foo, pagenum):
pages = ["memory", "dstar", "banks"]
# Quick hack for D-STAR editor
if pagenum == 1:
self.dstared.focus()
self.emit("editor-selected", pages[pagenum])
def set_read_only(self, read_only=True):
self.memedit.set_read_only(read_only)
def prepare_close(self):
self.memedit.prepare_close()
|