42 lines
1.3 KiB
C
42 lines
1.3 KiB
C
|
/*
|
||
|
* synergy -- mouse and keyboard sharing utility
|
||
|
* Copyright (C) 2002 Chris Schoeneman
|
||
|
*
|
||
|
* This package is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU General Public License
|
||
|
* found in the file COPYING that should have accompanied this file.
|
||
|
*
|
||
|
* This package is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*/
|
||
|
|
||
|
#ifndef CLIPBOARDTYPES_H
|
||
|
#define CLIPBOARDTYPES_H
|
||
|
|
||
|
#include "BasicTypes.h"
|
||
|
|
||
|
//! Clipboard ID
|
||
|
/*!
|
||
|
Type to hold a clipboard identifier.
|
||
|
*/
|
||
|
typedef UInt8 ClipboardID;
|
||
|
|
||
|
//! @name Clipboard identifiers
|
||
|
//@{
|
||
|
// clipboard identifiers. kClipboardClipboard is what is normally
|
||
|
// considered the clipboard (e.g. the cut/copy/paste menu items
|
||
|
// affect it). kClipboardSelection is the selection on those
|
||
|
// platforms that can treat the selection as a clipboard (e.g. X
|
||
|
// windows). clipboard identifiers must be sequential starting
|
||
|
// at zero.
|
||
|
static const ClipboardID kClipboardClipboard = 0;
|
||
|
static const ClipboardID kClipboardSelection = 1;
|
||
|
|
||
|
// the number of clipboards (i.e. one greater than the last clipboard id)
|
||
|
static const ClipboardID kClipboardEnd = 2;
|
||
|
//@}
|
||
|
|
||
|
#endif
|