michael@0: // Microsoft Visual C++ generated resource script. michael@0: // michael@0: #include "resource.h" michael@0: michael@0: #define APSTUDIO_READONLY_SYMBOLS michael@0: ///////////////////////////////////////////////////////////////////////////// michael@0: // michael@0: // Generated from the TEXTINCLUDE 2 resource. michael@0: // michael@0: #define APSTUDIO_HIDDEN_SYMBOLS michael@0: #include "windows.h" michael@0: #undef APSTUDIO_HIDDEN_SYMBOLS michael@0: #include "resource.h" michael@0: michael@0: ///////////////////////////////////////////////////////////////////////////// michael@0: #undef APSTUDIO_READONLY_SYMBOLS michael@0: michael@0: ///////////////////////////////////////////////////////////////////////////// michael@0: // English (U.S.) resources michael@0: michael@0: #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) michael@0: #ifdef _WIN32 michael@0: LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US michael@0: #pragma code_page(1252) michael@0: #endif //_WIN32 michael@0: michael@0: ///////////////////////////////////////////////////////////////////////////// michael@0: // michael@0: // Icon michael@0: // michael@0: michael@0: // Icon with lowest ID value placed first to ensure application icon michael@0: // remains consistent on all systems. michael@0: IDI_WINEMBED ICON "winEmbed.ICO" michael@0: IDI_SMALL ICON "SMALL.ICO" michael@0: michael@0: ///////////////////////////////////////////////////////////////////////////// michael@0: // michael@0: // Menu michael@0: // michael@0: michael@0: IDC_WINEMBED MENU michael@0: BEGIN michael@0: POPUP "&File" michael@0: BEGIN michael@0: MENUITEM "New Browser...", MOZ_NewBrowser michael@0: MENUITEM "E&xit", IDM_EXIT michael@0: END michael@0: POPUP "&Edit" michael@0: BEGIN michael@0: MENUITEM "Cu&t", MOZ_Cut michael@0: MENUITEM "&Copy", MOZ_Copy michael@0: MENUITEM "&Paste", MOZ_Paste michael@0: MENUITEM SEPARATOR michael@0: MENUITEM "Select All", MOZ_SelectAll michael@0: MENUITEM "Select None", MOZ_SelectNone michael@0: END michael@0: POPUP "&Go" michael@0: BEGIN michael@0: MENUITEM "&Back", MOZ_GoBack michael@0: MENUITEM "&Forward", MOZ_GoForward michael@0: END michael@0: POPUP "&Debug" michael@0: BEGIN michael@0: MENUITEM "&This space for rent", ID_DEBUG_THISSPACEFORRENT michael@0: , GRAYED michael@0: END michael@0: POPUP "&Help" michael@0: BEGIN michael@0: MENUITEM "&About winEmbed...", MOZ_About michael@0: END michael@0: END michael@0: michael@0: michael@0: #ifdef APSTUDIO_INVOKED michael@0: ///////////////////////////////////////////////////////////////////////////// michael@0: // michael@0: // TEXTINCLUDE michael@0: // michael@0: michael@0: 2 TEXTINCLUDE michael@0: BEGIN michael@0: "#define APSTUDIO_HIDDEN_SYMBOLS\r\n" michael@0: "#include ""windows.h""\r\n" michael@0: "#undef APSTUDIO_HIDDEN_SYMBOLS\r\n" michael@0: "#include ""resource.h""\r\n" michael@0: "\0" michael@0: END michael@0: michael@0: 3 TEXTINCLUDE michael@0: BEGIN michael@0: "\r\n" michael@0: "\0" michael@0: END michael@0: michael@0: 1 TEXTINCLUDE michael@0: BEGIN michael@0: "resource.h\0" michael@0: END michael@0: michael@0: #endif // APSTUDIO_INVOKED michael@0: michael@0: michael@0: ///////////////////////////////////////////////////////////////////////////// michael@0: // michael@0: // String Table michael@0: // michael@0: michael@0: STRINGTABLE michael@0: BEGIN michael@0: IDS_APP_TITLE "winEmbed" michael@0: IDS_HELLO "Embedding Mozilla is so much fun!!" michael@0: IDS_ABOUT "winEmbed - Gecko embedding sample" michael@0: IDS_ABOUT_TITLE "About winEmbed" michael@0: IDS_HIST_BACK "Going Back to: " michael@0: IDS_HIST_FORWARD "Going Forward to: " michael@0: IDS_HIST_RELOAD_NORMAL "Reloading url, (normal) :" michael@0: END michael@0: michael@0: STRINGTABLE michael@0: BEGIN michael@0: IDS_HIST_RELOAD_BYPASSPROXY "Reloading url, (bypassing Proxy) :" michael@0: IDS_HIST_RELOAD_BYPASSCACHE "Reloading url, (bypassing cache) :" michael@0: IDS_HIST_ADDURL " added to Session History" michael@0: IDS_HIST_RELOAD_BYPASSPROXYANDCACHE michael@0: "Reloading url, (bypassing Proxy and cache) :" michael@0: IDS_HIST_PURGE "purged from session history" michael@0: IDS_HIST_GOTO "Going to history index : " michael@0: IDS_HIST_URL " URL : " michael@0: END michael@0: michael@0: #endif // English (U.S.) resources michael@0: ///////////////////////////////////////////////////////////////////////////// michael@0: michael@0: michael@0: ///////////////////////////////////////////////////////////////////////////// michael@0: // English (U.K.) resources michael@0: michael@0: #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENG) michael@0: #ifdef _WIN32 michael@0: LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_UK michael@0: #pragma code_page(1252) michael@0: #endif //_WIN32 michael@0: michael@0: ///////////////////////////////////////////////////////////////////////////// michael@0: // michael@0: // Dialog michael@0: // michael@0: michael@0: IDD_BROWSER DIALOG 0, 0, 400, 217 michael@0: STYLE DS_SETFONT | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | michael@0: WS_CLIPCHILDREN | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME michael@0: CAPTION "winEmbed sample - UNSUPPORTED" michael@0: MENU IDC_WINEMBED michael@0: FONT 8, "MS Sans Serif" michael@0: BEGIN michael@0: PUSHBUTTON "Back",IDC_BACK,1,1,21,13 michael@0: PUSHBUTTON "Forward",IDC_FORWARD,23,1,30,13 michael@0: PUSHBUTTON "Reload",IDC_RELOAD,57,1,28,13 michael@0: PUSHBUTTON "Stop",IDC_STOP,86,1,25,13 michael@0: LTEXT "Address:",IDC_STATIC,115,3,28,8 michael@0: COMBOBOX IDC_ADDRESS,145,1,193,52,CBS_DROPDOWN | CBS_AUTOHSCROLL | michael@0: WS_VSCROLL | WS_TABSTOP michael@0: DEFPUSHBUTTON "Go",IDC_GO,340,1,25,13 michael@0: CONTROL "Embedded Browser",IDC_BROWSER,"WINEMBED",WS_TABSTOP,0, michael@0: 16,400,192 michael@0: CONTROL "Status",IDC_STATUS,"Static",SS_LEFTNOWORDWRAP | michael@0: SS_SUNKEN | WS_GROUP,0,208,316,9 michael@0: CONTROL "Progress1",IDC_PROGRESS,"msctls_progress32",WS_BORDER, michael@0: 316,208,84,9 michael@0: END michael@0: michael@0: IDD_BROWSER_NC DIALOG 0, 0, 400, 217 michael@0: STYLE DS_SETFONT | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | michael@0: WS_CLIPCHILDREN | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME michael@0: CAPTION "winEmbed chromeless sample" michael@0: MENU IDC_WINEMBED michael@0: FONT 8, "MS Sans Serif" michael@0: BEGIN michael@0: CONTROL "Embedded Browser",IDC_BROWSER,"WINEMBED",WS_TABSTOP,0,0, michael@0: 400,217 michael@0: END michael@0: michael@0: michael@0: ///////////////////////////////////////////////////////////////////////////// michael@0: // michael@0: // DESIGNINFO michael@0: // michael@0: michael@0: #ifdef APSTUDIO_INVOKED michael@0: GUIDELINES DESIGNINFO michael@0: BEGIN michael@0: IDD_BROWSER, DIALOG michael@0: BEGIN michael@0: RIGHTMARGIN, 292 michael@0: BOTTOMMARGIN, 216 michael@0: END michael@0: END michael@0: #endif // APSTUDIO_INVOKED michael@0: michael@0: #endif // English (U.K.) resources michael@0: ///////////////////////////////////////////////////////////////////////////// michael@0: michael@0: michael@0: ///////////////////////////////////////////////////////////////////////////// michael@0: // English (Ireland) resources michael@0: michael@0: #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENI) michael@0: #ifdef _WIN32 michael@0: LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_EIRE michael@0: #pragma code_page(1252) michael@0: #endif //_WIN32 michael@0: michael@0: ///////////////////////////////////////////////////////////////////////////// michael@0: // michael@0: // Dialog michael@0: // michael@0: michael@0: IDD_CHOOSEPROFILE DIALOG 0, 0, 186, 154 michael@0: STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | michael@0: WS_SYSMENU michael@0: CAPTION "Choose Profile" michael@0: FONT 8, "MS Sans Serif" michael@0: BEGIN michael@0: LTEXT "Available Profiles:",IDC_STATIC,7,7,56,8 michael@0: LISTBOX IDC_PROFILELIST,7,18,117,129,LBS_NOINTEGRALHEIGHT | michael@0: WS_VSCROLL | WS_TABSTOP michael@0: DEFPUSHBUTTON "Select",IDOK,129,18,50,14 michael@0: PUSHBUTTON "Cancel",IDCANCEL,129,36,50,14 michael@0: END michael@0: michael@0: michael@0: ///////////////////////////////////////////////////////////////////////////// michael@0: // michael@0: // DESIGNINFO michael@0: // michael@0: michael@0: #ifdef APSTUDIO_INVOKED michael@0: GUIDELINES DESIGNINFO michael@0: BEGIN michael@0: IDD_CHOOSEPROFILE, DIALOG michael@0: BEGIN michael@0: LEFTMARGIN, 7 michael@0: RIGHTMARGIN, 179 michael@0: TOPMARGIN, 7 michael@0: BOTTOMMARGIN, 147 michael@0: END michael@0: END michael@0: #endif // APSTUDIO_INVOKED michael@0: michael@0: #endif // English (Ireland) resources michael@0: ///////////////////////////////////////////////////////////////////////////// michael@0: michael@0: michael@0: michael@0: #ifndef APSTUDIO_INVOKED michael@0: ///////////////////////////////////////////////////////////////////////////// michael@0: // michael@0: // Generated from the TEXTINCLUDE 3 resource. michael@0: // michael@0: michael@0: michael@0: ///////////////////////////////////////////////////////////////////////////// michael@0: #endif // not APSTUDIO_INVOKED michael@0: