1 /*************************************************************************** 2 * * 3 * This program is free software; you can redistribute it and/or modify * 4 * it under the terms of the GNU General Public License as published by * 5 * the Free Software Foundation; either version 3 of the License, or * 6 * (at your option) any later version. * 7 * * 8 ***************************************************************************/ 9 10 #pragma once 11 12 #include <QWidget> 13 14 #include "ui_UISettingsAdvanced.h" 15 16 class SettingsAdvanced : public QWidget, private Ui::UISettingsAdvanced 17 { 18 Q_OBJECT 19 public: 20 explicit SettingsAdvanced(QWidget *parent = 0); 21 virtual ~SettingsAdvanced(); 22 public slots: 23 void ok(); 24 private: 25 void init(); 26 private slots: 27 void slotBrowse(); 28 }; 29