ba19f3c1dd
git-svn-id: svn://localhost/gambas/trunk@893 867c0c6c-44f3-4631-809d-bfa615b0a4ec
67 lines
1.7 KiB
C++
67 lines
1.7 KiB
C++
/***************************************************************************
|
|
|
|
CClipboard.h
|
|
|
|
(c) 2000-2007 Benoit Minisini <gambas@users.sourceforge.net>
|
|
|
|
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 1, 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
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
***************************************************************************/
|
|
|
|
#ifndef __CCLIPBOARD_H
|
|
#define __CCLIPBOARD_H
|
|
|
|
#include "gambas.h"
|
|
#include "CWidget.h"
|
|
#include "CPicture.h"
|
|
|
|
typedef
|
|
struct {
|
|
QDropEvent *drop;
|
|
int x;
|
|
int y;
|
|
unsigned valid : 1;
|
|
}
|
|
CDRAG_INFO;
|
|
|
|
#ifndef __CCLIPBOARD_CPP
|
|
extern GB_DESC CClipboardDesc[];
|
|
extern GB_DESC CDragDesc[];
|
|
extern CDRAG_INFO CDRAG_info;
|
|
extern bool CDRAG_dragging;
|
|
#endif
|
|
|
|
class MyDragFrame: public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
MyDragFrame(QWidget *);
|
|
|
|
protected:
|
|
|
|
//virtual paintEvent(QPaintEvent *e);
|
|
};
|
|
|
|
|
|
void CDRAG_clear(bool valid);
|
|
void CDRAG_drag(CWIDGET *source, GB_VARIANT_VALUE *data, GB_STRING *fmt);
|
|
bool CDRAG_drag_enter(QWidget *w, CWIDGET *control, QDropEvent *e);
|
|
bool CDRAG_drag_move(QWidget *w, CWIDGET *control, QDropEvent *e);
|
|
void CDRAG_drag_drop(QWidget *w, CWIDGET *control, QDropEvent *e);
|
|
void CDRAG_hide_frame(CWIDGET *control);
|
|
|
|
#endif
|