/* $XConsortium: RxPlugin.h /main/4 1996/11/20 11:31:42 lehors $ */ /* Copyright (C) 1996 X Consortium Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Soft- ware"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following condi- tions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL- ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABIL- ITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the X Consortium. */ /* * RX plug-in header file, based on the UnixTemplate file provided by Netcape. */ /* -*- Mode: C; tab-width: 4; -*- */ /****************************************************************************** * Copyright (c) 1996 Netscape Communications. All rights reserved. ******************************************************************************/ /* * UnixShell.c * * Netscape Client Plugin API * - Function that need to be implemented by plugin developers * * This file defines a "Template" plugin that plugin developers can use * as the basis for a real plugin. This shell just provides empty * implementations of all functions that the plugin can implement * that will be called by Netscape (the NPP_xxx methods defined in * npapi.h). * * dp Suresh * */ #ifndef _RxPlugin_h #define _RxPLugin_h #include "npapi.h" #include #include #include #include "Rx.h" /*********************************************************************** * Instance state information about the plugin. * * PLUGIN DEVELOPERS: * Use this struct to hold per-instance information that you'll * need in the various functions in this file. ***********************************************************************/ typedef enum { LOADING, /* STARTING, */ WAITING, RUNNING} PluginState; typedef struct _PluginInstance { NPP instance; int16 argc; /* HTML arguments given by Netscape */ char **argn; char **argv; short parse_reply; /* 0 - no 1 - look for status line 2 - done */ short status; /* returned application status */ RxBool dont_reparent; /* whether client windows need reparent*/ char *query; PluginState state; Widget status_widget; Widget plugin_widget; Dimension width, height; /* The following fields need to be taken care by RxpNew & RxpDestroy */ Window window; pid_t child_pid; int display_num; /* Xnest display number */ } PluginInstance; #define PLUGIN_NAME "RX Xnest Plug-in" #define PLUGIN_DESCRIPTION "This X Remote Activation Plug-in uses the \ Xnest program to perform embedding of X applications." #define PLUGIN_MIME_DESCRIPTION \ "application/x-rx:xrx:X Remote Activation Plug-in" /* functions to init and free private members */ extern void RxpNew(PluginInstance *This); extern void RxpDestroy(PluginInstance *This); extern int RxpProcessParams(PluginInstance* This, RxParams *in, RxReturnParams *out); extern void RxpSetStatusWidget(PluginInstance*, PluginState); extern void RxpInitXnestDisplayNumbers(); extern int RxpXnestDisplayNumber(); extern void RxpFreeXnestDisplayNumber(int i); extern char * RxpXnestDisplay(int display_number); #endif