summaryrefslogtreecommitdiff
path: root/printdialogprivates.h
diff options
context:
space:
mode:
authorAlexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>2004-09-15 16:34:17 +0000
committerAlexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>2004-09-15 16:34:17 +0000
commitc4baf5cfa9e906cfb3fed738f11d8ec8d0ff535b (patch)
treea897b55362cea1030d87f5960ec1db434742be5f /printdialogprivates.h
parentf9fb54809c56e625c1d72beb96157e20aab17412 (diff)
Pull XORG-6_8_0 to CYGWIN branchCYGWIN-6_8_0-MERGE
Diffstat (limited to 'printdialogprivates.h')
-rw-r--r--printdialogprivates.h176
1 files changed, 176 insertions, 0 deletions
diff --git a/printdialogprivates.h b/printdialogprivates.h
new file mode 100644
index 0000000..314a91c
--- /dev/null
+++ b/printdialogprivates.h
@@ -0,0 +1,176 @@
+/*
+ * $Xorg: printdialogprivates.h,v 1.1 2004/05/12 02:05:54 gisburn Exp $
+ *
+Copyright 2004 Roland Mainz <roland.mainz@nrubsig.org>
+
+Permission to use, copy, modify, distribute, and sell this software and its
+documentation for any purpose is hereby granted without fee, provided that
+the above copyright notice appear in all copies and that both that
+copyright notice and this permission notice appear in supporting
+documentation.
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+Except as contained in this notice, the name of The Open Group shall not be
+used in advertising or otherwise to promote the sale, use or other dealings
+in this Software without prior written authorization from The Open Group.
+ *
+ */
+
+#ifndef _XawPrintDialogP_h
+#define _XawPrintDialogP_h 1
+
+#include <X11/IntrinsicP.h>
+#include <X11/StringDefs.h>
+#include <X11/Xos.h>
+#include <X11/Xmu/Misc.h>
+#include <X11/CoreP.h>
+#include <X11/Xaw/AsciiText.h>
+#include <X11/Xaw/Cardinals.h>
+#include <X11/Xaw/Command.h>
+#include <X11/Xaw/Label.h>
+#include <X11/Xaw/DialogP.h>
+#include <X11/Xaw/XawInit.h>
+#include <X11/Xaw/Dialog.h>
+#include <X11/Xaw/FormP.h>
+
+/* From Xaw/Privates.h */
+#ifndef XtWidth
+#define XtWidth(w) (((RectObj)w)->rectangle.width)
+#endif
+#ifndef XtHeight
+#define XtHeight(w) (((RectObj)w)->rectangle.height)
+#endif
+
+
+typedef struct {
+ XtPointer extension;
+} PrintDialogClassPart;
+
+typedef struct _PrintDialogClassRec {
+ CoreClassPart core_class;
+ CompositeClassPart composite_class;
+ ConstraintClassPart constraint_class;
+ FormClassPart form_class;
+ PrintDialogClassPart print_dialog_class;
+} PrintDialogClassRec;
+
+extern PrintDialogClassRec printDialogClassRec;
+
+typedef struct _PrintDialogPart {
+ /* resources */
+ String label; /* description of the dialog */
+ String value; /* for the user response */
+ Pixmap icon; /* icon bitmap */
+ XtCallbackList ok_callback,
+ cancel_callback;
+
+ /* private */
+ Widget iconW; /* widget to display the icon */
+
+ struct
+ {
+ Widget form,
+ innerform,
+ desclabel,
+ desc,
+ info,
+ namelabel,
+ name,
+ selectprinter,
+ filenamelabel,
+ filename,
+ selectfile,
+ printtoprinter,
+ printtofile,
+ ok,
+ setup,
+ cancel;
+ } main;
+
+ Bool printToFile;
+ char *filename;
+ Bool canPrint, /* can we print ? */
+ canReallyPrint; /* is it really save to print ? */
+
+ struct
+ {
+ Widget popup,
+ form,
+ list,
+ ok,
+ cancel;
+ } selectPrinter;
+
+ struct
+ {
+ Widget popup,
+ form,
+ paperlist,
+ resolutionlist,
+ orientationlist,
+ plexlist,
+ jobcopieslabel,
+ jobcopies,
+ ok,
+ cancel;
+ } setup;
+
+ struct
+ {
+ Widget dialog,
+ shell;
+ } selectFile;
+
+ XPPrinterList printerlist;
+ int num_printers;
+ String *widget_printerlist;
+
+ String printer_name;
+ Display *pdpy;
+ XPContext pcontext;
+
+ XpuMediumSourceSizeList paperlist;
+ int num_papers;
+ String *widget_paperlist;
+
+ XpuResolutionList resolutionlist;
+ int num_resolutions;
+ String *widget_resolutionlist;
+
+ XpuOrientationList orientationlist;
+ int num_orientations;
+ String *widget_orientationlist;
+
+ XpuPlexList plexlist;
+ int num_plex;
+ String *widget_plexlist;
+} PrintDialogPart;
+
+typedef struct _PrintDialogRec {
+ CorePart core;
+ CompositePart composite;
+ ConstraintPart constraint;
+ FormPart form;
+ PrintDialogPart printdialog;
+} PrintDialogRec;
+
+typedef struct {
+ XtPointer extension;
+} PrintDialogConstraintsPart;
+
+typedef struct _PrintDialogConstraintsRec {
+ FormConstraintsPart form;
+ PrintDialogConstraintsPart printdialog;
+} PrintDialogConstraintsRec, *PrintDialogConstraints;
+
+#endif /* !_XawPrintDialogP_h */
+