home *** CD-ROM | disk | FTP | other *** search
- /* -*- 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.
- */
- /*
- selection.h --- Selections: Cut, Copy, Paste, etc
- Created: Stephen Lamm <slamm@netscape.com>, 8 April 1997.
- */
-
-
- #ifndef _SELECTION_H_
- #define _SELECTION_H_
-
- #include "mozilla.h"
- #include "xfe.h"
-
- XP_BEGIN_PROTOS
-
- extern void fe_own_selection_1 (MWContext*, Time, Boolean, char *);
-
- extern void fe_OwnSelection (MWContext *, Time, Boolean);
- extern void fe_DisownSelection (MWContext *, Time, Boolean);
-
- extern void fe_OwnEDTSelection (MWContext*, Time, Boolean,
- char*, char*, char*, unsigned long);
-
- extern void fe_cut_cb (Widget, XtPointer, XtPointer);
- extern void fe_copy_cb (Widget, XtPointer, XtPointer);
- extern void fe_paste_cb (Widget, XtPointer, XtPointer);
- extern void fe_paste_quoted_cb (Widget, XtPointer, XtPointer);
-
- extern Boolean fe_can_cut (MWContext *context);
- extern Boolean fe_can_copy (MWContext *context);
- extern Boolean fe_can_paste (MWContext *context);
-
- extern void fe_OwnClipboard(Widget, Time,
- char*, char*, char*, unsigned long,
- XP_Bool);
- extern void fe_OwnPrimarySelection(Widget, Time,
- char*, char*, char*, unsigned long,
- MWContext*);
-
- extern void fe_DisownClipboard(Widget, Time);
- extern void fe_DisownPrimarySelection(Widget, Time);
-
- extern char* fe_GetPrimaryText(void);
- extern char* fe_GetPrimaryHtml(void);
- extern char* fe_GetPrimaryData(unsigned long*);
-
- extern char* fe_GetInternalText(void);
- extern char* fe_GetInternalHtml(void);
- extern char* fe_GetInternalData(unsigned long*);
-
- extern XP_Bool fe_InternalSelection(XP_Bool,
- unsigned long*,
- unsigned long*,
- unsigned long*);
-
- extern char* xfe2_GetClipboardText (Widget, int32 *);
- extern int xfe_clipboard_retrieve_work(Widget focus, char* name,
- char** buf, unsigned long* buf_len_a,
- Time timestamp);
-
- XP_END_PROTOS
-
- #endif
-