not quite so much needs to be delayed to the init() function
[personal-kdebase.git] / workspace / kscreensaver / krandom_screensaver / random.h
blobdeb04cdb1c9360e9d78f18676ac0280e1241f227
1 /*
2 Copyright (c) 2003 Chris Howells <howells@kde.org>
4 *************************************************************************
5 * *
6 * This program is free software; you can redistribute it and/or *
7 * modify it under the terms of the GNU Lesser General Public *
8 * License as published by the Free Software Foundation; version *
9 * 2 of the License. *
10 * *
11 *************************************************************************
14 #ifndef RANDOM_H
15 #define RANDOM_H
17 class QWidget;
18 class QCheckBox;
20 class KRandomSetup : public KDialog
22 Q_OBJECT
23 public:
24 KRandomSetup( QWidget *parent = NULL, const char *name = NULL );
26 private:
28 QWidget *preview;
29 QCheckBox *openGL;
30 QCheckBox *manipulateScreen;
32 private Q_SLOTS:
33 void slotOk();
37 #endif