~ubuntu-branches/ubuntu/natty/miro/natty

« back to all changes in this revision

Viewing changes to portable/frontends/widgets/separator.py

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2011-01-22 02:46:33 UTC
  • mfrom: (1.4.10 upstream) (1.7.5 experimental)
  • Revision ID: james.westby@ubuntu.com-20110122024633-kjme8u93y2il5nmf
Tags: 3.5.1-1ubuntu1
* Merge from debian.  Remaining ubuntu changes:
  - Use python 2.7 instead of python 2.6
  - Relax dependency on python-dbus to >= 0.83.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Miro - an RSS based video player application
2
 
# Copyright (C) 2005-2010 Participatory Culture Foundation
3
 
#
4
 
# This program is free software; you can redistribute it and/or modify
5
 
# it under the terms of the GNU General Public License as published by
6
 
# the Free Software Foundation; either version 2 of the License, or
7
 
# (at your option) any later version.
8
 
#
9
 
# This program is distributed in the hope that it will be useful,
10
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
# GNU General Public License for more details.
13
 
#
14
 
# You should have received a copy of the GNU General Public License
15
 
# along with this program; if not, write to the Free Software
16
 
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17
 
#
18
 
# In addition, as a special exception, the copyright holders give
19
 
# permission to link the code of portions of this program with the OpenSSL
20
 
# library.
21
 
#
22
 
# You must obey the GNU General Public License in all respects for all of
23
 
# the code used other than OpenSSL. If you modify file(s) with this
24
 
# exception, you may extend this exception to your version of the file(s),
25
 
# but you are not obligated to do so. If you do not wish to do so, delete
26
 
# this exception statement from your version. If you delete this exception
27
 
# statement from all source files in the program, then also delete it here.
28
 
 
29
 
from miro.plat.frontends.widgets.widgetset import DrawingArea
30
 
 
31
 
class Separator(DrawingArea):
32
 
    def __init__(self, color1=None, color2=None):
33
 
        DrawingArea.__init__(self)
34
 
        self.set_color1(color1)
35
 
        self.set_color2(color2)
36
 
    
37
 
    def set_color1(self, color):
38
 
        if color is None:
39
 
            self.color1 = (0.85, 0.85, 0.85)
40
 
        else:
41
 
            self.color1 = color
42
 
 
43
 
    def set_color2(self, color):
44
 
        if color is None:
45
 
            self.color2 = (0.95, 0.95, 0.95)
46
 
        else:
47
 
            self.color2 = color
48
 
        
49
 
class HSeparator(Separator):
50
 
    def draw(self, context, layout_manager):
51
 
        context.set_line_width(1)
52
 
        context.set_color(self.color1)
53
 
        context.move_to(0, 0.5)
54
 
        context.line_to(context.width, 0.5)
55
 
        context.stroke()
56
 
        context.set_color(self.color2)
57
 
        context.move_to(0, 1.5)
58
 
        context.line_to(context.width, 1.5)
59
 
        context.stroke()
60
 
 
61
 
    def size_request(self, layout):
62
 
        return (0, 2)
63
 
        
64
 
class VSeparator(Separator):
65
 
    def draw(self, context, layout_manager):
66
 
        context.set_line_width(1)
67
 
        context.set_color(self.color1)
68
 
        context.move_to(0.5, 0)
69
 
        context.line_to(0.5, context.height)
70
 
        context.stroke()
71
 
        context.set_color(self.color2)
72
 
        context.move_to(1.5, 0)
73
 
        context.line_to(1.5, context.height)
74
 
        context.stroke()
75
 
 
76
 
    def size_request(self, layout):
77
 
        return (2, 0)
78
 
 
79
 
class ThinSeparator(DrawingArea):
80
 
    def __init__(self, color):
81
 
        DrawingArea.__init__(self)
82
 
        self.color = color
83
 
 
84
 
class HThinSeparator(ThinSeparator):
85
 
    def draw(self, context, layout_manager):
86
 
        context.set_color(self.color)
87
 
        context.move_to(0, 0)
88
 
        context.line_to(context.width, 0)
89
 
        context.stroke()
90
 
 
91
 
    def size_request(self, layout):
92
 
        return (0, 1)
93
 
 
94
 
class VThinSeparator(ThinSeparator):
95
 
    def draw(self, context, layout_manager):
96
 
        context.set_color(self.color)
97
 
        context.move_to(0, 0)
98
 
        context.line_to(0, context.height)
99
 
        context.stroke()
100
 
 
101
 
    def size_request(self, layout):
102
 
        return (1, 0)