dsettings.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. Copyright (C) 2010 Martin Zuber, zuber@centrum.cz
  3. This application is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU Lesser General Public License as
  5. published by the Free Software Foundation; either version 2.1 of the
  6. License, or (at your option) any later version.
  7. This application is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with This application; if not, write to the Free Software
  13. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  14. */
  15. #ifndef DSETTINGS_H
  16. #define DSETTINGS_H
  17. #include <QDialog>
  18. namespace Ui {
  19. class DSettings;
  20. }
  21. class DSettings : public QDialog
  22. {
  23. Q_OBJECT
  24. public:
  25. explicit DSettings(QWidget *parent = 0);
  26. ~DSettings();
  27. private:
  28. Ui::DSettings *ui;
  29. void initializeUi();
  30. private slots:
  31. void on_lstPresets_changed(QString);
  32. };
  33. #endif // DSETTINGS_H