mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
73 lines
1.9 KiB
C
73 lines
1.9 KiB
C
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
/*
|
|
g-editor-view.c -- editor views.
|
|
Created: Chris Toshok <toshok@hungry.com>, 18-Jul-98.
|
|
*/
|
|
|
|
#include "g-editor-view.h"
|
|
|
|
void
|
|
moz_editor_view_init(MozEditorView *view, MozFrame *parent_frame, MWContext *context)
|
|
{
|
|
/* call our superclass's init */
|
|
moz_html_view_init(MOZ_VIEW(view), parent_frame, context);
|
|
|
|
/* then do our stuff. */
|
|
moz_tagged_set_type(MOZ_TAGGED(view),
|
|
MOZ_TAG_EDITOR_VIEW);
|
|
}
|
|
|
|
void
|
|
moz_editor_view_deinit(MozEditorView *view)
|
|
{
|
|
/* do our stuff. */
|
|
|
|
/* then call our superclass's deinit */
|
|
moz_html_view_deinit(MOZ_HTML_VIEW(view));
|
|
}
|
|
|
|
MozEditorView*
|
|
moz_editor_view_create(MozFrame *parent_frame, MWContext *context)
|
|
{
|
|
MozEditorView *view;
|
|
|
|
view = XP_NEW_ZAP(MozEditorView);
|
|
XP_ASSERT(view);
|
|
if (view == NULL) return NULL;
|
|
|
|
/* if context == NULL, then we should create a new context.
|
|
this is used for grid cells. */
|
|
moz_editor_view_init(view, parent_frame, context);
|
|
|
|
return view;
|
|
}
|
|
|
|
void
|
|
moz_editor_view_display_linefeed(MozEditorView *view,
|
|
LO_LinefeedStruct *line_feed,
|
|
XP_Bool need_bg)
|
|
{
|
|
XP_ASSERT(0);
|
|
printf("moz_editor_view_display_linefeed (empty)\n");
|
|
}
|