mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-08-09 01:46:43 +02:00
37 lines
690 B
C++
37 lines
690 B
C++
//
|
|
// PreferencesDialog.h
|
|
// hifi
|
|
//
|
|
// Created by Stojce Slavkovski on 2/22/14.
|
|
//
|
|
//
|
|
|
|
#ifndef __hifi__PreferencesDialog__
|
|
#define __hifi__PreferencesDialog__
|
|
|
|
#include "FramelessDialog.h"
|
|
#include "ui_preferencesDialog.h"
|
|
|
|
#include <QString>
|
|
|
|
class PreferencesDialog : public FramelessDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
PreferencesDialog(QWidget* parent = 0, Qt::WindowFlags flags = 0);
|
|
|
|
private:
|
|
Ui_PreferencesDialog ui;
|
|
void loadPreferences();
|
|
void savePreferences();
|
|
|
|
QString _faceURLString;
|
|
QString _skeletonURLString;
|
|
QString _displayNameString;
|
|
|
|
private slots:
|
|
void accept();
|
|
|
|
};
|
|
|
|
#endif /* defined(__hifi__PreferencesDialog__) */
|