From 55162445db4c8ea46be671c2abed4ad4e77e1dcd Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Sun, 31 Jan 2010 00:36:02 +0000 Subject: Add Windows frontend svn path=/trunk/netsurf/; revision=9940 --- windows/resourceid.h | 103 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 windows/resourceid.h (limited to 'windows/resourceid.h') diff --git a/windows/resourceid.h b/windows/resourceid.h new file mode 100644 index 000000000..73fedebc5 --- /dev/null +++ b/windows/resourceid.h @@ -0,0 +1,103 @@ +/* + * Copyright 2009 Mark Benjamin + * + * This file is part of NetSurf, http://www.netsurf-browser.org/ + * + * NetSurf 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; version 2 of the License. + * + * NetSurf 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, see . + */ + +#ifndef _NETSURF_WINDOWS_RESOURCEID_H_ +#define _NETSURF_WINDOWS_RESOURCEID_H_ + +#ifndef IDC_STATIC +#define IDC_STATIC (-1) +#endif + +#define NSWS_ID_MAINMENU 101 +#define NSWS_ID_CTXMENU 103 +#define NSWS_ID_ABOUT_DIALOG 11111 +#define NSWS_ID_ABOUT_CONTENT 11112 +#define NSWS_ID_PREFS_DIALOG 11113 +#define NSWS_ID_PREFS_HOMEPAGE 11114 +#define NSWS_ID_PREFS_ADVERTS 11115 +#define NSWS_ID_PREFS_POPUPS 11116 +#define NSWS_ID_PREFS_PLUGINS 11117 +#define NSWS_ID_PREFS_REFERER 11118 +#define NSWS_ID_PREFS_PROXYTYPE 11119 +#define NSWS_ID_PREFS_PROXYHOST 11120 +#define NSWS_ID_PREFS_PROXYPORT 11121 +#define NSWS_ID_PREFS_PROXYNAME 11122 +#define NSWS_ID_PREFS_PROXYPASS 11123 +#define NSWS_ID_PREFS_FONT_SIZE 11124 +#define NSWS_ID_PREFS_FONT_SIZE_SPIN 11125 +#define NSWS_ID_PREFS_FONT_MINSIZE 11126 +#define NSWS_ID_PREFS_FONT_MINSIZE_SPIN 11127 +#define NSWS_ID_PREFS_SANS 11128 +#define NSWS_ID_PREFS_SERIF 11129 +#define NSWS_ID_PREFS_MONO 11130 +#define NSWS_ID_PREFS_CURSIVE 11131 +#define NSWS_ID_PREFS_FANTASY 11132 +#define NSWS_ID_PREFS_FONTDEF 11133 +#define NSWS_ID_PREFS_FETCHERS 11134 +#define NSWS_ID_PREFS_FETCHERS_SPIN 11135 +#define NSWS_ID_PREFS_FETCH_HOST 11136 +#define NSWS_ID_PREFS_FETCH_HOST_SPIN 11137 +#define NSWS_ID_PREFS_FETCH_HANDLES 11138 +#define NSWS_ID_PREFS_FETCH_HANDLES_SPIN 11139 +#define NSWS_ID_PREFS_NOANIMATION 11140 +#define NSWS_ID_PREFS_ANIMATIONDELAY 11141 +#define NSWS_ID_PREFS_ANIMATIONDELAY_SPIN 11142 +#define NSWS_ID_DOWNLOAD_DIALOG 11143 +#define NSWS_ID_DOWNLOAD_LABEL 11144 +#define NSWS_ID_DOWNLOAD_PROGRESS 11145 +#define NSWS_ID_FILE_OPEN_WINDOW 40000 +#define NSWS_ID_FILE_OPEN_LOCATION 40001 +#define NSWS_ID_FILE_CLOSE_WINDOW 40002 +#define NSWS_ID_FILE_SAVEAS_TEXT 40003 +#define NSWS_ID_FILE_SAVEAS_PDF 40004 +#define NSWS_ID_FILE_SAVEAS_DRAWFILE 40005 +#define NSWS_ID_FILE_SAVEAS_POSTSCRIPT 40006 +#define NSWS_ID_FILE_PRINT_PREVIEW 40007 +#define NSWS_ID_FILE_PRINT 40008 +#define NSWS_ID_FILE_QUIT 40009 +#define NSWS_ID_FILE_SAVE_PAGE 40010 +#define NSWS_ID_EDIT_CUT 40011 +#define NSWS_ID_EDIT_COPY 40012 +#define NSWS_ID_EDIT_PASTE 40013 +#define NSWS_ID_EDIT_DELETE 40014 +#define NSWS_ID_EDIT_SELECT_ALL 40015 +#define NSWS_ID_EDIT_SEARCH 40016 +#define NSWS_ID_EDIT_PREFERENCES 40017 +#define NSWS_ID_HELP_CONTENTS 40018 +#define NSWS_ID_HELP_GUIDE 40019 +#define NSWS_ID_HELP_INFO 40020 +#define NSWS_ID_HELP_ABOUT 40021 +#define NSWS_ID_VIEW_FULLSCREEN 40022 +#define NSWS_ID_VIEW_SOURCE 40023 +#define NSWS_ID_VIEW_ZOOMPLUS 40024 +#define NSWS_ID_VIEW_ZOOMMINUS 40025 +#define NSWS_ID_VIEW_ZOOMNORMAL 40026 +#define NSWS_ID_NAV_BACK 40027 +#define NSWS_ID_NAV_FORWARD 40028 +#define NSWS_ID_NAV_HOME 40029 +#define NSWS_ID_NAV_STOP 40030 +#define NSWS_ID_NAV_RELOAD 40031 +#define NSWS_ID_NAV_LOCALHISTORY 40032 +#define NSWS_ID_NAV_GLOBALHISTORY 40033 +#define NSWS_ID_VIEW_DOWNLOADS 40034 +#define NSWS_ID_VIEW_SAVE_WIN_METRICS 40035 +#define NSWS_ID_VIEW_TOGGLE_DEBUG_RENDERING 40036 +#define NSWS_ID_VIEW_DEBUGGING_SAVE_BOXTREE 40037 +#define NSWS_ID_VIEW_DEBUGGING_SAVE_DOMTREE 40038 + +#endif -- cgit v1.2.3