Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/jarabe/journal/thumbsview.py
blob: f2db24833cfd9ce6ff797255627b4af7413a9533 (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
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
# Copyright (C) 2010, Aleksey Lim
#
# 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 2 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, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

import gtk
import gobject
import logging

from jarabe.journal.homogeneview import HomogeneView
from jarabe.journal.homogeneview import Cell
from jarabe.journal.widgets import *


TOOLBAR_WIDTH = 20

THUMB_WIDTH = 240
THUMB_HEIGHT = 180

TEXT_HEIGHT = gtk.EventBox().create_pango_layout('W').get_pixel_size()[1]

CELL_WIDTH = THUMB_WIDTH + TOOLBAR_WIDTH + style.DEFAULT_PADDING + \
             style.DEFAULT_SPACING
CELL_HEIGHT = THUMB_HEIGHT + TEXT_HEIGHT * 3 + style.DEFAULT_PADDING * 3 + \
              style.DEFAULT_SPACING


class _Cell(Cell):

    def __init__(self):
        Cell.__init__(self)

        cell = gtk.HBox()
        self.add(cell)

        # toolbar

        toolbar = gtk.VBox()
        cell.pack_start(toolbar, expand=False)

        self._keep = KeepIcon(
                box_width=style.GRID_CELL_SIZE)
        toolbar.pack_start(self._keep, expand=False)

        self._details = DetailsIcon()
        toolbar.pack_start(self._details, expand=False)

        # thumb

        main = gtk.VBox()
        cell.pack_end(main)

        #thumb = Thumb()
        #main.pack_end(thumb)

        # text

        text = gtk.VBox()
        main.pack_end(text, expand=False)

        self._title = Title(
                max_line_count=2,
                xalign=0, yalign=0, xscale=1, yscale=0)
        text.pack_start(self._title)

        self._date = Timestamp(
                xalign=0.0,
                ellipsize=pango.ELLIPSIZE_END)
        text.pack_end(self._date, expand=False)

        self.show_all()

    def do_fill_in_cell_content(self, table, metadata):
        self._keep.check_out(metadata)
        self._details.check_out(metadata)
        self._title.check_out(metadata)
        self._date.check_out(metadata)


class ThumbsView(HomogeneView):

    def __init__(self):
        HomogeneView.__init__(self, _Cell)

    def do_size_allocate(self, allocation):
        column_count = gtk.gdk.screen_width() / CELL_WIDTH
        row_count = gtk.gdk.screen_height() / CELL_HEIGHT
        self.frame_size = (row_count, column_count)

        HomogeneView.do_size_allocate(self, allocation)