/* * Copyright 2004 by Krzysztof Foltman * Copyright 2007-2008 by Alexander N. Sørnes * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ #define MAX_STRING_LEN 255 #define TWIPS_PER_CM 567 #define ID_FILE_EXIT 1000 #define ID_FILE_OPEN 1001 #define ID_FILE_SAVE 1002 #define ID_FILE_NEW 1003 #define ID_FILE_SAVEAS 1004 #define ID_FILE_RECENT1 1005 #define ID_FILE_RECENT2 1006 #define ID_FILE_RECENT3 1007 #define ID_FILE_RECENT4 1008 #define ID_FILE_RECENT_SEPARATOR 1009 #define ID_PRINT 1010 #define ID_PREVIEW 1011 #define ID_PRINTSETUP 1012 #define ID_PRINT_QUICK 1013 #define ID_FIND 1014 #define ID_FIND_NEXT 1015 #define ID_REPLACE 1016 #define ID_PREVIEW_NEXTPAGE 1017 #define ID_PREVIEW_PREVPAGE 1018 #define ID_PREVIEW_NUMPAGES 1019 #define ID_ALIGN_LEFT 1100 #define ID_ALIGN_CENTER 1101 #define ID_ALIGN_RIGHT 1102 #define ID_BACK_1 1200 #define ID_BACK_2 1201 #define ID_EDIT_SELECTALL 1300 #define ID_EDIT_SELECTIONINFO 1301 #define ID_EDIT_READONLY 1302 #define ID_EDIT_MODIFIED 1303 #define ID_EDIT_CHARFORMAT 1304 #define ID_EDIT_PARAFORMAT 1305 #define ID_EDIT_DEFCHARFORMAT 1306 #define ID_EDIT_UNDO 1307 #define ID_EDIT_REDO 1308 #define ID_EDIT_GETTEXT 1309 #define ID_EDIT_COPY 1310 #define ID_EDIT_CUT 1311 #define ID_EDIT_PASTE 1312 #define ID_EDIT_CLEAR 1313 #define ID_BULLET 1314 #define ID_FONTSETTINGS 1315 #define ID_FORMAT_BOLD 1400 #define ID_FORMAT_ITALIC 1401 #define ID_FORMAT_UNDERLINE 1402 #define ID_TOGGLE_TOOLBAR 1500 #define ID_TOGGLE_FORMATBAR 1501 #define ID_TOGGLE_STATUSBAR 1502 #define ID_TOGGLE_RULER 1503 #define PREVIEW_BUTTONS 5 #define FILELIST_ENTRIES 4 #define FILELIST_ENTRY_LENGTH 33 #define BANDID_TOOLBAR 2 #define BANDID_FORMATBAR 3 #define BANDID_RULER 0 #define BANDID_STATUSBAR 1 #define BANDID_FONTLIST 4 #define BANDID_SIZELIST 5 #define BANDID_PREVIEW_BTN1 6 #define BANDID_PREVIEW_BTN2 7 #define BANDID_PREVIEW_BTN3 8 #define BANDID_PREVIEW_BTN4 9 #define BANDID_PREVIEW_BTN5 10 #define BANDID_PREVIEW_BUFFER 11 #define ID_WORDWRAP_NONE 0 #define ID_WORDWRAP_WINDOW 1 #define ID_WORDWRAP_MARGIN 2 #define ID_NEWFILE_ABORT 100 #define ID_TAB_ADD 100 #define ID_TAB_DEL 101 #define ID_TAB_EMPTY 102 #define IDC_PAGEFMT_TB 100 #define IDC_PAGEFMT_FB 101 #define IDC_PAGEFMT_RU 102 #define IDC_PAGEFMT_SB 103 #define IDC_PAGEFMT_WW 104 #define IDC_PAGEFMT_WM 105 #define IDC_PAGEFMT_ID 106 #define ID_DATETIME 1600 #define ID_PARAFORMAT 1601 #define ID_TABSTOPS 1602 #define ID_ABOUT 1603 #define ID_VIEWPROPERTIES 1604 #define IDC_STATUSBAR 2000 #define IDC_EDITOR 2001 #define IDC_TOOLBAR 2002 #define IDC_FORMATBAR 2003 #define IDC_REBAR 2004 #define IDC_COMBO 2005 #define IDC_DATETIME 2006 #define IDC_NEWFILE 2007 #define IDC_PARA_LEFT 2008 #define IDC_PARA_RIGHT 2009 #define IDC_PARA_FIRST 2010 #define IDC_PARA_ALIGN 2011 #define IDC_TABSTOPS 2012 #define IDC_FONTLIST 2013 #define IDC_SIZELIST 2014 #define IDC_RULER 2015 #define IDD_DATETIME 2100 #define IDD_NEWFILE 2101 #define IDD_PARAFORMAT 2102 #define IDD_TABSTOPS 2103 #define IDD_FORMATOPTS 2104 #define IDM_MAINMENU 2200 #define IDM_POPUP 2201 #define IDB_TOOLBAR 100 #define IDB_FORMATBAR 101 #define IDI_WORDPAD 102 #define IDI_RTF 103 #define IDI_WRI 104 #define IDI_TXT 105 #define STRING_ALL_FILES 1400 #define STRING_TEXT_FILES_TXT 1401 #define STRING_TEXT_FILES_UNICODE_TXT 1402 #define STRING_RICHTEXT_FILES_RTF 1403 #define STRING_NEWFILE_RICHTEXT 1404 #define STRING_NEWFILE_TXT 1405 #define STRING_NEWFILE_TXT_UNICODE 1406 #define STRING_ALIGN_LEFT 1407 #define STRING_ALIGN_RIGHT 1408 #define STRING_ALIGN_CENTER 1409 #define STRING_PRINTER_FILES_PRN 1410 #define STRING_VIEWPROPS_TITLE 1411 #define STRING_VIEWPROPS_TEXT 1412 #define STRING_VIEWPROPS_RICHTEXT 1413 #define STRING_PREVIEW_PRINT 1414 #define STRING_PREVIEW_NEXTPAGE 1415 #define STRING_PREVIEW_PREVPAGE 1416 #define STRING_PREVIEW_TWOPAGES 1417 #define STRING_PREVIEW_ONEPAGE 1418 #define STRING_PREVIEW_CLOSE 1419 #define STRING_UNITS_CM 1420 #define STRING_DEFAULT_FILENAME 1700 #define STRING_PROMPT_SAVE_CHANGES 1701 #define STRING_SEARCH_FINISHED 1702 #define STRING_LOAD_RICHED_FAILED 1703 #define STRING_SAVE_LOSEFORMATTING 1704 #define STRING_INVALID_NUMBER 1705 #define STRING_OLE_STORAGE_NOT_SUPPORTED 1706 LPWSTR file_basename(LPWSTR); void dialog_printsetup(HWND); void dialog_print(HWND, LPWSTR); void target_device(HWND, DWORD); void print_quick(LPWSTR); LRESULT preview_command(HWND, WPARAM, LPARAM); void init_preview(HWND, LPWSTR); void close_preview(HWND); BOOL preview_isactive(void); LRESULT print_preview(HWND); void get_default_printer_opts(void); void registry_set_pagemargins(HKEY); void registry_read_pagemargins(HKEY); LRESULT CALLBACK ruler_proc(HWND, UINT, WPARAM, LPARAM); void redraw_ruler(HWND); int reg_formatindex(WPARAM); void registry_read_filelist(HWND); void registry_read_options(void); void registry_read_formatopts_all(DWORD[], DWORD[]); void registry_read_winrect(RECT*); void registry_set_filelist(LPCWSTR, HWND); void registry_set_formatopts_all(DWORD[]); void registry_set_options(HWND);