settingsdialog.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*****************************************************************************
  2. * settingsdialog.h - QStarDict, a StarDict clone written with using Qt *
  3. * Copyright (C) 2007 Alexander Rodin *
  4. * *
  5. * This program is free software; you can redistribute it and/or modify *
  6. * it under the terms of the GNU General Public License as published by *
  7. * the Free Software Foundation; either version 2 of the License, or *
  8. * (at your option) any later version. *
  9. * *
  10. * This program is distributed in the hope that it will be useful, *
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of *
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
  13. * GNU General Public License for more details. *
  14. * *
  15. * You should have received a copy of the GNU General Public License along *
  16. * with this program; if not, write to the Free Software Foundation, Inc., *
  17. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *
  18. *****************************************************************************/
  19. #ifndef SETTINGSDIALOG_H
  20. #define SETTINGSDIALOG_H
  21. #include <QDialog>
  22. #include "ui_settingsdialog.h"
  23. #include "dictcore.h"
  24. class QStandardItemModel;
  25. class QStandardItem;
  26. namespace QStarDict
  27. {
  28. class MainWindow;
  29. /**
  30. * The settings dialog.
  31. */
  32. class SettingsDialog: public QDialog, private Ui::SettingsDialog
  33. {
  34. Q_OBJECT
  35. public:
  36. /**
  37. * Construct new SettingsDialog widget with parent MainWindow.
  38. */
  39. SettingsDialog(QWidget *parent = 0);
  40. void accept();
  41. void reject();
  42. private slots:
  43. void on_dictsMoveUpButton_clicked();
  44. void on_dictsMoveDownButton_clicked();
  45. void on_dictsShowInfoButton_clicked();
  46. void on_pluginsShowInfoButton_clicked();
  47. void on_pluginsConfigureButton_clicked();
  48. void pluginsItemChanged(QStandardItem *item);
  49. private slots:
  50. void loadDictsList();
  51. void loadPluginsList();
  52. private:
  53. QStringList m_oldPlugins;
  54. QList<DictCore::Dictionary> m_oldDicts;
  55. QStandardItemModel *m_dictsModel;
  56. QStandardItemModel *m_pluginsModel;
  57. };
  58. }
  59. #endif // SETTINGSDIALOG_H
  60. // vim: tabstop=4 softtabstop=4 shiftwidth=4 expandtab cindent textwidth=120 formatoptions=tc