~andrewsomething/exaile/karmic

« back to all changes in this revision

Viewing changes to xlgui/prefs/playlists_prefs.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) 2006 Adam Olsen
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
 
from xlgui.prefs import widgets
18
 
from xl import xdg
19
 
from xl.nls import gettext as _
20
 
from xlgui import commondialogs
21
 
 
22
 
name = _('Playlists')
23
 
glade = xdg.get_data_path('glade/playlists_prefs_pane.glade')
24
 
 
25
 
class OpenLastPreference(widgets.CheckPrefsItem):
26
 
    default = True
27
 
    name = 'playlist/open_last'
28
 
 
29
 
class AskSaveCustomPlaylistPreference(widgets.CheckPrefsItem):
30
 
    default = True
31
 
    name = 'playlist/ask_save'
32
 
 
33
 
#class QueueSavePreferences(widgets.CheckPrefsItem):
34
 
#    default = True
35
 
#    name = 'playlist/save_queue'
36
 
 
37
 
#    def change(self, *e):
38
 
#        commondialogs.error(self.prefs.window, "Doesn't work yet")