1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /*
- * CDE - Common Desktop Environment
- *
- * Copyright (c) 1993-2012, The Open Group. All rights reserved.
- *
- * These libraries and programs are free software; you can
- * redistribute them and/or modify them under the terms of the GNU
- * Lesser General Public License as published by the Free Software
- * Foundation; either version 2 of the License, or (at your option)
- * any later version.
- *
- * These libraries and programs are distributed in the hope that
- * they will be useful, but WITHOUT ANY WARRANTY; without even the
- * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- * PURPOSE. See the GNU Lesser General Public License for more
- * details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with these libraries and programs; if not, write
- * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
- * Floor, Boston, MA 02110-1301 USA
- */
- /* $XConsortium: SvcTT.c /main/3 1995/10/26 15:30:18 rswiston $ */
- /*%% */
- /*%% RESTRICTED CONFIDENTIAL INFORMATION: */
- /*%% */
- /*%% The information in this document is subject to special */
- /*%% restrictions in a confidential disclosure agreement between */
- /*%% HP, IBM, Sun, USL, SCO and Univel. Do not distribute this */
- /*%% document outside HP, IBM, Sun, USL, SCO, or Univel without */
- /*%% Sun's specific written approval. This document and all copies */
- /*%% and derivative works thereof must be returned or destroyed at */
- /*%% Sun's request. */
- /*%% */
- /* (c) Copyright 1993, 1994 Hewlett-Packard Company */
- /* (c) Copyright 1993, 1994 International Business Machines Corp. */
- /* (c) Copyright 1993, 1994 Sun Microsystems, Inc. */
- /* (c) Copyright 1993, 1994 Novell, Inc. */
- /*%% */
- #include <sys/time.h>
- #include <Dt/SvcTT.h>
- /*
- * Ensure that there is a valid ToolTalk connection open.
- * If none is open, creates one and adds it to the XtAppContext
- * of widget. Returns
- * TT_OK Success.
- * TT_ERR_NOMP ToolTalk could not be initialized.
- * TT_ERR_POINTER widget was null.
- */
- Tt_status
- _DtSvcInitToolTalk(
- Widget widget
- )
- {
- char *procid;
- Tt_status status;
- int fd;
- XtAppContext ctxt;
- procid = tt_default_procid();
- status = tt_ptr_error( procid );
- if (status == TT_OK) {
- tt_free( procid );
- }
- if ((status == TT_ERR_NOMP) || (status == TT_ERR_PROCID)) {
- if (widget == 0) {
- return TT_ERR_POINTER;
- }
- procid = tt_open(); /* do not tt_free(); Xt will pass it back */
- status = tt_ptr_error( procid );
- if (status != TT_OK) {
- return status;
- }
- fd = tt_fd();
- status = tt_int_error( fd );
- if (status != TT_OK) {
- return status;
- }
- ctxt = XtWidgetToApplicationContext( widget );
- XtAppAddInput( ctxt, fd, (XtPointer)XtInputReadMask,
- tttk_Xt_input_handler, procid );
- }
- return TT_OK;
- }
|