diff options
author | deva <deva> | 2008-07-07 07:36:42 +0000 |
---|---|---|
committer | deva <deva> | 2008-07-07 07:36:42 +0000 |
commit | 12bd3e7ff088b097bf4e280161aee646fbbb50dc (patch) | |
tree | c8923c3b73fe578c95d45f99e6bcc36dbe2e72f5 /editor/widgetwrapper.h | |
parent | 678aba4c1fd1c9930ecda84a126f1bc7163dc29d (diff) |
Made actual widgets get dragged around
Diffstat (limited to 'editor/widgetwrapper.h')
-rw-r--r-- | editor/widgetwrapper.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/editor/widgetwrapper.h b/editor/widgetwrapper.h new file mode 100644 index 0000000..8d65aa1 --- /dev/null +++ b/editor/widgetwrapper.h @@ -0,0 +1,36 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/*************************************************************************** + * widgetwrapper.h + * + * Mon Jul 7 07:42:03 CEST 2008 + * Copyright 2008 Bent Bisballe Nyeng + * deva@aasimon.org + ****************************************************************************/ + +/* + * This file is part of Pracro. + * + * Pracro 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 of the License, or + * (at your option) any later version. + * + * Pracro 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 Pracro; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. + */ +#ifndef __PRACRO_WIDGETWRAPPER_H__ +#define __PRACRO_WIDGETWRAPPER_H__ + +#include <QWidget> +#include <QByteArray> + +QByteArray wrapWidget(QWidget *widget); +QWidget *unwrapWidget(QByteArray bytes); + +#endif/*__PRACRO_WIDGETWRAPPER_H__*/ |