File indexing completed on 2024-12-22 04:17:47

0001 /***************************************************************************
0002  *                                                                         *
0003  *   copyright : (C) 2008 The University of Toronto                        *
0004  *                   netterfield@astro.utoronto.ca                         *
0005  *                                                                         *
0006  *   This program is free software; you can redistribute it and/or modify  *
0007  *   it under the terms of the GNU General Public License as published by  *
0008  *   the Free Software Foundation; either version 2 of the License, or     *
0009  *   (at your option) any later version.                                   *
0010  *                                                                         *
0011  ***************************************************************************/
0012 
0013 #ifndef VIEWDIALOG_H
0014 #define VIEWDIALOG_H
0015 
0016 #include "dialog.h"
0017 
0018 #include <QPointer>
0019 
0020 #include "kst_export.h"
0021 
0022 namespace Kst {
0023 
0024 class View;
0025 class FillTab;
0026 
0027 class ViewDialog : public Dialog
0028 {
0029   Q_OBJECT
0030   public:
0031     explicit ViewDialog(View *view, QWidget *parent = 0);
0032     virtual ~ViewDialog();
0033 
0034   private Q_SLOTS:
0035     void fillChanged();
0036 
0037   private:
0038     void setupFill();
0039 
0040   private:
0041     QPointer<View> _view;
0042     FillTab *_fillTab;
0043 };
0044 
0045 }
0046 
0047 #endif
0048 
0049 // vim: ts=2 sw=2 et