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

92 строки
2.0 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.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.
*/
/*
gnomegrid.c --- gnome fe handling of Grid windows
(FRAMESET's and FRAME).
*/
#include "structs.h"
#include "ntypes.h"
#include "xpassert.h"
#include "proto.h"
#include "fe_proto.h"
void
FE_LoadGridCellFromHistory(MWContext *context,
void *hist,
NET_ReloadMethod force_reload)
{
XP_ASSERT(0);
printf("FE_LoadGridCellFromHistory (empty)\n");
}
void*
FE_FreeGridWindow(MWContext *context,
XP_Bool save_history)
{
XP_ASSERT(0);
printf("FE_FreeGridWindow (empty)\n");
}
void
FE_RestructureGridWindow(MWContext *context,
int32 x,
int32 y,
int32 width,
int32 height)
{
XP_ASSERT(0);
printf("FE_RestructureGridWindow (empty)\n");
}
MWContext *
FE_MakeGridWindow(MWContext *old_context,
void *hist_list,
void *history,
int32 x,
int32 y,
int32 width,
int32 height,
char *url_str,
char *window_name,
int8 scrolling,
NET_ReloadMethod force_reload,
Bool no_edge)
{
XP_ASSERT(0);
printf("FE_MakeGridWindow (empty)\n");
}
void
FE_GetFullWindowSize(MWContext *context,
int32 *width,
int32 *height)
{
XP_ASSERT(0);
printf("FE_GetFullWindowSize (empty)\n");
}
void
FE_GetEdgeMinSize(MWContext *context,
int32 *size)
{
XP_ASSERT(0);
printf("FE_GetEdgeMinSize (empty)\n");
}