gecko-dev/cmd/gnomefe/gnome-edit.c

186 lines
3.6 KiB
C
Raw Normal View History

1998-09-09 01:15:49 +00:00
/* -*- 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.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.
*/
/*
gnomeedit.c --- stub functions for fe
specific editor stuff.
*/
#include "xp_core.h"
#include "structs.h"
#include "ntypes.h"
#include "edttypes.h"
#include "edt.h"
ED_CharsetEncode FE_EncodingDialog(MWContext *context)
{
ED_CharsetEncode retval = ED_ENCODE_CANCEL;
return retval;
}
void
FE_DisplayTextCaret(MWContext* context,
int loc,
LO_TextStruct* text_data,
int char_offset)
{
printf("FE_DisplayTextCaret (empty)\n");
1998-09-09 01:15:49 +00:00
}
void
FE_DisplayImageCaret(MWContext* context,
LO_ImageStruct* pImageData,
ED_CaretObjectPosition caretPos)
{
printf("FE_DisplayImageCaret (empty)\n");
1998-09-09 01:15:49 +00:00
}
void
FE_DisplayGenericCaret(MWContext* context,
LO_Any* pLoAny,
ED_CaretObjectPosition caretPos)
{
printf("FE_DisplayGenericCaret (empty)\n");
1998-09-09 01:15:49 +00:00
}
Bool
FE_GetCaretPosition(MWContext* context,
LO_Position* where,
int32* caretX,
int32* caretYLow,
int32* caretYHigh)
{
printf("FE_GetCaretPosition (empty)\n");
1998-09-09 01:15:49 +00:00
}
void
FE_DestroyCaret(MWContext* pContext)
{
printf("FE_DestroyCaret (empty)\n");
1998-09-09 01:15:49 +00:00
}
void
FE_ShowCaret(MWContext* pContext)
{
printf("FE_ShowCaret (empty)\n");
1998-09-09 01:15:49 +00:00
}
void
FE_DocumentChanged(MWContext* context,
int32 iStartY,
int32 iHeight)
{
printf("FE_DocumentChanged (empty)\n");
1998-09-09 01:15:49 +00:00
}
MWContext*
FE_CreateNewEditWindow(MWContext* pContext,
URL_Struct* pURL)
{
printf("FE_CreateNewEditWindow (empty)\n");
1998-09-09 01:15:49 +00:00
}
char*
FE_URLToLocalName(char* url)
{
printf("FE_URLToLocalName (empty)\n");
1998-09-09 01:15:49 +00:00
}
void
FE_EditorDocumentLoaded(MWContext* context)
{
printf("FE_EditorDocumentLoaded (empty)\n");
1998-09-09 01:15:49 +00:00
}
void
FE_GetDocAndWindowPosition(MWContext * context,
int32 *pX,
int32 *pY,
int32 *pWidth,
int32 *pHeight)
{
printf("FE_GetDocAndWindowPosition (empty)\n");
1998-09-09 01:15:49 +00:00
}
void
FE_SetNewDocumentProperties(MWContext* context)
{
printf("FE_SetNewDocumentProperties (empty)\n");
1998-09-09 01:15:49 +00:00
}
Bool
FE_CheckAndSaveDocument(MWContext* context)
{
printf("FE_CheckAndSaveDocument (empty)\n");
1998-09-09 01:15:49 +00:00
}
Bool
FE_CheckAndAutoSaveDocument(MWContext *context)
{
printf("FE_CheckAndAutoSaveDocument (empty)\n");
1998-09-09 01:15:49 +00:00
}
void
FE_FinishedSave(MWContext* context,
int status,
char *pDestURL,
int iFileNumber)
{
printf("FE_FinishedSave (empty)\n");
1998-09-09 01:15:49 +00:00
}
char *
XP_BackupFileName (const char *url)
{
printf("XP_BackupFileName (empty)\n");
1998-09-09 01:15:49 +00:00
}
Bool
XP_ConvertUrlToLocalFile (const char *url,
char **localName)
{
printf("XP_ConvertUrlToLocalFile (empty)\n");
1998-09-09 01:15:49 +00:00
}
void
FE_ImageLoadDialog(MWContext* context)
{
printf("FE_ImageLoadDialog (empty)\n");
1998-09-09 01:15:49 +00:00
}
void
FE_ImageLoadDialogDestroy(MWContext* context)
{
printf("FE_ImageLoadDialogDestroy (empty)\n");
1998-09-09 01:15:49 +00:00
}
void
FE_DisplayAddRowOrColBorder(MWContext * pMWContext,
XP_Rect *pRect,
XP_Bool bErase)
{
printf("FE_DisplayAddRowOrColBorder (empty)\n");
1998-09-09 01:15:49 +00:00
}
void
FE_DisplayEntireTableOrCell(MWContext * pMWContext,
LO_Element * pLoElement)
{
printf("FE_DisplayEntireTableOrCell (empty)\n");
1998-09-09 01:15:49 +00:00
}