gimp/plug-ins/print/print_gimp.h
Michael Natterer 300aa31cc8 Backported the UI changes of the 3.1.x gimp-print plugin to the stable
2000-04-01  Michael Natterer  <mitch@gimp.org>

	Backported the UI changes of the 3.1.x gimp-print plugin to the
	stable 3.0.x version.
	Put the printer definitions to a separate file and added the 3.1.x
	access functions. This way the new dialog files can be used with
	minimal changes.
	Bumped version number to 3.0.10.

	* po-plug-ins/POTFILES.in
	* plug-ins/print/Makefile.am
	* plug-ins/print/print_gimp.h
	* plug-ins/print/gimp_color_window.c
	* plug-ins/print/gimp_main_window.c: new files containing the
	dialog code.

	* plug-ins/print/print-printers.c: new file containing the printer
	definitions.

	* plug-ins/print/print-util.c: added printer list access functions.

	* plug-ins/print/print.[ch]: removed the dialog stuff and use the
	list access functions.
2000-04-01 18:03:18 +00:00

52 lines
1.4 KiB
C

/*
* "$Id$"
*
* Print plug-in for the GIMP.
*
* Copyright 1997-2000 Michael Sweet (mike@easysw.com),
* Robert Krawitz (rlk@alum.mit.edu). and Steve Miller (smiller@rni.net
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*
* Revision History:
*
* See ChangeLog
*/
#ifndef PRINT_GIMP_HEADER
#define PRINT_GIMP_HEADER
#include <gtk/gtk.h>
#include <libgimp/gimp.h>
#include "print.h"
/*
* All Gimp-specific code is in this file.
*/
#define PLUG_IN_VERSION "3.0.10 - 01 Apr 2000"
#define PLUG_IN_NAME "Print"
/*
* Constants for GUI...
*/
#define PREVIEW_SIZE_VERT 240 /* Assuming max media size of 24" A2 */
#define PREVIEW_SIZE_HORIZ 240 /* Assuming max media size of 24" A2 */
#define MAX_PLIST 100
#endif