2009-08-17 12:41:51 +02:00
|
|
|
/***************************************************************************
|
|
|
|
|
|
|
|
gclipboard.h
|
|
|
|
|
2011-03-21 01:04:10 +01:00
|
|
|
(c) 2000-2011 Benoît Minisini <gambas@users.sourceforge.net>
|
2009-08-17 12:41:51 +02:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
This program 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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2011-06-03 02:51:09 +02:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA.
|
2009-08-17 12:41:51 +02:00
|
|
|
|
|
|
|
***************************************************************************/
|
2007-12-30 17:41:49 +01:00
|
|
|
#ifndef __GCLIPBOARD_H
|
|
|
|
#define __GCLIPBOARD_H
|
|
|
|
|
|
|
|
class gPicture;
|
|
|
|
|
|
|
|
class gClipboard
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
Nothing = 0,
|
|
|
|
Text = 1,
|
|
|
|
Image = 2
|
|
|
|
};
|
|
|
|
|
|
|
|
static void init();
|
|
|
|
static void clear();
|
|
|
|
static char *getFormat(int n = 0);
|
|
|
|
static int getType();
|
|
|
|
static void setText(char *text, char *format = 0);
|
|
|
|
static char *getText();
|
|
|
|
static void setImage(gPicture *image);
|
|
|
|
static gPicture *getImage();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|