// AbiWord // Copyright (C) 1998 AbiSource, Inc. // // 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. // // *** RC.exe IS BRAIN-DAMAGED. GIVING THIS FILE AN .rc2 // *** EXTENSION MAKES #INCLUDING THIS FILE FROM Win32Main.rc // *** WORK -- IF THE SUFFIX IS .h ONLY THE #DEFINES WORK, THE // *** DIALOGS DO NOT GET COMPILED. // ////////////////////////////////////////////////////////////////// #define AP_RID_DIALOG_REPLACE_BTN_FINDNEXT 1001 #define AP_RID_DIALOG_REPLACE_BTN_REPLACE 1002 #define AP_RID_DIALOG_REPLACE_BTN_REPLACEALL 1003 #define AP_RID_DIALOG_REPLACE_BTN_CLOSE IDCANCEL #define AP_RID_DIALOG_REPLACE_EDIT_FIND 1004 #define AP_RID_DIALOG_REPLACE_EDIT_REPLACE 1005 #define AP_RID_DIALOG_REPLACE_CHECK_MATCHCASE 1006 #define AP_RID_DIALOG_REPLACE_TEXT_FIND 1007 #define AP_RID_DIALOG_REPLACE_TEXT_REPLACE 1008 #ifdef RC_INVOKED // NOTE -- these placeholder strings get overridden at runtime // NOTE -- they're just here to make sizing easier AP_RID_DIALOG_REPLACE DIALOG DISCARDABLE 0, 0, 254, 82 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Replace" FONT 8, "MS Sans Serif" BEGIN LTEXT "&Find:", AP_RID_DIALOG_REPLACE_TEXT_FIND, 7,7,46,14,SS_CENTERIMAGE EDITTEXT AP_RID_DIALOG_REPLACE_EDIT_FIND, 55,7,129,14,ES_AUTOHSCROLL LTEXT "&Replace:", AP_RID_DIALOG_REPLACE_TEXT_REPLACE, 7,25,46,14,SS_CENTERIMAGE EDITTEXT AP_RID_DIALOG_REPLACE_EDIT_REPLACE, 55,25,129,14,ES_AUTOHSCROLL CONTROL "&Match Case", AP_RID_DIALOG_REPLACE_CHECK_MATCHCASE, "Button",BS_AUTOCHECKBOX | WS_TABSTOP, 7,52,150,10 DEFPUSHBUTTON "Find &Next", AP_RID_DIALOG_REPLACE_BTN_FINDNEXT, 195,7,55,14 PUSHBUTTON "Re&place", AP_RID_DIALOG_REPLACE_BTN_REPLACE, 195,25,55,14 PUSHBUTTON "Replace &All", AP_RID_DIALOG_REPLACE_BTN_REPLACEALL, 195,43,55,14 PUSHBUTTON "&Close", AP_RID_DIALOG_REPLACE_BTN_CLOSE, 195,61,55,14 END AP_RID_DIALOG_FIND DIALOG DISCARDABLE 0, 0, 254, 49 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Find" FONT 8, "MS Sans Serif" BEGIN LTEXT "&Find:", AP_RID_DIALOG_REPLACE_TEXT_FIND, 7,7,46,14,SS_CENTERIMAGE EDITTEXT AP_RID_DIALOG_REPLACE_EDIT_FIND, 55,7,129,14,ES_AUTOHSCROLL CONTROL "&Match Case", AP_RID_DIALOG_REPLACE_CHECK_MATCHCASE, "Button",BS_AUTOCHECKBOX | WS_TABSTOP, 7,31,150,10 DEFPUSHBUTTON "Find &Next", AP_RID_DIALOG_REPLACE_BTN_FINDNEXT, 195,7,55,14 PUSHBUTTON "&Close", AP_RID_DIALOG_REPLACE_BTN_CLOSE, 195,25,55,14 END #endif /* RC_INVOKED */