home *** CD-ROM | disk | FTP | other *** search
- /*******************************************************************
- * PRINT.SRC
- * (c) 1992-1994 STAR DIVISION
- *******************************************************************/
-
- #include "print.hrc"
-
- Menu MENU_APPMENU
- {
- ItemList =
- {
- MenuItem
- {
- Text = "~Printer";
- Identifier = POPUP_PRINTER;
- SubMenu = Menu
- {
- ItemList =
- {
- MenuItem
- {
- Text = "~Print";
- Identifier = MI_PRINT;
- };
- MenuItem
- {
- Text = "~Setup";
- Identifier = MI_SETUP;
- };
- MenuItem
- {
- Separator = TRUE;
- };
- MenuItem
- {
- Text = "~Info";
- Identifier = MI_INFO;
- };
- MenuItem
- {
- Separator = TRUE;
- };
- MenuItem
- {
- Text = "Pre~view";
- Identifier = MI_PREVIEW;
- };
- MenuItem
- {
- Separator = TRUE;
- };
- MenuItem
- {
- Text = "E~xit";
- Identifier = MI_EXIT;
- };
- };
- };
- };
- };
- };
-
- ModelessDialog DLG_ABORT
- {
- SVLook = TRUE;
- Size = MAP_APPFONT( 70, 55 );
- OutputSize = TRUE;
- Text = "Print";
- Moveable = TRUE;
- Sizeable = TRUE;
- Closeable = TRUE;
- Hide = TRUE;
-
- FixedText DA_ABORTTEXT
- {
- PosSize = MAP_APPFONT( 10, 10, 50, 15 );
- Text = "Printing...";
- };
-
- CancelButton DA_ABORT
- {
- PosSize = MAP_APPFONT( 15, 30, 40, 15 );
- DefButton = TRUE;
- };
- };
-
- ModalDialog DLG_INFO
- {
- SVLook = TRUE;
- Size = MAP_APPFONT( 100, 100 );
- OutputSize = TRUE;
- Text = "Printer Info";
- Moveable = TRUE;
- Sizeable = TRUE;
- Closeable = TRUE;
-
- FixedText DI_PRINTERNAME
- {
- PosSize = MAP_APPFONT( 5, 5, 80, 12 );
- };
-
- FixedText DI_PAPERSIZE
- {
- PosSize = MAP_APPFONT( 5, 20, 80, 12 );
- Text = "PaperSize: ";
- };
-
- FixedText DI_OUTPUTSIZE
- {
- PosSize = MAP_APPFONT( 5, 35, 80, 12 );
- Text = "OutputSize: ";
- };
-
- FixedText DI_PAGEOFFSET
- {
- PosSize = MAP_APPFONT( 5, 50, 80, 12 );
- Text = "PageOffset: ";
- };
-
- FixedText DI_PAPERBINS
- {
- PosSize = MAP_APPFONT( 5, 65, 80, 12 );
- Text = " Bin(s)";
- };
-
- OKButton DI_OK
- {
- PosSize = MAP_APPFONT( 25, 80, 40, 15 );
- DefButton = TRUE;
- Tabstop = TRUE;
- };
- };
-