/* * desktopwidget.h * * $Id: desktopwidget.h,v 0.1 1998/12/09 18:16:31 thorsten Exp thorsten $ * * This file is part of XGlobe. See README for details. * * Copyright (C) 1998 Thorsten Scheuermann * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public Licenses as published by * the Free Software Foundation. * * $Log: desktopwidget.h,v $ * Revision 0.1 1998/12/09 18:16:31 thorsten * initial revision * */ #ifndef _DESKTOPWIDGET_H #define _DESKTOPWIDGET_H #include #include #include class DesktopWidget : public QWidget { public: DesktopWidget(QWidget *parent=0, const char *name=0 ); ~DesktopWidget(); void paintEvent(QPaintEvent *pe); void updateDisplay(QImage *image); private: QPixmap *currentImage; bool haveImage; }; #endif