1998-11-01 21:03:40 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* NPL.
|
|
|
|
*
|
|
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
* Reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
1998-12-07 06:52:42 +00:00
|
|
|
|
1999-01-06 00:34:50 +00:00
|
|
|
#include "nsBrowserWindow.h"
|
1998-11-01 21:03:40 +00:00
|
|
|
#include "resources.h"
|
1998-12-04 21:36:23 +00:00
|
|
|
#include "nscore.h"
|
1998-11-01 21:03:40 +00:00
|
|
|
|
|
|
|
#include "stdio.h"
|
|
|
|
|
1999-01-06 00:34:50 +00:00
|
|
|
typedef GtkItemFactoryCallback GIFC;
|
|
|
|
|
1999-03-16 02:19:52 +00:00
|
|
|
void gtk_ifactory_cb (nsBrowserWindow *nbw,
|
1998-11-01 21:03:40 +00:00
|
|
|
guint callback_action,
|
|
|
|
GtkWidget *widget)
|
|
|
|
{
|
1999-01-06 00:34:50 +00:00
|
|
|
nbw->DispatchMenuItem(callback_action);
|
1998-11-01 21:03:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GtkItemFactoryEntry menu_items[] =
|
|
|
|
{
|
1999-01-06 02:54:04 +00:00
|
|
|
{ "/_File", nsnull, nsnull, 0, "<Branch>" },
|
|
|
|
{ "/File/_New Window", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_WINDOW_OPEN, nsnull },
|
|
|
|
{ "/File/_Open...", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_FILE_OPEN, nsnull },
|
1999-01-25 18:54:10 +00:00
|
|
|
{ "/File/_View Source", nsnull, (GIFC)gtk_ifactory_cb, VIEW_SOURCE, nsnull },
|
1999-01-06 02:54:04 +00:00
|
|
|
{ "/File/_Samples", nsnull, nsnull, 0, "<Branch>" },
|
|
|
|
{ "/File/Samples/demo #0", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DEMO0, nsnull },
|
|
|
|
{ "/File/Samples/demo #1", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DEMO1, nsnull },
|
|
|
|
{ "/File/Samples/demo #2", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DEMO2, nsnull },
|
|
|
|
{ "/File/Samples/demo #3", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DEMO3, nsnull },
|
|
|
|
{ "/File/Samples/demo #4", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DEMO4, nsnull },
|
|
|
|
{ "/File/Samples/demo #5", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DEMO5, nsnull },
|
|
|
|
{ "/File/Samples/demo #6", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DEMO6, nsnull },
|
|
|
|
{ "/File/Samples/demo #7", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DEMO7, nsnull },
|
|
|
|
{ "/File/Samples/demo #8", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DEMO8, nsnull },
|
|
|
|
{ "/File/Samples/demo #9", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DEMO9, nsnull },
|
|
|
|
{ "/File/Samples/demo #10", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DEMO10, nsnull },
|
1999-02-03 17:16:11 +00:00
|
|
|
{ "/File/Samples/demo #11", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DEMO11, nsnull },
|
|
|
|
{ "/File/Samples/demo #12", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DEMO12, nsnull },
|
1999-03-11 21:23:28 +00:00
|
|
|
{ "/File/Samples/demo #13", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DEMO13, nsnull },
|
1999-04-13 00:13:54 +00:00
|
|
|
{ "/File/Samples/demo #14", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DEMO14, nsnull },
|
|
|
|
{ "/File/Samples/demo #15", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DEMO15, nsnull },
|
1999-05-28 21:55:33 +00:00
|
|
|
{ "/File/Samples/demo #16", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DEMO16, nsnull },
|
|
|
|
{ "/File/Samples/demo #17", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DEMO17, nsnull },
|
1999-01-06 02:54:04 +00:00
|
|
|
{ "/File/_Test Sites", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_TOP100, nsnull },
|
1999-03-05 20:18:25 +00:00
|
|
|
{ "/File/XPToolkit Tests", nsnull, nsnull, 0, "<Branch>" },
|
1999-03-09 22:39:02 +00:00
|
|
|
{ "/File/XPToolkit Tests/Toolbar Test 1", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_XPTOOLKITTOOLBAR1, nsnull },
|
|
|
|
{ "/File/XPToolkit Tests/Tree Test 1", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_XPTOOLKITTREE1, nsnull },
|
1999-01-06 02:54:04 +00:00
|
|
|
{ "/File/sep1", nsnull, nsnull, 0, "<Separator>" },
|
1999-01-15 01:31:39 +00:00
|
|
|
{ "/File/Print Preview", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_ONE_COLUMN, nsnull },
|
1999-01-06 02:54:04 +00:00
|
|
|
{ "/File/Print", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_PRINT, nsnull },
|
|
|
|
{ "/File/Print Setup", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_PRINT_SETUP, nsnull },
|
|
|
|
{ "/File/sep2", nsnull, nsnull, 0, "<Separator>" },
|
|
|
|
{ "/File/_Exit", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_EXIT, nsnull },
|
1998-11-01 21:03:40 +00:00
|
|
|
|
1999-01-06 02:54:04 +00:00
|
|
|
{ "/_Edit", nsnull, nsnull, 0, "<Branch>" },
|
1999-02-25 17:33:06 +00:00
|
|
|
{ "/Edit/Cu_t", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_EDIT_CUT, nsnull },
|
|
|
|
{ "/Edit/_Copy", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_EDIT_COPY, nsnull },
|
|
|
|
{ "/Edit/_Paste", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_EDIT_PASTE, nsnull },
|
1999-01-06 02:54:04 +00:00
|
|
|
{ "/Edit/sep1", nsnull, nsnull, 0, "<Separator>" },
|
1999-02-25 17:33:06 +00:00
|
|
|
{ "/Edit/Select All", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_EDIT_SELECTALL, nsnull },
|
1999-01-06 02:54:04 +00:00
|
|
|
{ "/Edit/sep1", nsnull, nsnull, 0, "<Separator>" },
|
1999-02-25 17:33:06 +00:00
|
|
|
{ "/Edit/Find in Page", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_EDIT_FINDINPAGE, nsnull },
|
1998-11-01 21:03:40 +00:00
|
|
|
|
1999-03-19 20:59:11 +00:00
|
|
|
//#ifdef DEBUG // turning off for now
|
1999-01-06 02:54:04 +00:00
|
|
|
{ "/_Debug", nsnull, nsnull, 0, "<Branch>" },
|
1999-02-25 17:33:06 +00:00
|
|
|
{ "/Debug/_Visual Debugging", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_VISUAL_DEBUGGING,nsnull },
|
|
|
|
{ "/Debug/_Reflow Test", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_REFLOW_TEST, nsnull },
|
1999-01-06 02:54:04 +00:00
|
|
|
{ "/Debug/sep1", nsnull, nsnull, 0, "<Separator>" },
|
1999-02-25 17:33:06 +00:00
|
|
|
{ "/Debug/Dump _Content", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DUMP_CONTENT, nsnull },
|
|
|
|
{ "/Debug/Dump _Frames", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DUMP_FRAMES, nsnull },
|
|
|
|
{ "/Debug/Dump _Views", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DUMP_VIEWS, nsnull },
|
1999-01-06 02:54:04 +00:00
|
|
|
{ "/Debug/sep1", nsnull, nsnull, 0, "<Separator>" },
|
1999-02-25 17:33:06 +00:00
|
|
|
{ "/Debug/Dump _Style Sheets", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DUMP_STYLE_SHEETS, nsnull },
|
|
|
|
{ "/Debug/Dump _Style Contexts", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DUMP_STYLE_CONTEXTS, nsnull},
|
1999-01-06 02:54:04 +00:00
|
|
|
{ "/Debug/sep1", nsnull, nsnull, 0, "<Separator>" },
|
1999-02-25 17:33:06 +00:00
|
|
|
{ "/Debug/Show Content Size", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_SHOW_CONTENT_SIZE,nsnull },
|
|
|
|
{ "/Debug/Show Frame Size", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_SHOW_FRAME_SIZE, nsnull },
|
|
|
|
{ "/Debug/Show Style Size", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_SHOW_STYLE_SIZE, nsnull },
|
1999-01-06 02:54:04 +00:00
|
|
|
{ "/Debug/sep1", nsnull, nsnull, 0, "<Separator>" },
|
1999-02-25 17:33:06 +00:00
|
|
|
{ "/Debug/Debug Save", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DEBUGSAVE, nsnull },
|
1999-03-04 21:59:13 +00:00
|
|
|
{ "/Debug/Debug Output Text", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DISPLAYTEXT, nsnull },
|
|
|
|
{ "/Debug/Debug Output HTML", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DISPLAYHTML, nsnull },
|
1999-02-25 17:33:06 +00:00
|
|
|
{ "/Debug/Debug Toggle Selection", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_TOGGLE_SELECTION,nsnull },
|
1999-01-06 02:54:04 +00:00
|
|
|
{ "/Debug/sep1", nsnull, nsnull, 0, "<Separator>" },
|
1999-02-25 17:33:06 +00:00
|
|
|
{ "/Debug/Debug Robot", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_DEBUGROBOT, nsnull },
|
1999-01-06 02:54:04 +00:00
|
|
|
{ "/Debug/sep1", nsnull, nsnull, 0, "<Separator>" },
|
1999-02-25 17:33:06 +00:00
|
|
|
{ "/Debug/Show Content Quality", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_SHOW_CONTENT_QUALITY, nsnull },
|
1999-06-29 15:00:06 +00:00
|
|
|
{ "/_Style", nsnull, nsnull, 0, "<Branch>" },
|
|
|
|
{ "/Style/Select _Style Sheet", nsnull, nsnull, 0, "<Branch>" },
|
|
|
|
{ "/Style/Select Style Sheet/List Available Sheets", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_SELECT_STYLE_LIST, nsnull },
|
|
|
|
{ "/Style/Select Style Sheet/sep1", nsnull, nsnull, 0, "<Separator>" },
|
|
|
|
{ "/Style/Select Style Sheet/Select Default", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_SELECT_STYLE_DEFAULT, nsnull },
|
|
|
|
{ "/Style/Select Style Sheet/sep1", nsnull, nsnull, 0, "<Separator>" },
|
|
|
|
{ "/Style/Select Style Sheet/Select Alternative 1", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_SELECT_STYLE_ONE, nsnull },
|
|
|
|
{ "/Style/Select Style Sheet/Select Alternative 2", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_SELECT_STYLE_TWO, nsnull },
|
|
|
|
{ "/Style/Select Style Sheet/Select Alternative 3", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_SELECT_STYLE_THREE, nsnull },
|
|
|
|
{ "/Style/Select Style Sheet/Select Alternative 4", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_SELECT_STYLE_FOUR, nsnull },
|
|
|
|
{ "/Style/_Compatibility Mode", nsnull, nsnull, 0, "<Branch>" },
|
|
|
|
{ "/Style/Compatibility Mode/Nav Quirks", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_NAV_QUIRKS_MODE, nsnull },
|
|
|
|
{ "/Style/Compatibility Mode/Standard", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_STANDARD_MODE, nsnull },
|
1999-03-02 22:15:35 +00:00
|
|
|
|
1999-06-29 15:00:06 +00:00
|
|
|
{ "/Style/_Widget Render Mode", nsnull, nsnull, 0, "<Branch>" },
|
|
|
|
{ "/Style/Widget Render Mode/Native", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_NATIVE_WIDGET_MODE, nsnull },
|
|
|
|
{ "/Style/Widget Render Mode/Gfx", nsnull, (GIFC)gtk_ifactory_cb, VIEWER_GFX_WIDGET_MODE, nsnull },
|
1999-03-19 20:59:11 +00:00
|
|
|
//#endif
|
1999-01-06 02:54:04 +00:00
|
|
|
|
1999-01-08 15:19:29 +00:00
|
|
|
{ "/_Tools", nsnull, nsnull, 0, "<Branch>" },
|
1999-01-06 02:54:04 +00:00
|
|
|
{ "/Tools/_JavaScript Console", nsnull, (GIFC)gtk_ifactory_cb, JS_CONSOLE, nsnull },
|
|
|
|
{ "/Tools/_Editor Mode", nsnull, (GIFC)gtk_ifactory_cb, EDITOR_MODE, nsnull }
|
1998-11-01 21:03:40 +00:00
|
|
|
};
|
|
|
|
|
1999-01-06 00:34:50 +00:00
|
|
|
void CreateViewerMenus(GtkWidget *aParent, gpointer data)
|
1998-11-01 21:03:40 +00:00
|
|
|
{
|
|
|
|
GtkItemFactory *item_factory;
|
1999-01-06 00:34:50 +00:00
|
|
|
GtkWidget *menubar;
|
|
|
|
|
1998-11-01 21:03:40 +00:00
|
|
|
int nmenu_items = sizeof (menu_items) / sizeof (menu_items[0]);
|
1998-12-04 21:36:23 +00:00
|
|
|
item_factory = gtk_item_factory_new (GTK_TYPE_MENU_BAR, "<main>", nsnull);
|
1999-03-16 02:19:52 +00:00
|
|
|
gtk_item_factory_create_items (item_factory, nmenu_items, menu_items, data);
|
1999-01-06 00:34:50 +00:00
|
|
|
/* HACK HACK HACK */
|
|
|
|
menubar = gtk_item_factory_get_widget (item_factory, "<main>");
|
|
|
|
gtk_widget_show(menubar);
|
1998-11-01 21:03:40 +00:00
|
|
|
|
1999-01-06 00:34:50 +00:00
|
|
|
gtk_menu_bar_set_shadow_type (GTK_MENU_BAR(menubar), GTK_SHADOW_NONE);
|
1998-11-01 21:03:40 +00:00
|
|
|
|
1999-01-06 00:34:50 +00:00
|
|
|
gtk_box_pack_start(GTK_BOX(aParent->parent), menubar, PR_FALSE, PR_FALSE, 0);
|
|
|
|
gtk_box_reorder_child(GTK_BOX(aParent->parent), menubar, 0);
|
1998-11-01 21:03:40 +00:00
|
|
|
}
|