Blame platform-demos/el/treeview_simple_liststore.py.page

Packit 1470ea
Packit 1470ea
<page xmlns="http://projectmallard.org/1.0/" xmlns:its="http://www.w3.org/2005/11/its" xmlns:xi="http://www.w3.org/2001/XInclude" type="guide" style="task" id="treeview_simple_liststore.py" xml:lang="el">
Packit 1470ea
  <info>
Packit 1470ea
    <title type="text">Απλή προβολή δένδρου (Treeview) με αποθήκη καταλόγων (ListStore) (Python)</title>
Packit 1470ea
    <link type="guide" xref="beginner.py#treeview"/>
Packit 1470ea
    <link type="seealso" xref="model-view-controller.py"/>
Packit 1470ea
    <link type="next" xref="treeview_treestore.py"/>
Packit 1470ea
    <revision version="0.2" date="2012-06-30" status="draft"/>
Packit 1470ea
Packit 1470ea
    <credit type="author copyright">
Packit 1470ea
      <name>Marta Maria Casetti</name>
Packit 1470ea
      <email its:translate="no">mmcasetti@gmail.com</email>
Packit 1470ea
      <years>2012</years>
Packit 1470ea
    </credit>
Packit 1470ea
Packit 1470ea
    <desc>Μια προβολή δένδρου (TreeView) που εμφανίζει μια  αποθήκη δένδρου (TreeStore) (απλό παράδειγμα)</desc>
Packit 1470ea
  
Packit 1470ea
    <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
Packit 1470ea
      <mal:name>Ελληνική μεταφραστική ομάδα GNOME</mal:name>
Packit 1470ea
      <mal:email>team@gnome.gr</mal:email>
Packit 1470ea
      <mal:years>2012-2015</mal:years>
Packit 1470ea
    </mal:credit>
Packit 1470ea
  
Packit 1470ea
    <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
Packit 1470ea
      <mal:name>Δημήτρης Σπίγγος</mal:name>
Packit 1470ea
      <mal:email>dmtrs32@gmail.com</mal:email>
Packit 1470ea
      <mal:years>2012, 2013</mal:years>
Packit 1470ea
    </mal:credit>
Packit 1470ea
  
Packit 1470ea
    <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
Packit 1470ea
      <mal:name>Μαρία Θουκιδίδου</mal:name>
Packit 1470ea
      <mal:email>marablack3@gmail.com</mal:email>
Packit 1470ea
      <mal:years>2014</mal:years>
Packit 1470ea
    </mal:credit>
Packit 1470ea
  
Packit 1470ea
    <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
Packit 1470ea
      <mal:name>Θάνος Τρυφωνίδης</mal:name>
Packit 1470ea
      <mal:email>tomtryf@gmail.com</mal:email>
Packit 1470ea
      <mal:years>2014, 2015</mal:years>
Packit 1470ea
    </mal:credit>
Packit 1470ea
  </info>
Packit 1470ea
Packit 1470ea
  <title>Απλή Treeview με ListStore</title>
Packit 1470ea
  <media type="image" mime="image/png" src="media/treeview_simple_liststore.png"/>
Packit 1470ea
  

Αυτή η TreeView εμφανίζει μια απλή ListStore με το συνδεμένο σήμα επιλογής "αλλαγμένο".

Packit 1470ea
Packit 1470ea
  <links type="section"/>
Packit 1470ea
Packit 1470ea
  <section id="code">
Packit 1470ea
    <title>Ο χρησιμοποιούμενος κώδικας για παραγωγή αυτού παραδείγματος</title>
Packit 1470ea
Packit 1470ea
    from gi.repository import Gtk
Packit 1470ea
from gi.repository import Pango
Packit 1470ea
import sys
Packit 1470ea
Packit 1470ea
columns = ["First Name",
Packit 1470ea
           "Last Name",
Packit 1470ea
           "Phone Number"]
Packit 1470ea
Packit 1470ea
phonebook = [["Jurg", "Billeter", "555-0123"],
Packit 1470ea
             ["Johannes", "Schmid", "555-1234"],
Packit 1470ea
             ["Julita", "Inca", "555-2345"],
Packit 1470ea
             ["Javier", "Jardon", "555-3456"],
Packit 1470ea
             ["Jason", "Clinton", "555-4567"],
Packit 1470ea
             ["Random J.", "Hacker", "555-5678"]]
Packit 1470ea
Packit 1470ea
Packit 1470ea
class MyWindow(Gtk.ApplicationWindow):
Packit 1470ea
Packit 1470ea
    def __init__(self, app):
Packit 1470ea
        Gtk.Window.__init__(self, title="My Phone Book", application=app)
Packit 1470ea
        self.set_default_size(250, 100)
Packit 1470ea
        self.set_border_width(10)
Packit 1470ea
Packit 1470ea
        # the data in the model (three strings for each row, one for each
Packit 1470ea
        # column)
Packit 1470ea
        listmodel = Gtk.ListStore(str, str, str)
Packit 1470ea
        # append the values in the model
Packit 1470ea
        for i in range(len(phonebook)):
Packit 1470ea
            listmodel.append(phonebook[i])
Packit 1470ea
Packit 1470ea
        # a treeview to see the data stored in the model
Packit 1470ea
        view = Gtk.TreeView(model=listmodel)
Packit 1470ea
        # for each column
Packit 1470ea
        for i, column in enumerate(columns):
Packit 1470ea
            # cellrenderer to render the text
Packit 1470ea
            cell = Gtk.CellRendererText()
Packit 1470ea
            # the text in the first column should be in boldface
Packit 1470ea
            if i == 0:
Packit 1470ea
                cell.props.weight_set = True
Packit 1470ea
                cell.props.weight = Pango.Weight.BOLD
Packit 1470ea
            # the column is created
Packit 1470ea
            col = Gtk.TreeViewColumn(column, cell, text=i)
Packit 1470ea
            # and it is appended to the treeview
Packit 1470ea
            view.append_column(col)
Packit 1470ea
Packit 1470ea
        # when a row is selected, it emits a signal
Packit 1470ea
        view.get_selection().connect("changed", self.on_changed)
Packit 1470ea
Packit 1470ea
        # the label we use to show the selection
Packit 1470ea
        self.label = Gtk.Label()
Packit 1470ea
        self.label.set_text("")
Packit 1470ea
Packit 1470ea
        # a grid to attach the widgets
Packit 1470ea
        grid = Gtk.Grid()
Packit 1470ea
        grid.attach(view, 0, 0, 1, 1)
Packit 1470ea
        grid.attach(self.label, 0, 1, 1, 1)
Packit 1470ea
Packit 1470ea
        # attach the grid to the window
Packit 1470ea
        self.add(grid)
Packit 1470ea
Packit 1470ea
    def on_changed(self, selection):
Packit 1470ea
        # get the model and the iterator that points at the data in the model
Packit 1470ea
        (model, iter) = selection.get_selected()
Packit 1470ea
        # set the label to a new value depending on the selection
Packit 1470ea
        self.label.set_text("\n %s %s %s" %
Packit 1470ea
                            (model[iter][0],  model[iter][1], model[iter][2]))
Packit 1470ea
        return True
Packit 1470ea
Packit 1470ea
Packit 1470ea
class MyApplication(Gtk.Application):
Packit 1470ea
Packit 1470ea
    def __init__(self):
Packit 1470ea
        Gtk.Application.__init__(self)
Packit 1470ea
Packit 1470ea
    def do_activate(self):
Packit 1470ea
        win = MyWindow(self)
Packit 1470ea
        win.show_all()
Packit 1470ea
Packit 1470ea
    def do_startup(self):
Packit 1470ea
        Gtk.Application.do_startup(self)
Packit 1470ea
Packit 1470ea
app = MyApplication()
Packit 1470ea
exit_status = app.run(sys.argv)
Packit 1470ea
sys.exit(exit_status)
Packit 1470ea
Packit 1470ea
  </section>
Packit 1470ea
Packit 1470ea
  <section id="methods">
Packit 1470ea
    <title>Χρήσιμες μέθοδοι για ένα γραφικό στοιχείο TreeView</title>
Packit 1470ea
    

Το γραφικό στοιχείο προβολή δένδρου (TreeView) σχεδιάστηκε γύρω από ένα σχέδιο προτύπου/προβολής/ελεγκτή: το πρότυπο αποθηκεύει τα δεδομένα· η Προβολή παίρνει ειδοποιήσεις αλλαγής και εμφανίζει το περιεχόμενο του προτύπου· ο ελεγκτής, τελικά, αλλάζει την κατάσταση του προτύπου και ειδοποιεί την προβολή για αυτές τις αλλαγές. Για περισσότερες πληροφορίες και για μια λίστα χρήσιμων μεθόδων για λίστα πρότυπο δένδρου (TreeModel), δείτε <link xref="model-view-controller.py"/>.

Packit 1470ea
    

Στη γραμμή 44 το σήμα "changed" συνδέεται με τη συνάρτηση επανάκλησης on_changed() χρησιμοποιώντας widget.connect(signal, callback function). Δείτε <link xref="signals-callbacks.py"/> για μια πιο λεπτομερή εξήγηση.

Packit 1470ea
  </section>
Packit 1470ea
Packit 1470ea
  <section id="references">
Packit 1470ea
    <title>Αναφορές API</title>
Packit 1470ea
    

Σε αυτό το παράδειγμα χρησιμοποιήσαμε τα παρακάτω:

Packit 1470ea
    <list>
Packit 1470ea
      <item>

<link href="http://developer.gnome.org/gtk3/unstable/GtkTreeView.html">GtkTreeView</link>

</item>
Packit 1470ea
      <item>

<link href="http://developer.gnome.org/gtk3/unstable/GtkTreeModel.html">GtkTreeModel</link>

</item>
Packit 1470ea
      <item>

<link href="http://developer.gnome.org/gtk3/unstable/GtkListStore.html">GtkListStore</link>

</item>
Packit 1470ea
      <item>

<link href="http://developer.gnome.org/gtk3/unstable/GtkCellRendererText.html">GtkCellRendererText</link>

</item>
Packit 1470ea
      <item>

<link href="http://developer.gnome.org/gtk3/unstable/GtkTreeViewColumn.html">GtkTreeViewColumn</link>

</item>
Packit 1470ea
      <item>

<link href="http://git.gnome.org/browse/pygobject/tree/gi/overrides/Gtk.py">pygobject - δεσμεύσεις Python για αυτοέλεγχο GObject</link>

</item>
Packit 1470ea
      <item>

<link href="http://developer.gnome.org/pango/stable/pango-Fonts.html">Fonts</link>

</item>
Packit 1470ea
    </list>
Packit 1470ea
  </section>
Packit 1470ea
</page>