// AbiWord // Copyright (C) 2001 Mike Nordell // // 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. ////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////// // THIS FILE IS INCLUDED BY .cpp AND .rc FILES. // // Compile-time dependencies galore! // ////////////////////////////////////////////////////////////////// // the main dialog #define AP_RID_DIALOG_PAGENUMBERS_COMBO_POSITION 1000 #define AP_RID_DIALOG_PAGENUMBERS_COMBO_ALIGN 1001 #define AP_RID_DIALOG_PAGENUMBERS_STATIC_POSITION 1002 #define AP_RID_DIALOG_PAGENUMBERS_STATIC_PREVIEW 1004 #define AP_RID_DIALOG_PAGENUMBERS_STATIC_ALIGNMENT 1005 #define AP_RID_DIALOG_PAGENUMBERS_STATIC_PREVIEW_WIDGET 1006 #define AP_RID_DIALOG_PAGENUMBERS_BTN_OK IDOK #define AP_RID_DIALOG_PAGENUMBERS_BTN_CANCEL IDCANCEL #ifdef RC_INVOKED AP_RID_DIALOG_PAGENUMBERS DIALOGEX 0, 0, 170, 140 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Page Numbers" FONT 8, "MS Sans Serif" BEGIN LTEXT "Position:",AP_RID_DIALOG_PAGENUMBERS_STATIC_POSITION,7,10,90,8 COMBOBOX AP_RID_DIALOG_PAGENUMBERS_COMBO_POSITION,7,20,90,60, CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP LTEXT "Alignment:",AP_RID_DIALOG_PAGENUMBERS_STATIC_ALIGNMENT,7,40,90,8 COMBOBOX AP_RID_DIALOG_PAGENUMBERS_COMBO_ALIGN,7,50,90,60, CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP LTEXT "Preview:",AP_RID_DIALOG_PAGENUMBERS_STATIC_PREVIEW,100,10,55,8 CONTROL "",AP_RID_DIALOG_PAGENUMBERS_STATIC_PREVIEW_WIDGET,"Static",SS_BLACKFRAME,100,20,60, 80,WS_EX_CLIENTEDGE DEFPUSHBUTTON "OK",IDOK,50,110,50,15 PUSHBUTTON "Cancel",IDCANCEL,110,110,50,15 END #endif /* RC_INVOKED */