1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
  
     | 
    
      /*  Copyright (c) MediaArea.net SARL. All Rights Reserved.
 *
 *  Use of this source code is governed by a BSD-style license that can
 *  be found in the License.html file in the root of the source tree.
 */
#ifndef PREFERENCES_H
#define PREFERENCES_H
#include <QDialog>
#include <QSettings>
#include "Common/Core.h"
#include <QDebug>
namespace Ui {
    class Preferences;
}
class Preferences : public QDialog {
    Q_OBJECT
public:
    Preferences(QSettings* settings, Core* C, QWidget *parent = 0);
    ~Preferences();
    void saveSettings();
protected:
    void changeEvent(QEvent *e);
private:
    void refreshDisplay();
    QSettings* settings;
    Ui::Preferences *ui;
    Core* C;
private slots:
    void on_customComboBox_currentIndexChanged(int index);
    void on_pushButton_deleteCustom_clicked();
    void on_pushButton_editCustom_clicked();
    void on_pushButton_newCustom_clicked();
    void on_treeTextComboBox_currentIndexChanged(int index);
    void on_pushButton_deleteTreeText_clicked();
    void on_pushButton_newTreeText_clicked();
    void on_pushButton_editTreeText_clicked();
    void on_pushButton_deleteSheet_clicked();
    void on_pushButton_newSheet_clicked();
    void on_pushButton_editSheet_clicked();
    void on_treeWidget_itemSelectionChanged();
};
#endif // PREFERENCES_H
 
     |