mozilla/cmd/xfe/src/EmbeddedEditor.cpp
mozilla/cmd/xfe/src/ComposeView.cpp
  - Modifications to get the insert menu (editorGoodiesMenu), on the embedded
    editor and compose view toolbar, to display text instead of icons.
This commit is contained in:
kin%netscape.com 1998-09-28 19:31:25 +00:00
Родитель 889061f833
Коммит 9e6fcf7845
3 изменённых файлов: 18 добавлений и 10 удалений

Просмотреть файл

@ -5495,6 +5495,14 @@ Insert break to continue text below images to the left and the right
*editorGoodiesMenu.tipString: Insert Object
*editorGoodiesMenu.documentationString: Insert object
*editorGoodiesMenu*insertLink.labelString: Insert Link...
*editorGoodiesMenu*insertTarget.labelString: Insert Target...
*editorGoodiesMenu*insertImage.labelString: Insert Image...
*editorGoodiesMenu*insertHorizontalLine.labelString: \
Insert Horizontal Line...
*editorGoodiesMenu*insertTable.labelString: Insert Table...
! Editor/Popups (additional items)
*browseLink.documentationString: Browse this link
*editLink.documentationString: Open this link in a new editor window

Просмотреть файл

@ -330,11 +330,11 @@ static ToolbarSpec alignment_menu_spec[] = {
};
static ToolbarSpec goodies_menu_spec[] = {
{ xfeCmdInsertLink, PUSHBUTTON, &ed_link_group },
{ xfeCmdInsertTarget, PUSHBUTTON, &ed_target_group },
{ xfeCmdInsertImage, PUSHBUTTON, &ed_image_group },
{ xfeCmdInsertHorizontalLine, PUSHBUTTON, &ed_hrule_group },
{ xfeCmdInsertTable, PUSHBUTTON, &ed_table_group },
{ xfeCmdInsertLink, PUSHBUTTON /* , &ed_link_group */ },
{ xfeCmdInsertTarget, PUSHBUTTON /* , &ed_target_group */ },
{ xfeCmdInsertImage, PUSHBUTTON /* , &ed_image_group */ },
{ xfeCmdInsertHorizontalLine, PUSHBUTTON /* , &ed_hrule_group */ },
{ xfeCmdInsertTable, PUSHBUTTON /* , &ed_table_group */ },
{ NULL }
};

Просмотреть файл

@ -69,11 +69,11 @@ static ToolbarSpec alignment_menu_spec[] = {
};
static ToolbarSpec goodies_menu_spec[] = {
{ xfeCmdInsertLink, PUSHBUTTON, &ed_link_group },
{ xfeCmdInsertTarget, PUSHBUTTON, &ed_target_group },
{ xfeCmdInsertImage, PUSHBUTTON, &ed_image_group },
{ xfeCmdInsertHorizontalLine, PUSHBUTTON, &ed_hrule_group },
{ xfeCmdInsertTable, PUSHBUTTON, &ed_table_group },
{ xfeCmdInsertLink, PUSHBUTTON /* , &ed_link_group */ },
{ xfeCmdInsertTarget, PUSHBUTTON /* , &ed_target_group */ },
{ xfeCmdInsertImage, PUSHBUTTON /* , &ed_image_group */ },
{ xfeCmdInsertHorizontalLine, PUSHBUTTON /* , &ed_hrule_group */ },
{ xfeCmdInsertTable, PUSHBUTTON /* , &ed_table_group */ },
{ NULL }
};