/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/prep-images.in

  • Committer: Tim Marston
  • Date: 2013-07-17 22:56:36 UTC
  • Revision ID: tim@ed.am-20130717225636-on2as6cto9js0cpr
set version to development version

Show diffs side-by-side

added added

removed removed

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