~ubuntu-branches/debian/experimental/backintime/experimental

« back to all changes in this revision

Viewing changes to gnome/clipboardtools.py

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Wiltshire
  • Date: 2010-12-03 21:56:53 UTC
  • mfrom: (1.2.1 upstream) (3.1.8 sid)
  • Revision ID: james.westby@ubuntu.com-20101203215653-scx9roloq4m0dqns
Tags: 1.0.4-1
* New upstream release
    Closes: #555293
    LP: #409130 #507246 #528518 #534829 #522618
* Update debian/copyright
* The following patches are either integrated or fixed properly
  upstream: no-chmod-777.patch allow-root-backup.patch
* Refactor remaining patches and make the headers DEP-3 compliant
* Convert to source format 3.0 (quilt) and drop quilt dependency and
  logic
* Don't depend on a specific version of Python; let dh_python choose
  the best option
* Remove the "earlier-than" restriction for the Conflicts on
  backintime-kde4
* Standards version 3.9.1 (no changes required)
* Update my email address

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#    Back In Time
 
2
#    Copyright (C) 2008-2009 Oprea Dan, Bart de Koning, Richard Bailey
 
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 along
 
15
#    with this program; if not, write to the Free Software Foundation, Inc.,
 
16
#    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
17
 
 
18
 
 
19
import pygtk
 
20
pygtk.require("2.0")
 
21
import gtk
 
22
import gnomevfs
 
23
 
 
24
 
 
25
def clipboard_set_text( text ):
 
26
        clipboard = gtk.clipboard_get()
 
27
        clipboard.set_text( text )
 
28
        clipboard.store()
 
29
 
 
30
 
 
31
def clipboard_copy_path( path ):
 
32
        targets = gtk.target_list_add_uri_targets()
 
33
        targets = gtk.target_list_add_text_targets( targets)
 
34
        targets.append( ( 'x-special/gnome-copied-files', 0, 0 ) )
 
35
 
 
36
        clipboard = gtk.clipboard_get()
 
37
        clipboard.set_with_data( targets, __clipboard_copy_path_get, __clipboard_copy_path_clear, path )
 
38
        clipboard.store()
 
39
 
 
40
 
 
41
def __clipboard_copy_path_get( clipboard, selectiondata, info, path ):
 
42
        selectiondata.set_text( path )
 
43
        path2 = gnomevfs.escape_path_string(path)
 
44
        selectiondata.set_uris( [ 'file://' + path2 ] )
 
45
        selectiondata.set( 'x-special/gnome-copied-files', 8, 'copy\nfile://' + path2 );
 
46
 
 
47
def __clipboard_copy_path_clear( self, path ):
 
48
        return
 
49