Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/GUI_Components/Compound_Widgets/Reading_View.py
blob: f044982afdf08186d81d8881380753002a3f35ec (plain)
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
# Copyright (C) IBM Corporation 2008 
import pygtk
pygtk.require('2.0')
import gtk
from GUI_Components.Compound_Widgets.Base_Widgets.Readonly_Textbox import Readonly_Textbox
from Processing.IO_Manager import IO_Manager

class Reading_View( gtk.VBox ):
    """ 
    Created by Jonathan Mace
    
    This class wraps a Readonly_Textbox in a scrollable window, and adds
    a combobox.  
    The combobox is populated, externally, with the names of
    articles which can be selected.   
    If an article is selected in the combobox, the readonly_textbox will
    be set to display the newly selected article.
    The articles are loaded using IO_Manager
    """
     
    def __init__(self):
        gtk.VBox.__init__(self)
        
        self.articlemenu = gtk.combo_box_new_text()
        self.articlemenu.connect("changed", self.source_selected, None)
        self.pack_start(self.articlemenu, False, False, 1)
        self.articlemenu.show()
        
        self.articlewindow = gtk.ScrolledWindow()
        self.articlewindow.set_policy(gtk.POLICY_NEVER, gtk.POLICY_AUTOMATIC)
        self.pack_start(self.articlewindow)
        self.articlewindow.show()
        
        self.textbox = Readonly_Textbox()
        self.articlewindow.add(self.textbox)
        self.textbox.show()
        
    def source_selected(self, combo, data):
        title = combo.get_active_text()
        if title == "Select a source article from this menu" or title == None:
            return
        if self.textbox.get_article() == None or self.textbox.get_article().article_title == title:
            return
        if combo.get_active != 0:
            model = combo.get_model()
            firstiter = model.get_iter_first()
            firstvalue = model.get_value(firstiter, 0)
            print firstvalue
            if firstvalue == "Select a source article from this menu":
                combo.remove_text(0)
        
        if self.textbox.get_article() != None:
            theme = "Wikipedia Articles"
            try:
                newarticle = IO_Manager().load_article(title, theme)
                self.textbox.set_article(newarticle)
            except Exception, e:
                pass
        
    def set_sentence_selection_mode(self):
        self.textbox.set_mode(0)
        
    def set_paragraph_selection_mode(self):
        self.textbox.set_mode(1)
        
    def set_section_selection_mode(self):
        self.textbox.set_mode(2)
        
    def set_full_edit_mode(self):
        self.textbox.set_mode(3)

    def clear_contents(self):
        self.textbox.clear()