2003-07-31 23:52:10 +00:00
|
|
|
/*
|
|
|
|
NSPrintPanel.h
|
|
|
|
|
|
|
|
Standard panel to query users for info on a print job
|
|
|
|
|
2004-07-10 10:19:34 +00:00
|
|
|
Copyright (C) 1996,2004 Free Software Foundation, Inc.
|
2003-07-31 23:52:10 +00:00
|
|
|
|
|
|
|
Author: Scott Christley <scottc@net-community.com>
|
|
|
|
Date: 1996
|
2004-07-10 10:19:34 +00:00
|
|
|
Modified for Printing Backend Support
|
|
|
|
Author: Chad Hardin <cehardin@mac.com>
|
|
|
|
Date: June 2004
|
2003-07-31 23:52:10 +00:00
|
|
|
|
|
|
|
This file is part of the GNUstep GUI Library.
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Library General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library 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
|
|
|
|
Library General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
|
|
License along with this library; see the file COPYING.LIB.
|
|
|
|
If not, write to the Free Software Foundation,
|
2005-05-26 02:52:46 +00:00
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2003-07-31 23:52:10 +00:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _GNUstep_H_NSPrintPanel
|
|
|
|
#define _GNUstep_H_NSPrintPanel
|
|
|
|
|
|
|
|
#include <AppKit/NSPanel.h>
|
|
|
|
|
|
|
|
@class NSView;
|
|
|
|
@class NSPrintInfo;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
NSPPSaveButton = 3,
|
|
|
|
NSPPPreviewButton = 4,
|
|
|
|
NSFaxButton = 5,
|
|
|
|
NSPPTitleField = 20,
|
|
|
|
NSPPImageButton = 21,
|
|
|
|
NSPPNameTitle = 22,
|
|
|
|
NSPPNameField = 23,
|
|
|
|
NSPPNoteTitle = 24,
|
|
|
|
NSPPNoteField = 25,
|
|
|
|
NSPPStatusTitle = 26,
|
|
|
|
NSPPStatusField = 27,
|
|
|
|
NSPPCopiesField = 28,
|
|
|
|
NSPPPageChoiceMatrix = 29,
|
|
|
|
NSPPPageRangeFrom = 30,
|
|
|
|
NSPPPageRangeTo = 31,
|
|
|
|
NSPPScaleField = 32,
|
|
|
|
NSPPOptionsButton = 33,
|
|
|
|
NSPPPaperFeedButton = 34,
|
|
|
|
NSPPLayoutButton = 35,
|
2004-07-10 10:19:34 +00:00
|
|
|
//The following are not actually in the OpenStep spec.
|
|
|
|
//However, It is prudent to keep them here, I am just
|
|
|
|
//making you aware of this fact.
|
|
|
|
NSPPResolutionButton = 36,
|
2003-07-31 23:52:10 +00:00
|
|
|
NSPPOptionOKButton = 40
|
|
|
|
};
|
|
|
|
|
|
|
|
@interface NSPrintPanel : NSPanel
|
|
|
|
{
|
|
|
|
id _panel;
|
|
|
|
id _optionPanel;
|
|
|
|
id _accessoryView;
|
|
|
|
id _savePath;
|
|
|
|
int _picked;
|
2004-07-10 10:19:34 +00:00
|
|
|
NSRange _pages; //this may also be removed
|
2003-07-31 23:52:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Creating an NSPrintPanel
|
|
|
|
//
|
|
|
|
+ (NSPrintPanel *)printPanel;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Customizing the Panel
|
|
|
|
//
|
|
|
|
- (void)setAccessoryView:(NSView *)aView;
|
|
|
|
- (NSView *)accessoryView;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Running the Panel
|
|
|
|
//
|
|
|
|
- (int) runModal;
|
|
|
|
#ifndef STRICT_OPENSTEP
|
|
|
|
- (void) beginSheetWithPrintInfo: (NSPrintInfo *)printInfo
|
2004-07-22 04:59:09 +00:00
|
|
|
modalForWindow: (NSWindow *)docWindow
|
|
|
|
delegate: (id)delegate
|
|
|
|
didEndSelector: (SEL)didEndSelector
|
|
|
|
contextInfo: (void *)contextInfo;
|
2003-07-31 23:52:10 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//
|
|
|
|
// Updating the Panel's Display
|
|
|
|
//
|
|
|
|
- (void)pickedButton:(id)sender;
|
|
|
|
- (void)pickedAllPages:(id)sender;
|
|
|
|
- (void)pickedLayoutList:(id)sender;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Communicating with the NSPrintInfo Object
|
|
|
|
//
|
|
|
|
- (void)updateFromPrintInfo;
|
|
|
|
- (void)finalWritePrintInfo;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2004-07-10 10:19:34 +00:00
|
|
|
//
|
|
|
|
// Methods used by printing backend bundles that subclass NSPrintPanel
|
|
|
|
//
|
|
|
|
@interface NSPrintPanel (Private)
|
|
|
|
|
|
|
|
/* Private method used by NSPrintOperation */
|
|
|
|
- (void) _setStatusStringValue: (NSString *)string;
|
|
|
|
|
|
|
|
/*Private method for saving a print job as a file*/
|
|
|
|
- (BOOL) _getSavePath;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2003-07-31 23:52:10 +00:00
|
|
|
#endif // _GNUstep_H_NSPrintPanel
|