/gtk/prep-images

To get this branch, use:
bzr branch http://bzr.ed.am/gtk/prep-images

« back to all changes in this revision

Viewing changes to src/scripts/add-copyright-to-images.in

  • Committer: edam
  • Date: 2011-02-23 19:43:45 UTC
  • Revision ID: edam@waxworlds.org-20110223194345-f7ichg83dzo6m87x
- initial commit, includes project and build setup

Show diffs side-by-side

added added

removed removed

1
1
#!/usr/bin/env python
2
2
 
3
 
# prep-images
 
3
# add-copyrights-to-images
4
4
#
5
5
# Copyright (C) 2011 Tim Marston <edam@waxworlds.org>
6
6
#
7
 
# This file is part of prep-images (hereafter referred to as "this program").
8
 
# See http://www.waxworlds.org/edam/software/gtk/prep-images for more
 
7
# This file is part of add-copyright-to-images (hereafter referred to as "this
 
8
# program").
 
9
# See http://www.waxworlds.org/edam/software/add-copyright-to-images for more
9
10
# information.
10
11
#
11
12
# This program is free software: you can redistribute it and/or modify
12
 
# it under the terms of the GNU General Public License as published by
13
 
# the Free Software Foundation, either version 3 of the License, or
 
13
# it under the terms of the GNU Lesser General Public License as published
 
14
# by the Free Software Foundation, either version 3 of the License, or
14
15
# (at your option) any later version.
15
16
#
16
17
# This program is distributed in the hope that it will be useful,
17
18
# but WITHOUT ANY WARRANTY; without even the implied warranty of
18
19
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19
 
# GNU General Public License for more details.
 
20
# GNU Lesser General Public License for more details.
20
21
#
21
 
# You should have received a copy of the GNU General Public License
 
22
# You should have received a copy of the GNU Lesser General Public License
22
23
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
23
24
 
24
25
 
29
30
from os.path import join, abspath, exists
30
31
 
31
32
# check for a development source directory and use that if it's there
32
 
PACKAGE_DIR = join( abspath( sys.path[ 0 ] ), "..", "lib" )
33
 
if exists( join( PACKAGE_DIR, "prep_images", "prefs_dialog.py" ) ):
34
 
        print "!!! using development packages !!!"
35
 
        sys.path.insert( 0, PACKAGE_DIR )
 
33
PACKAGE_DIR = join( abspath( sys.path[ 0 ] ), ".." )
 
34
if exists( join( PACKAGE_DIR, "add_copyright_to_images", "prefs_dialog.py" ) ):
 
35
    print "!!! using development packages !!!"
 
36
    sys.path.insert( 0, PACKAGE_DIR )
36
37
else:
37
 
        del PACKAGE_DIR
 
38
    del PACKAGE_DIR
38
39
 
39
40
import pygtk
40
41
pygtk.require( '2.0' );
41
42
import gtk
42
 
from prep_images.main_window import *
 
43
from add_copyright_to_images.main_window import *
43
44
 
44
45
# no arguments?
45
46
if( len( sys.argv[ 1: ] ) == 0 ):
46
 
        dialog = gtk.MessageDialog( None, gtk.DIALOG_MODAL, gtk.MESSAGE_INFO, \
47
 
                gtk.BUTTONS_CLOSE, "No images specified" )
48
 
        dialog.format_secondary_text( "You must select some files first!" )
49
 
        dialog.run()
50
 
        dialog.destroy()
51
 
        exit( 1 )
 
47
    dialog = gtk.MessageDialog( None, gtk.DIALOG_MODAL, gtk.MESSAGE_INFO, \
 
48
        gtk.BUTTONS_CLOSE, "No images specified" )
 
49
    dialog.format_secondary_text( "You must select some files first!" )
 
50
    dialog.run()
 
51
    dialog.destroy()
 
52
    exit( 1 )
52
53
 
53
54
# process each image in turn
54
55
for filename in sys.argv[ 1: ]:
55
 
        MainWindow( filename ).main()
 
56
    MainWindow( filename ).main()