~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/gfx/src/beos/nsDeviceContextSpecB.h

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 
2
/* ***** BEGIN LICENSE BLOCK *****
 
3
 * Version: NPL 1.1/GPL 2.0/LGPL 2.1
 
4
 *
 
5
 * The contents of this file are subject to the Netscape Public License
 
6
 * Version 1.1 (the "License"); you may not use this file except in
 
7
 * compliance with the License. You may obtain a copy of the License at
 
8
 * http://www.mozilla.org/NPL/
 
9
 *
 
10
 * Software distributed under the License is distributed on an "AS IS" basis,
 
11
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
12
 * for the specific language governing rights and limitations under the
 
13
 * License.
 
14
 *
 
15
 * The Original Code is mozilla.org code.
 
16
 *
 
17
 * The Initial Developer of the Original Code is 
 
18
 * Netscape Communications Corporation.
 
19
 * Portions created by the Initial Developer are Copyright (C) 1998
 
20
 * the Initial Developer. All Rights Reserved.
 
21
 *
 
22
 * Contributor(s):
 
23
 *   Roland Mainz <roland.mainz@informatik.med.uni-giessen.de> 
 
24
 *
 
25
 *
 
26
 * Alternatively, the contents of this file may be used under the terms of
 
27
 * either the GNU General Public License Version 2 or later (the "GPL"), or
 
28
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
29
 * in which case the provisions of the GPL or the LGPL are applicable instead
 
30
 * of those above. If you wish to allow use of your version of this file only
 
31
 * under the terms of either the GPL or the LGPL, and not to allow others to
 
32
 * use your version of this file under the terms of the NPL, indicate your
 
33
 * decision by deleting the provisions above and replace them with the notice
 
34
 * and other provisions required by the GPL or the LGPL. If you do not delete
 
35
 * the provisions above, a recipient may use your version of this file under
 
36
 * the terms of any one of the NPL, the GPL or the LGPL.
 
37
 *
 
38
 * ***** END LICENSE BLOCK ***** */
 
39
 
 
40
#ifndef nsDeviceContextSpecB_h___
 
41
#define nsDeviceContextSpecB_h___
 
42
 
 
43
#include "nsCOMPtr.h"
 
44
#include "nsIDeviceContextSpec.h"
 
45
#include "nsDeviceContextSpecB.h" 
 
46
#include "nsVoidArray.h"
 
47
#ifdef USE_POSTSCRIPT
 
48
#include "nsIDeviceContextSpecPS.h"
 
49
#endif /* USE_POSTSCRIPT */
 
50
#include "nsIPrintSettings.h" 
 
51
#include "nsIPrintOptions.h" 
 
52
 
 
53
#include "nsPrintdBeOS.h" 
 
54
 
 
55
class nsDeviceContextSpecBeOS : public nsIDeviceContextSpec
 
56
#ifdef USE_POSTSCRIPT
 
57
                              , public nsIDeviceContextSpecPS 
 
58
#endif
 
59
{
 
60
public:
 
61
/**
 
62
 * Construct a nsDeviceContextSpecMac, which is an object which contains and manages a mac printrecord
 
63
 * @update  dc 12/02/98
 
64
 */
 
65
  nsDeviceContextSpecBeOS();
 
66
 
 
67
  NS_DECL_ISUPPORTS
 
68
 
 
69
/**
 
70
 * Initialize the nsDeviceContextSpecBeOS for use.  This will allocate a printrecord for use
 
71
 * @update   dc 2/16/98
 
72
 * @param aIsPrintPreview if PR_TRUE, creating Spec for PrintPreview
 
73
 * @return error status
 
74
 */
 
75
  NS_IMETHOD Init(nsIPrintSettings* aPS);
 
76
  
 
77
  
 
78
/**
 
79
 * Closes the printmanager if it is open.
 
80
 * @update   dc 2/13/98
 
81
 * @return error status
 
82
 */
 
83
  NS_IMETHOD ClosePrintManager();
 
84
  
 
85
  NS_IMETHOD GetPageSizeInTwips(PRInt32 *aWidth, PRInt32 *aHeight);
 
86
 
 
87
  NS_IMETHOD GetToPrinter( PRBool &aToPrinter ); 
 
88
 
 
89
  NS_IMETHOD GetPrinterName ( const char **aPrinter );
 
90
 
 
91
  NS_IMETHOD GetCopies ( int &aCopies ); 
 
92
 
 
93
  NS_IMETHOD GetFirstPageFirst ( PRBool &aFpf );     
 
94
 
 
95
  NS_IMETHOD GetGrayscale( PRBool &aGrayscale );   
 
96
 
 
97
  NS_IMETHOD GetSize ( int &aSize ); 
 
98
 
 
99
  NS_IMETHOD GetTopMargin ( float &value ); 
 
100
 
 
101
  NS_IMETHOD GetBottomMargin ( float &value ); 
 
102
 
 
103
  NS_IMETHOD GetLeftMargin ( float &value ); 
 
104
 
 
105
  NS_IMETHOD GetRightMargin ( float &value ); 
 
106
 
 
107
  NS_IMETHOD GetCommand ( const char **aCommand );   
 
108
 
 
109
  NS_IMETHOD GetPath ( const char **aPath );    
 
110
 
 
111
  NS_IMETHOD GetPageDimensions (float &aWidth, float &aHeight ); 
 
112
 
 
113
  NS_IMETHOD GetLandscape (PRBool &aLandscape);
 
114
 
 
115
  NS_IMETHOD GetUserCancelled( PRBool &aCancel );      
 
116
 
 
117
/**
 
118
 * Destuct a nsDeviceContextSpecMac, this will release the printrecord
 
119
 * @update  dc 2/16/98
 
120
 */
 
121
protected:
 
122
  virtual ~nsDeviceContextSpecBeOS();
 
123
 
 
124
public:
 
125
  int InitializeGlobalPrinters();
 
126
  void FreeGlobalPrinters();
 
127
 
 
128
protected:
 
129
  BeOSPrData mPrData;
 
130
  nsCOMPtr<nsIPrintSettings> mPrintSettings;    
 
131
};
 
132
 
 
133
//-------------------------------------------------------------------------
 
134
// Printer Enumerator
 
135
//-------------------------------------------------------------------------
 
136
class nsPrinterEnumeratorBeOS : public nsIPrinterEnumerator
 
137
{
 
138
public:
 
139
  nsPrinterEnumeratorBeOS();
 
140
  NS_DECL_ISUPPORTS
 
141
  NS_DECL_NSIPRINTERENUMERATOR
 
142
 
 
143
protected:
 
144
};
 
145
 
 
146
#endif