blob: a06046d39b0e8da8679d1136aa119cfe4cf10d92 [file] [log] [blame]
Yingdi Yuc2ab62c2013-10-23 10:31:08 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2013, Regents of the University of California
4 * Yingdi Yu
5 *
6 * BSD license, See the LICENSE file for more information
7 *
8 * Author: Yingdi Yu <yingdi@cs.ucla.edu>
9 */
10
Zhenkai Zhu85845d22012-06-01 23:10:43 -070011#ifndef SETTINGDIALOG_H
12#define SETTINGDIALOG_H
Zhenkai Zhu85845d22012-06-01 23:10:43 -070013
Yingdi Yuc2ab62c2013-10-23 10:31:08 -070014#include <QDialog>
15
16namespace Ui {
17class SettingDialog;
18}
19
20class SettingDialog : public QDialog
Zhenkai Zhu85845d22012-06-01 23:10:43 -070021{
22 Q_OBJECT
23
24public:
Yingdi Yuc2ab62c2013-10-23 10:31:08 -070025 explicit SettingDialog(QWidget *parent = 0);
26 ~SettingDialog();
27
28 void
29 setIdentity(const std::string& identity);
30
31signals:
32 void
33 identitySet(const QString& identity);
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -070034
35private slots:
Yingdi Yuc2ab62c2013-10-23 10:31:08 -070036 void
37 onOkClicked();
Zhenkai Zhu7e9b06d2012-06-02 00:44:42 -070038
Yingdi Yuc2ab62c2013-10-23 10:31:08 -070039private:
40 Ui::SettingDialog *ui;
41 std::string m_identity;
Zhenkai Zhu85845d22012-06-01 23:10:43 -070042};
43
Yingdi Yuc2ab62c2013-10-23 10:31:08 -070044#endif // SETTINGDIALOG_H