![]() |
Mixxx
|
00001 /*************************************************************************** 00002 dlgabout.h - description 00003 ------------------- 00004 begin : Mon Nov 19 2007 00005 copyright : (C) 2007 by Albert Santoni 00006 email : gamegod at users.sf.net 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef DLGABOUT_H 00019 #define DLGABOUT_H 00020 00021 #include "ui_dlgaboutdlg.h" 00022 #include "configobject.h" 00023 00024 class QWidget; 00029 class DlgAbout : public QDialog, public Ui::DlgAboutDlg { 00030 Q_OBJECT 00031 public: 00032 DlgAbout(QWidget *parent); 00033 ~DlgAbout(); 00034 public slots: 00035 00037 void slotApply(); 00038 void slotUpdate(); 00039 signals: 00040 void apply(const QString &); 00041 private: 00043 //ConfigObject<ConfigValue> *config; 00044 }; 00045 00046 #endif