From cd756a5873419958cf0d9d07f0c8e3a1e13d470d Mon Sep 17 00:00:00 2001 From: "pavlov%pavlov.net" Date: Sun, 15 Nov 1998 22:27:32 +0000 Subject: [PATCH] removed unused files --- widget/src/gtk/nsGtkManageWidget.c | 164 ---------------------------- widget/src/gtk/nsGtkManageWidget.h | 31 ------ widget/src/gtk/nsGtkManageWidgetP.h | 61 ----------- 3 files changed, 256 deletions(-) delete mode 100644 widget/src/gtk/nsGtkManageWidget.c delete mode 100644 widget/src/gtk/nsGtkManageWidget.h delete mode 100644 widget/src/gtk/nsGtkManageWidgetP.h diff --git a/widget/src/gtk/nsGtkManageWidget.c b/widget/src/gtk/nsGtkManageWidget.c deleted file mode 100644 index fbf46748ba8f..000000000000 --- a/widget/src/gtk/nsGtkManageWidget.c +++ /dev/null @@ -1,164 +0,0 @@ -/* -*- 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. - */ -/* - new_manage.c --- defines a subclass of XmManager - Created: Eric Bina , 17-Aug-94. - - Excerts from the X Toolkit Intrinsics Programming Manual - O'Reilly: - - "Writing a general-purpose composite widget is not a trivial task - and should only be done when other options fail." - "A truly general-purpose composite widget is a large, complex piece - of software. You should leave this programming to the widget writers - who write commercial widget sets, and concentrate on things that are - more important in your application." - */ - - -#include -#include -/*#include "mozilla.h"*/ -#include "nsGtkManageWidget.h" -#include "nsGtkManageWidgetP.h" - -#if 0 -static XtGeometryResult -GeometryManager(Widget w, XtWidgetGeometry *request, XtWidgetGeometry *reply); - -static void -ChangeManaged(Widget w); - - -extern void nsWindow_ResizeWidget(Widget w); - - -NewManageClassRec newManageClassRec = -{ - { -/* core_class fields */ - /* superclass */ (WidgetClass) &xmManagerClassRec, - /* class_name */ "NewManage", - /* widget_size */ sizeof(NewManageRec), - /* class_initialize */ NULL, - /* class_partinit */ NULL /* ClassPartInitialize */, - /* class_inited */ FALSE, - /* initialize */ NULL /* Initialize */, - /* Init hook */ NULL, - /* realize */ XtInheritRealize /* Realize */, - /* actions */ NULL, - /* num_actions */ 0, - /* resources */ NULL /* resources */, - /* num_resources */ 0 /* XtNumber(resources) */, - /* xrm_class */ NULLQUARK, - /* compress_motion */ TRUE, - /* compress_exposure */ TRUE, - /* compress_enterleave*/ TRUE, - /* visible_interest */ FALSE, - /* destroy */ NULL, - /* resize */ nsWindow_ResizeWidget, - /* expose */ XtInheritExpose /* (XtExposeProc) Redisplay */, - /* set_values */ NULL /* (XtSetValuesFunc )SetValues */, - /* set values hook */ NULL, - /* set values almost */ XtInheritSetValuesAlmost, - /* get values hook */ NULL, - /* accept_focus */ NULL, - /* Version */ XtVersion, - /* PRIVATE cb list */ NULL, - /* tm_table */ XtInheritTranslations, - /* query_geometry */ NULL /* QueryProc */, - /* display_accelerator*/ NULL, - /* extension */ NULL, - }, - { -/* composite_class fields */ - /* geometry_manager */ GeometryManager /*(XtGeometryHandler )GeometryManager*/, - /* change_managed */ ChangeManaged /*(XtWidgetProc) ChangeManaged*/, - /* insert_child */ XtInheritInsertChild /*(XtArgsProc) InsertChild*/, - /* delete_child */ XtInheritDeleteChild, - /* Extension */ NULL, - },{ -/* Constraint class Init */ - NULL, - 0, - 0, - NULL, - NULL, - NULL, - NULL - - }, -/* Manager Class */ - { - XmInheritTranslations/*ScrolledWindowXlations*/, /* translations */ - NULL /*get_resources*/, /* get resources */ - 0 /*XtNumber(get_resources)*/, /* num get_resources */ - NULL, /* get_cont_resources */ - 0, /* num_get_cont_resources */ - XmInheritParentProcess, /* parent_process */ - NULL, /* extension */ - }, - - { -/* NewManage class - none */ - /* mumble */ 0 - } -}; - - -WidgetClass newManageClass = (WidgetClass)&newManageClassRec; - - -static XtGeometryResult -GeometryManager(Widget w, XtWidgetGeometry *request, XtWidgetGeometry *reply) -{ - if (request->request_mode & XtCWQueryOnly) - { - return(XtGeometryYes); - } - - if (request->request_mode & CWX) - { - XtX(w) = request->x; - } - if (request->request_mode & CWY) - { - XtY(w) = request->y; - } - if (request->request_mode & CWWidth) - { - XtWidth(w) = request->width; - } - if (request->request_mode & CWHeight) - { - XtHeight(w) = request->height; - } - if (request->request_mode & CWBorderWidth) - { - XtBorderWidth(w) = request->border_width; - } - - return(XtGeometryYes); -} - - -static void -ChangeManaged(Widget w) -{ - return; -} -#endif diff --git a/widget/src/gtk/nsGtkManageWidget.h b/widget/src/gtk/nsGtkManageWidget.h deleted file mode 100644 index 491dc2d8c05c..000000000000 --- a/widget/src/gtk/nsGtkManageWidget.h +++ /dev/null @@ -1,31 +0,0 @@ -/* -*- 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. - */ -/* - nsXtManageWidget.h --- defines a subclass of XmManager - Lifted from xfe code 9/10/98. Modified to support resize. - */ - - -#ifndef _FE_NEWMANAGE_H_ -#define _FE_NEWMANAGE_H_ - -extern WidgetClass newManageClass; -typedef struct _NewManageClassRec *NewManageClass; -typedef struct _NewManageRec *NewManage; - -#endif /* _FE_NEWMANAGE_H_ */ diff --git a/widget/src/gtk/nsGtkManageWidgetP.h b/widget/src/gtk/nsGtkManageWidgetP.h deleted file mode 100644 index 34aba870bd0d..000000000000 --- a/widget/src/gtk/nsGtkManageWidgetP.h +++ /dev/null @@ -1,61 +0,0 @@ -/* -*- 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. - */ -/* - nsXtManageWidgetP.h --- defines a subclass of XmScrolledWindow - */ - - -#ifndef _nsXtManageWidth_H_ -#define _nsXtManageWidth_H_ - -#include "nsGtkManageWidget.h" - -typedef struct -{ - int frogs; -} NewManageClassPart; - -typedef struct _NewManageClassRec -{ - CoreClassPart core_class; - CompositeClassPart composite_class; - ConstraintClassPart constraint_class; - XmManagerClassPart manager_class; - NewManageClassPart newManage_class; -} NewManageClassRec; - -extern NewManageClassRec newManageClassRec; - -typedef struct -{ - void *why; - XtCallbackList input_callback; -} NewManagePart; - -typedef struct _NewManageRec -{ - CorePart core; - CompositePart composite; - ConstraintPart constraint; - XmManagerPart manager; - NewManagePart newManage; -} NewManageRec; - -#endif - -