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 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875
|
# vim: set fileencoding=iso-8859-1 :
# GNU Solfege - free ear training software
# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Tom Cato Amundsen
#
# 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 sys
import traceback
import os
import time
import urllib
import shutil
# The sets module was added in python 2.3. So we will use that module
# if we are running python 2.3, and the builtin set if we are using
# python 2.4
# FIXME: remove this code when we require python 2.4
try:
set()
except NameError:
import __builtin__
import sets
__builtin__.set = sets.Set
import runtime
import configureoutput
solfege_copyright = u"Copyright 1999-2008 Tom Cato Amundsen <tca@gnu.org>, and others."
warranty = """
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 osutils
import optparse
class MyOptionParser(optparse.OptionParser):
def print_help(self, outfile=None):
if outfile is None:
outfile = sys.stdout
encoding = outfile.encoding
if not encoding:
encoding = "iso-8859-1"
outfile.write(self.format_help().encode(encoding, 'replace'))
opt_parser = MyOptionParser()
opt_parser.add_option('-v', '--version', action='store_true', dest='version')
opt_parser.add_option('-w', '--warranty', action='store_true', dest='warranty',
help=_('Show warranty and copyright.'))
opt_parser.add_option('--no-splash', action='store_false', dest='no_splash',
help=_('Do not show the startup window.'),
default=False)
opt_parser.add_option('--verbose-sound-init', action='store_true',
default=False,
dest='verbose_sound_init',
help=_('Display more info about the sound setup.'))
opt_parser.add_option('--no-sound', action='store_true', dest='no_sound',
default=False,
help=_('Do not play any sounds. Instead some data is printed to standard output. Use this for debugging and porting.'))
opt_parser.add_option('--debug', action='store_true', dest='debug',
help=_('Include features used by the Solfege developers to debug the program.'))
opt_parser.add_option('--disable-exception-handler', action='store_true',
dest='disable_exception_handler',
help=_("Disable the exception handling in Gui.standard_exception_handler."))
opt_parser.add_option('--no-random', action='store_true', dest='no_random',
help=_('For debugging only: Select questions from lesson files in sequential order.'))
opt_parser.add_option('--enable-gtkhtml', action='store_true',
dest='enable_gtkhtml',
help=_('Run using gtkhtml2 instead of the built in HTML viewer.'))
opt_parser.add_option('--no-cairo-widgets', action='store_true',
dest='no_cairo_widgets',
help=_("Do not use the cairo version of input widgets, even if we run gtk+ 2.8.0 or newer."))
opt_parser.add_option('--show-gtk-warnings', action='store_true',
dest='show_gtk_warnings',
help=_('Show GtkWarnings and PangoWarnings in the traceback window.'))
options, args = opt_parser.parse_args()
if options.version:
print """GNU Solfege %s
This is free software. It is covered by the GNU General Public License,
and you are welcome to change it and/or distribute copies of it under
certain conditions. Invoke as `solfege --warranty` for more information.
%s
""" % (configureoutput.VERSION_STRING, solfege_copyright.encode(sys.getfilesystemencoding(), 'replace'))
sys.exit()
if options.warranty:
print "GNU Solfege %s" % configureoutput.VERSION_STRING
print solfege_copyright.encode(sys.getfilesystemencoding(), 'replace')
print warranty
sys.exit()
# silent, GNOME, be silent!
#sys.argv.append('--disable-sound')
runtime.init(options)
import gtk
class SplashWin(gtk.Window):
def __init__(self):
gtk.Window.__init__(self, gtk.WINDOW_POPUP)
self.set_position(gtk.WIN_POS_CENTER)
self.set_resizable(True)
frame = gtk.Frame()
frame.set_shadow_type(gtk.SHADOW_OUT)
self.add(frame)
vbox = gtk.VBox()
vbox.set_border_width(20)
frame.add(vbox)
l = gtk.Label(_("Starting GNU Solfege %s") % configureoutput.VERSION_STRING)
l.set_name("Heading1")
vbox.pack_start(l)
l = gtk.Label("http://www.solfege.org")
vbox.pack_start(l)
self.g_infolabel = gtk.Label('')
vbox.pack_start(self.g_infolabel)
self.show_all()
def show_progress(self, txt):
self.g_infolabel.set_text(txt)
while gtk.events_pending():
gtk.main_iteration(0)
if not options.no_splash:
splash_win = SplashWin()
time.sleep(0.1)
gtk.gdk.flush()
while gtk.events_pending():
gtk.main_iteration(0)
else:
splash_win = None
if splash_win:
splash_win.show_progress("importing application modules")
import tracebackwindow
# redirect error messages to a window that will popup if
# something bad happens.
sys.stderr = tracebackwindow.TracebackWindow(options.show_gtk_warnings)
import app
import utils
from configwindow import ConfigWindow
import mpd
import mpd.musicdisplayer
import gu
import cfg
import stock
import lessonfile
import lessonfilegui
import abstract
import chord
import idproperty
import chordvoicing
import harmonicinterval
import melodicinterval
import singinterval
import nameinterval
import example
import idbyname
import dictation
import twelvetone
import idtone
import compareintervals
import singchord
import rhythm
import identifybpm
import harmonicprogressiondictation
import singanswer
import elembuilder
import rhythmtapping
import rhythmtapping2
import learning_tree_editor
from trainingsetdlg import TrainingSetDialog
from practisesheetdlg import PractiseSheetDialog
from helpbrowser import HelpBrowser, DocViewer
import filesystem
class MusicViewerWindow(gtk.Dialog):
def __init__(self, app):
gtk.Dialog.__init__(self)
self.m_app = app
self.set_default_size(500, 300)
self.g_music_displayer = mpd.musicdisplayer.MusicDisplayer(utils.play_tone)
self.vbox.pack_start(self.g_music_displayer)
b = gu.bButton(self.action_area, _("Close"), self.m_app.close_musicviewer)
b.grab_focus()
self.connect('destroy', self.m_app.close_musicviewer)
self.show_all()
def display_music(self, music):
fontsize = cfg.get_int('config/feta_font_size=20')
self.g_music_displayer.display(music, fontsize)
class MainWin(gtk.Window, cfg.ConfigUtils):
default_learning_tree = ('solfege', 'learningtree.txt')
debug_learning_tree = ('solfege', 'debugtree.txt')
def __init__(self, options, datadir, lessonfile_manager):
gtk.Window.__init__(self, gtk.WINDOW_TOPLEVEL)
self._vbox = gtk.VBox()
self._vbox.show()
self.add(self._vbox)
self.icons = stock.SolfegeIconFactory(self, datadir)
self.set_default_size(400, 400)
pixbuf = self.render_icon('solfege-icon', gtk.ICON_SIZE_DIALOG)
self.set_icon(pixbuf)
cfg.ConfigUtils.__dict__['__init__'](self, 'mainwin')
self.set_resizable(self.get_bool('gui/mainwin_user_resizeable'))
self.add_watch('gui/mainwin_user_resizeable', lambda s: self.set_resizable(self.get_bool('gui/mainwin_user_resizeable')))
self.connect('destroy', self.quit_program)
self.connect('key_press_event', self.on_key_press_event)
self.g_about_window = None
self.g_help_browser = None
self.g_learning_tree_editor = None
self.m_exercise = None
self.m_viewer = None
self.box_dict = {}
self.g_config_window = None
self.g_path_info_dlg = None
self.g_musicviewer_window = None
self.m_app = app.SolfegeApp(options, self, lessonfile_manager)
self.g_ui_manager = gtk.UIManager()
self.m_action_groups = {
'Practise': gtk.ActionGroup('Practise'),
'Exit': gtk.ActionGroup('Exit'),
'NotExit': gtk.ActionGroup('NotExit'),
}
for a in self.m_action_groups.values():
self.g_ui_manager.insert_action_group(a, 1)
self.setup_menu()
self.main_box = gtk.VBox()
self.main_box.show()
self._vbox.pack_start(self.main_box)
self.display_docfile_in_mainwin('welcome.html')
def change_learning_tree(self, tree_fn):
"""
Change to a different learning tree.
"""
self.set_list('app/learningtree', tree_fn)
self.on_learning_tree_changed()
def on_learning_tree_changed(self, *v):
"""
We call this when we have changed the current tree or
switched tree.
"""
self.m_tree = learning_tree_editor.LearningTree(self.m_app.lessonfile_manager)
try:
loc, filename = self.get_list("app/learningtree")
except ValueError:
loc, filename = self.default_learning_tree
if (loc, filename) == ('solfege', 'debugtree.txt') and not self.m_app.m_options.debug:
self.set_list("app/learningtree", ('solfege', 'learningtree.txt'))
loc, filename = self.default_learning_tree
try:
if loc == 'solfege':
self.m_tree.load(filename)
else:
assert loc == 'user'
self.m_tree.load(os.path.join(filesystem.app_data(), 'learningtrees', filename))
except IOError:
if splash_win:
splash_win.hide()
self.m_tree.load(self.default_learning_tree[1])
self.set_list('app/learningtree', self.default_learning_tree)
gu.dialog_ok(_("Learning tree '%s' not found. Using default tree." % filename))
if splash_win:
splash_win.show()
self.create_practise_and_test_menu()
def setup_menu(self):
self.m_action_groups['Exit'].add_actions([
('FileMenu', None, _('_File')),
('AppQuit', 'gtk-quit', None, None, None, self.quit_program),
])
self.m_action_groups['NotExit'].add_actions([
('TheoryMenu', None, _('The_ory')),
('TheoryIntervals', None, _('_Intervals'), None, None,
lambda o: self.m_app.handle_href('theory-intervals.html')),
('EditMenu', None, _("_Edit")),
('TreeEditor', None, _('Edit learning tree'), None, None,
self.do_tree_editor),
('TestsMenu', None, _("_Tests")),
('ExportTrainingSet', None, _('New training set editor window'), None, None,
self.new_training_set_editor),
('EditPractiseSheet', None, _('Ear training test printout editor'), None, None,
self.new_practisesheet_editor),
('OpenPreferencesWindow', 'gtk-preferences', None, '<ctrl>F12', None,
self.open_preferences_window),
('HelpMenu', None, _('_Help')),
('HelpHelp', 'gtk-help', _('_Help on the current exercise'), 'F1', None,
lambda o: self.m_app.please_help_me()),
('HelpTheory', None, _('_Music theory on the current exercise'), 'F3', None, lambda o: self.m_app.show_exercise_theory()),
('HelpIndex', None, _('_User manual'), None, None,
lambda o: self.m_app.handle_href('index.html')),
('HelpAllLessonFiles', None, _('All installed _lesson files'), None,
None, lambda o: self.m_app.handle_href('solfege:all-lessonfiles')),
('HelpShowPathInfo', None, _('File locations'), None,
None, self.show_path_info),
('HelpOnline', None, _('_Mailinglists, web page etc.'), None, None,
lambda o: self.m_app.handle_href('online-resources.html')),
('HelpReportingBugs', None, _('Reporting _bugs'), None, None,
lambda o: self.m_app.handle_href('bug-reporting.html')),
('HelpAbout', 'gtk-about', None, None, None, self.show_about_window),
('ShowBugReports', None, _('See your bug reports'), None, None,
self.show_bug_reports),
])
self.g_ui_manager.add_ui_from_file("ui.xml")
self.add_accel_group(self.g_ui_manager.get_accel_group())
self.g_ui_manager.get_accel_group().connect_group(gtk.keysyms.KP_Equal,
gtk.gdk.CONTROL_MASK, 0,
lambda w, a, b, c: self.box_dict['docviewer'].m_htmlwidget.g_view.zoom_reset())
self.g_ui_manager.get_accel_group().connect_group(gtk.keysyms.KP_Subtract,
gtk.gdk.CONTROL_MASK, 0,
lambda w, a, b, c: self.box_dict['docviewer'].m_htmlwidget.g_view.zoom_out())
self.g_ui_manager.get_accel_group().connect_group(gtk.keysyms.KP_Add,
gtk.gdk.CONTROL_MASK, 0,
lambda w, a, b, c: self.box_dict['docviewer'].m_htmlwidget.g_view.zoom_in())
hdlbox = gtk.HandleBox()
hdlbox.show()
hdlbox.add(self.g_ui_manager.get_widget('/Menubar'))
self._vbox.pack_start(hdlbox, False)
self.m_help_on_current_merge_id = None
def create_learning_trees_menu(self):
if self.m_learning_trees_merge_id:
self.g_ui_manager.remove_ui(self.m_learning_trees_merge_id)
try:
v = os.listdir(os.path.join(filesystem.app_data(), "learningtrees"))
except OSError:
v = []
if not self.m_app.m_options.debug and not v:
return
actions = [('LearningTreesMenu', None, _('Learning tree')),
('DefaultTree', None, _("Default learning tree"),
None, None,
lambda o: self.change_learning_tree(self.default_learning_tree)
)]
if self.m_app.m_options.debug:
actions = [('LearningTreesMenu', None, _('Learning tree')),
('DefaultTree', None, _("Default learning tree"),
None, None,
lambda o: self.change_learning_tree(self.default_learning_tree)
),
('DebuggingTree', None, _("Debugging"),
None, None,
lambda o: self.change_learning_tree(self.debug_learning_tree)
)]
s = """
<menubar name='Menubar'>
<menu action='FileMenu'>
<menu action='LearningTreesMenu' position='top'>
<menuitem action='DefaultTree'/>"""
if self.m_app.m_options.debug:
s += "<menuitem action='DebuggingTree'/>"
for tree_fn in v:
s += "<menuitem action='LTree-%s'/>" % tree_fn
actions.append(('LTree-%s' % tree_fn, None,
tree_fn, None, None,
lambda o, t=tree_fn: self.change_learning_tree(('user', t))))
s += "</menu></menu></menubar>"
self.m_action_groups['NotExit'].add_actions(actions)
self.m_learning_trees_merge_id = self.g_ui_manager.add_ui_from_string(s)
def create_practise_and_test_menu(self):
"""
Create the Practise menu.
This function has to be called after we have cleared out any
lesson_id crashes.
"""
actions = []
if self.m_practise_and_test_merge_id:
self.g_ui_manager.remove_ui(self.m_practise_and_test_merge_id)
self.g_ui_manager.ensure_update()
s = "<menubar name='Menubar'>"
tests = "<menu action='TestsMenu'>"
for menu in self.m_tree.m_menus:
self.m_action_groups['NotExit'].add_action(
gtk.Action(menu.name, _(menu.name), None, None))
s += "<menu action='%s'>" % menu.name
# The following line might look strange here, but it makes sure
# that the menus on the menu bar stay at the correct order after
# we save the learning tree in the learning tree editor.
self.g_ui_manager.add_ui_from_string("<menubar name='Menubar'><menu action='%s'/></menubar>" % menu.name)
for topic in menu.children:
s += "<menu action='%s'>" % topic['name']
tests += "<menu action='TEST_%s'>" % topic['name']
actions.append((topic['name'], None, _(topic['name'])))
actions.append(('TEST_%s' % topic['name'], None, _(topic['name'])))
for lesson_id in topic.children:
if self.m_tree.m_visibilities[lesson_id] > self.m_tree.m_visibility:
continue
menutitle = self.m_app.lessonfile_manager.m_uiddb[lesson_id]['header']['title']
actions.append((
lesson_id, None, menutitle, None, None,
lambda o, e=lesson_id: self.m_app.practise_lesson_id(e)))
if self.m_app.lessonfile_manager.is_test_passed(lesson_id):
menutitle = _("%s (passed)") % menutitle
if self.m_app.lessonfile_manager.get(lesson_id, 'test'):
actions.append((
'TEST_%s' % lesson_id, None,
menutitle,
None, None,
lambda o, e=lesson_id: self.m_app.test_lesson_id(e)))
tests += "<menuitem action='TEST_%s' />" % lesson_id
s += "<menuitem action='%s' />" % lesson_id
s += "</menu>"
tests += "</menu>"
s += "</menu>"
self.m_action_groups['NotExit'].add_actions(actions)
tests += "</menu>"
s += tests
s += "</menubar>"
# The following line might look strange here, but it makes sure
# that the menus on the menu bar stay at the correct order after
# we save the learning tree in the learning tree editor.
self.g_ui_manager.add_ui_from_string("<menubar name='Menubar'><menu action='TestsMenu'/></menubar>")
self.m_practise_and_test_merge_id = self.g_ui_manager.add_ui_from_string(s)
def show_help_on_current(self):
"""
Show the menu entries for the exercise help and music theory
pages on the Help menu.
"""
if self.m_help_on_current_merge_id:
return
self.m_help_on_current_merge_id = self.g_ui_manager.add_ui_from_string("""
<menubar name='Menubar'>
<menu action='HelpMenu'>
<placeholder name='PerExerciseHelp'>
<menuitem position='top' action='HelpHelp' />
<menuitem action='HelpTheory' />
</placeholder>
</menu>
</menubar>""")
def hide_help_on_current(self):
"""
Hide the menu entries for the help and music theory pages on the
Help menu.
"""
if not self.m_help_on_current_merge_id:
return
self.g_ui_manager.remove_ui(self.m_help_on_current_merge_id)
self.m_help_on_current_merge_id = None
def show_bug_reports(self, *v):
m = gtk.Dialog(_("Question"), self, 0)
m.add_button(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL)
m.add_button(gtk.STOCK_OK, gtk.RESPONSE_OK)
vbox = gtk.VBox()
m.vbox.pack_start(vbox, False)
vbox.set_spacing(18)
vbox.set_border_width(12)
l = gtk.Label(_("Please enter the email used when you submitted the bugs:"))
vbox.pack_start(l, False)
self.g_email = gtk.Entry()
m.action_area.get_children()[0].grab_default()
self.g_email.set_activates_default(True)
vbox.pack_start(self.g_email, False)
m.show_all()
ret = m.run()
m.destroy()
if ret == gtk.RESPONSE_OK:
params = urllib.urlencode({
'pagename': 'SITS-Incoming/SearchBugs',
'q': 'SITS-Incoming/"Submitter: %s"' % utils.mangle_email(self.g_email.get_text()),
})
import webbrowser
webbrowser.open_new("http://www.solfege.org?%s" % params)
def display_exception_message(self, exception, lessonfile=None):
"""Call this function only inside an except clause."""
from exceptiondialog import ExceptionDialog
sourcefile, lineno, func, code = traceback.extract_tb(sys.exc_info()[2])[0]
# We can replace characters because we will only display the
# file name, not open the file.
sourcefile = sourcefile.decode(sys.getfilesystemencoding(), 'replace')
m = ExceptionDialog(exception)
if lessonfile:
m.add_text(_("Please check the lesson file %s.") % lessonfile)
if sourcefile:
m.add_text(_('The exception was caught in\n"%(filename)s", line %(lineno)i.') % {'filename': sourcefile, 'lineno': lineno})
if 'm_nonwrapped_text' in dir(exception):
m.add_nonwrapped_text(exception.m_nonwrapped_text)
m.run()
m.destroy()
def display_error_message2(self, text, secondary_text):
"""
This is the new version of display_error_message, and it will
eventually replace the old.
"""
if splash_win and splash_win.props.visible:
splash_win.hide()
reshow_splash = True
else:
reshow_splash = False
if not isinstance(text, unicode):
text = text.decode(locale.getpreferredencoding(), 'replace')
if not isinstance(secondary_text, unicode):
secondary_text = secondary_text.decode(locale.getpreferredencoding(), 'replace')
m = gtk.MessageDialog(None, gtk.DIALOG_MODAL, gtk.MESSAGE_ERROR,
gtk.BUTTONS_CLOSE, text)
if secondary_text:
m.format_secondary_text(secondary_text)
m.run()
m.destroy()
if reshow_splash:
splash_win.show()
while gtk.events_pending():
gtk.main_iteration(0)
def display_error_message(self, msg, title=None, secondary_text=None):
if splash_win and splash_win.props.visible:
splash_win.hide()
reshow_splash = True
else:
reshow_splash = False
if not isinstance(msg, unicode):
msg = msg.decode(locale.getpreferredencoding(), 'replace')
m = gtk.MessageDialog(None, gtk.DIALOG_MODAL, gtk.MESSAGE_ERROR,
gtk.BUTTONS_CLOSE, None)
m.set_markup(gu.escape(msg))
if title:
m.set_title(title)
if secondary_text:
m.format_secondary_text(secondary_text)
m.run()
m.destroy()
if reshow_splash:
splash_win.show()
while gtk.events_pending():
gtk.main_iteration(0)
def show_path_info(self, w):
if not self.g_path_info_dlg:
self.g_path_info_dlg = gtk.Dialog(_("File locations"), self,
buttons=(gtk.STOCK_OK, gtk.RESPONSE_ACCEPT))
vbox = gu.hig_dlg_vbox()
self.g_path_info_dlg.vbox.pack_start(vbox)
box1, box2 = gu.hig_category_vbox(_("File locations"))
vbox.pack_start(box1)
sizegroup = gtk.SizeGroup(gtk.SIZE_GROUP_HORIZONTAL)
box2.pack_start(gu.hig_label_widget(_("Solfege config file:"), gtk.Label(filesystem.rcfile()), sizegroup))
box2.pack_start(gu.hig_label_widget(_("Solfege standard lesson files:"), gtk.Label(os.path.join(os.getcwdu(), "lesson-files")), sizegroup))
box2.pack_start(gu.hig_label_widget(_("The users private lesson files:"), gtk.Label(filesystem.user_lessonfiles()), sizegroup))
box2.pack_start(gu.hig_label_widget(_("The users private learning trees:"), gtk.Label(os.path.join(filesystem.user_data(), "learningtrees")), sizegroup))
box2.pack_start(gu.hig_label_widget(_("User manual in HTML format:"), gtk.Label(os.path.join(os.getcwdu(), "help")), sizegroup))
self.g_path_info_dlg.show_all()
def f(*w):
self.g_path_info_dlg.hide()
return True
self.g_path_info_dlg.connect('response', f)
self.g_path_info_dlg.connect('delete-event', f)
else:
self.g_path_info_dlg.show()
def show_about_window(self, widget):
trans = _("SOLFEGETRANSLATORS")
if trans == 'SOLFEGETRANSLATORS':
trans = ""
pixbuf = self.render_icon('solfege-icon', gtk.ICON_SIZE_DIALOG)
a = self.g_about_window = gtk.AboutDialog()
a.set_logo(pixbuf)
a.set_name("GNU Solfege")
a.set_website("http://www.solfege.org")
a.set_version(configureoutput.VERSION_STRING)
a.set_copyright("\n".join((solfege_copyright, warranty)))
a.set_authors(["Tom Cato Amundsen",
'Oliver Vollmer %s' % _("(toolbar icons)"),
'Giovanni Chierico %s' % _("(some lessonfiles)"),
'Michael Becker %s' % _("(some lessonfiles)"),
'Joe Lee %s' % _("(sound code for the MS Windows port)"),
'Steve Lee %s' % _("(ported winmidi.c to gcc)"),
'Thibaus Cousin %s' % _("(spec file for SuSE 8.2)"),
'David Coe %s' %_("(spec file cleanup)"),
'David Petrou %s' % _("(testing and portability fixes for FreeBSD)"),
'Han-Wen Nienhuys %s' % _("(the music font from Lilypond)"),
'Jan Nieuwenhuizen %s' % _("(the music font from Lilypond)"),
'Davide Bonetti %s' % _("(scale exercises)"),
])
a.set_documenters(["Tom Cato Amundsen",
"Tom Eykens",
])
a.set_translator_credits(_("SOLFEGETRANSLATORS"))
self.g_about_window.run()
self.g_about_window.destroy()
def do_tree_editor(self, *v):
# Raise it if it already exist.
if self.g_learning_tree_editor:
self.g_learning_tree_editor.present()
return
# And if it don't exist, then we have to create it.
self.g_learning_tree_editor = win = learning_tree_editor.Window(self.m_app)
try:
loc, filename = self.get_list("app/learningtree")
except ValueError:
loc, filename = self.default_learning_tree
win.load_file(loc, filename)
win.show()
def post_constructor(self):
global splash_win
self.m_practise_and_test_merge_id = None
self.m_learning_trees_merge_id = None
self.on_learning_tree_changed()
self.create_learning_trees_menu()
self.g_ui_manager.add_ui_from_file("help-menu.xml")
self.box_dict['docviewer'].grab_focus()
if self.m_app.m_sound_init_exception is not None:
if splash_win:
splash_win.destroy()
splash_win = None
self.m_app.display_sound_init_error_message(self.m_app.m_sound_init_exception)
# MIGRATION 3.9.0
if sys.platform == "win32" \
and os.path.exists(os.path.join(filesystem.get_home_dir(), "lessonfiles")) \
and not os.path.exists(filesystem.user_lessonfiles()):
if splash_win:
splash_win.hide()
do_move = gu.dialog_yesno(_('In Solfege 3.9.0, the location where Solfege look for lesson files you have created was changed. The files has to be moved from "%(old)s" and into the folder "%(gnu)s" in your "%(doc)s" folder.\nMay I move the files automatically for you now?' % {
'doc': os.path.split(os.path.split(filesystem.user_data())[0])[1],
'gnu': os.path.join(filesystem.appname, 'lessonfiles'),
'old': os.path.join(filesystem.get_home_dir(), "lessonfiles"),
}), parent=self)
if do_move:
try:
os.makedirs(filesystem.user_data())
shutil.copytree(os.path.join(filesystem.get_home_dir(), "lessonfiles"),
os.path.join(filesystem.user_data(), "lessonfiles"))
except (OSError, shutil.Error), e:
gu.dialog_ok(_("Error while copying directory:\n%s" % e))
else:
gu.dialog_ok(_("Files copied. The old files has been left behind. Please delete them when you have verified that all files was copied correctly."))
if splash_win:
splash_win.show()
# MIGRATION 3.9.3 when we added langenviron.bat
if sys.platform == 'win32' and self.m_app.win32_get_langenviron() != self.get_string('app/lc_messages'):
gu.dialog_ok(_("Migrated old language setup. You might have to restart the program all translated messages to show up."))
self.m_app.win32_put_langenviron(self.get_string('app/lc_messages'))
if self.m_app.lessonfile_manager.m_discards:
if splash_win:
splash_win.hide()
self.display_discarded_lessonfiles_info()
if splash_win:
splash_win.show()
def display_discarded_lessonfiles_info(self):
assert self.m_app.lessonfile_manager.m_discards
dlg = gtk.Dialog(_("Discarded lesson files"), buttons=(gtk.STOCK_OK, gtk.RESPONSE_ACCEPT))
dlg.set_default_response(gtk.RESPONSE_ACCEPT)
cbox = gtk.VBox()
dlg.vbox.pack_start(cbox)
cbox.set_border_width(12)
dlg.set_default_size(400, 300)
l = gtk.Label(_("The lesson files listed below was discarded by the program, and will not be available in the program until the errors are corrected."))
l.set_line_wrap(True)
cbox.pack_start(l, False)
sc = gtk.ScrolledWindow()
sc.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
vbox = gtk.VBox()
sc.add_with_viewport(vbox)
cbox.pack_start(sc)
for idx, info in enumerate(self.m_app.lessonfile_manager.m_discards):
sizegroup = gtk.SizeGroup(gtk.SIZE_GROUP_HORIZONTAL)
ibox = gtk.VBox()
row1 = gtk.HBox()
row1.set_spacing(8)
ibox.pack_start(row1, False)
l = gtk.Label(_("Filename:"))
l.set_alignment(1.0, 0.5)
sizegroup.add_widget(l)
row1.pack_start(gtk.Label(_("Filename:")), False)
row1.pack_start(gtk.Label(info['filename']), False)
row2 = gtk.HBox()
row2.set_spacing(8)
ibox.pack_start(row2, False)
l = gtk.Label(_("Reason:"))
l.set_alignment(1.0, 0.5)
sizegroup.add_widget(l)
row2.pack_start(l, False)
if 'exception' in info:
estr = str(info['exception']).decode(sys.getfilesystemencoding(), 'replace')
row2.pack_start(gtk.Label(estr), False)
elif 'reason' in info:
if info['reason'] == 'no module':
msg = _("Missing module declaration")
else:
msg = _("Unknown")
row2.pack_start(gtk.Label(msg), False)
vbox.pack_start(ibox, False)
if idx < len(self.m_app.lessonfile_manager.m_discards) - 1:
vbox.pack_start(gtk.HSeparator(), False)
dlg.show_all()
dlg.run()
dlg.destroy()
def activate_exercise(self, module, urlobj=None):
if self.m_viewer:
self.box_dict[self.m_viewer].hide()
self.m_viewer = module
self.box_dict[module].show()
# We need this test because not all exercises use a notebook.
if self.box_dict[self.m_viewer].g_notebook:
if urlobj and urlobj.action in ['practise', 'config', 'statistics']:
self.box_dict[self.m_viewer].g_notebook.set_current_page(
['practise', 'config', 'statistics'].index(urlobj.action))
else:
self.box_dict[self.m_viewer].g_notebook.set_current_page(0)
if self.box_dict[module].m_t.m_P:
if isinstance(self.box_dict[module].m_t, abstract.Teacher):
self.set_title("Solfege - " + self.box_dict[module].m_t.m_P.header.title)
else:
self.set_title("Solfege - " + self.box_dict[module].m_t.exercise_data['name'].replace("_", ""))
else:
self.set_title("Solfege")
def _show_docviewer(self):
if 'docviewer' not in self.box_dict:
self.box_dict['docviewer'] = DocViewer(self.m_app.handle_href)
self.main_box.pack_start(self.box_dict['docviewer'])
if self.m_viewer and (self.m_viewer != 'docviewer'):
self.box_dict[self.m_viewer].hide()
self.m_viewer = 'docviewer'
self.box_dict['docviewer'].show()
def display_docfile(self, fn, anchor):
"""
Display the HTML file named by fn in the help browser window.
"""
if not self.g_help_browser:
self.g_help_browser = HelpBrowser(self.m_app)
self.g_help_browser.show()
self.g_help_browser.present()
self.g_help_browser.show_docfile(fn, anchor)
def display_docfile_in_mainwin(self, fn, anchor=None):
self._show_docviewer()
self.box_dict['docviewer'].read_docfile(fn, anchor)
self.set_title("Solfege - %s" % fn)
def display_html(self, html):#FIXME do in helpbrowser
self._show_docviewer()
self.box_dict['docviewer'].source(html)
def initialise_exercise(self, teacher):
"""
Create a Gui object for the exercise and add it to
the box_dict dict.
"""
assert teacher.m_exname not in self.box_dict
n = utils.exercise_name_to_module_name(teacher.m_exname)
self.box_dict[teacher.m_exname] = globals()[n].Gui(teacher, self)
self.main_box.pack_start(self.box_dict[teacher.m_exname])
if self.m_viewer:
self.box_dict[self.m_viewer].hide()
self.box_dict[n].show()
self.m_viewer = n
def on_key_press_event(self, widget, event):
self.box_dict[self.m_viewer].on_key_press_event(widget, event)
def open_preferences_window(self, widget=None):
if not self.g_config_window:
self.g_config_window = ConfigWindow(self.m_app)
self.g_config_window.show()
else:
self.g_config_window.show()
def quit_program(self, w=None):
if self.g_learning_tree_editor:
self.g_learning_tree_editor.close_window()
self.m_app.quit_program()
gtk.main_quit()
def display_in_musicviewer(self, music):
if not self.g_musicviewer_window:
self.g_musicviewer_window = MusicViewerWindow(self)
self.g_musicviewer_window.show()
self.g_musicviewer_window.display_music(music)
def close_musicviewer(self, widget=None):
self.g_musicviewer_window.destroy()
self.g_musicviewer_window = None
def enter_test_mode(self):
if 'enter_test_mode' not in dir(self.box_dict[self.m_viewer]):
gu.dialog_ok(_("The '%s' exercise module does not support test yet." % self.m_viewer))
return
self.m_action_groups['NotExit'].set_sensitive(False)
self.g = self.box_dict[self.m_viewer].g_notebook.get_nth_page(0)
self.box_dict[self.m_viewer].g_notebook.get_nth_page(0).reparent(self.main_box)
self.box_dict[self.m_viewer].g_notebook.hide()
self.box_dict[self.m_viewer].enter_test_mode()
def exit_test_mode(self):
self.m_app.m_test_mode = False
self.m_action_groups['NotExit'].set_sensitive(True)
box = gtk.VBox()
self.box_dict[self.m_viewer].g_notebook.insert_page(box, gtk.Label(_("Practise")), 0)
self.g.reparent(box)
self.box_dict[self.m_viewer].g_notebook.show()
self.box_dict[self.m_viewer].g_notebook.get_nth_page(0).show()
self.box_dict[self.m_viewer].g_notebook.set_current_page(0)
self.box_dict[self.m_viewer].exit_test_mode()
# rebuild the menus in case we hav passed a test.
self.create_practise_and_test_menu()
def new_training_set_editor(self, widget):
dlg = TrainingSetDialog(self.m_app)
dlg.show_all()
def new_practisesheet_editor(self, widget):
dlg = PractiseSheetDialog(self.m_app)
dlg.show_all()
import locale
locale.setlocale(locale.LC_NUMERIC, "C")
# check_rcfile has to be called before and
# functions that use the cfg module.
app.check_rcfile()
cfg.set_bool('config/no_random', bool(options.no_random))
if splash_win:
splash_win.show_progress("creating LessonfileManager")
lessonfile_manager = lessonfile.LessonFileManager(options.debug)
if splash_win:
splash_win.hide()
lessonfilegui.handle_lesson_id_crash(lessonfile_manager)
if splash_win:
splash_win.show()
lessonfile_manager.create_lessonfile_index()
if splash_win:
splash_win.show_progress("creating MainWin")
def start_app(datadir):
global splash_win
w = MainWin(options, datadir, lessonfile_manager)
w.show()
w.post_constructor()
if splash_win:
splash_win.destroy()
splash_win = None
def ef(t, value, traceback):
if options.debug:
msg = "ehooked:" + str(value)
else:
msg = str(value)
if issubclass(t, lessonfile.LessonfileException):
w.display_error_message(msg, str(t))
elif issubclass(t, osutils.ExecutableDoesNotExist):
if len(value.args) > 1:
w.display_error_message2(value.args[0], "\n".join(value.args[1:]))
else:
w.display_error_message(msg, str(t))
else:
sys.__excepthook__(t, msg, traceback)
if not options.disable_exception_handler:
sys.excepthook = ef
gtk.main()
|