~andrewsomething/exaile/karmic

« back to all changes in this revision

Viewing changes to plugins/notify/notifyprefs.py

  • Committer: Aren Olson
  • Date: 2009-09-12 00:36:59 UTC
  • Revision ID: reacocard@gmail.com-20090912003659-w373sg0n04uoa8op
remove useless files, add soem of the fixes from lp bug 420019

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2009 Abhishek Mukherjee <abhishek.mukher.g@gmail.com>
2
 
#
3
 
# This program is free software; you can redistribute it and/or modify
4
 
# it under the terms of the GNU General Public License as published by
5
 
# the Free Software Foundation; either version 1, or (at your option)
6
 
# any later version.
7
 
#
8
 
# This program is distributed in the hope that it will be useful,
9
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
# GNU General Public License for more details.
12
 
#
13
 
# You should have received a copy of the GNU General Public License
14
 
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16
 
 
17
 
import os
18
 
from xlgui.prefs import widgets
19
 
from xl import xdg
20
 
from xl.nls import gettext as _
21
 
 
22
 
name = _('Notify')
23
 
basedir = os.path.dirname(os.path.realpath(__file__))
24
 
glade = os.path.join(basedir, "notifyprefs_pane.glade")
25
 
 
26
 
 
27
 
class ResizeCovers(widgets.CheckPrefsItem):
28
 
    default = True
29
 
    name = 'plugin/notify/resize'
30
 
 
31
 
 
32
 
class AttachToTray(widgets.CheckPrefsItem):
33
 
    default = True
34
 
    name = 'plugin/notify/attach_tray'
35
 
 
36
 
 
37
 
class BodyArtistAlbum(widgets.TextViewPrefsItem):
38
 
    default = _("by %(artist)s\nfrom <i>%(album)s</i>")
39
 
    name = 'plugin/notify/body_artistalbum'
40
 
 
41
 
 
42
 
class BodyArtist(widgets.TextViewPrefsItem):
43
 
    default = _("by %(artist)s")
44
 
    name = 'plugin/notify/body_artist'
45
 
 
46
 
 
47
 
class BodyAlbum(widgets.TextViewPrefsItem):
48
 
    default = _("from %(album)s")
49
 
    name = 'plugin/notify/body_album'
50
 
 
51
 
 
52
 
class Summary(widgets.TextViewPrefsItem):
53
 
    default = _("%(title)s")
54
 
    name = 'plugin/notify/summary'
55