diff options
author | Niklas Nebel <nn@openoffice.org> | 2001-07-19 18:42:35 +0000 |
---|---|---|
committer | Niklas Nebel <nn@openoffice.org> | 2001-07-19 18:42:35 +0000 |
commit | be42b0ecd1535cdcd81c43a6b9b65d5e33792acc (patch) | |
tree | 5c11243cd1823ba036482ee8d88c851bf85c565c /sc/source/ui/inc/cellsh.hxx | |
parent | a762437523b3f2455a11b04bd504a0ef3526393e (diff) |
#89671# get clipboard state via clipboard notifier
Diffstat (limited to 'sc/source/ui/inc/cellsh.hxx')
-rw-r--r-- | sc/source/ui/inc/cellsh.hxx | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/sc/source/ui/inc/cellsh.hxx b/sc/source/ui/inc/cellsh.hxx index 063890d5a..e5f17df58 100644 --- a/sc/source/ui/inc/cellsh.hxx +++ b/sc/source/ui/inc/cellsh.hxx @@ -2,9 +2,9 @@ * * $RCSfile: cellsh.hxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: nn $ $Date: 2001-05-11 17:50:01 $ + * last change: $Author: nn $ $Date: 2001-07-19 19:36:03 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -74,17 +74,29 @@ #include <svx/svdmark.hxx> #endif +#ifndef _LINK_HXX +#include <tools/link.hxx> +#endif + #ifndef SC_FORMATSH_HXX #include "formatsh.hxx" #endif class SvxClipboardFmtItem; +class TransferableDataHelper; +class TransferableClipboardListener; + class ScCellShell: public ScFormatShell { private: + TransferableClipboardListener* pClipEvtLstnr; + BOOL bPastePossible; + void GetPossibleClipboardFormats( SvxClipboardFmtItem& rFormats ); + DECL_LINK( ClipboardChanged, TransferableDataHelper* ); + public: TYPEINFO(); |