bug+codestyle: Fix compile bugs and adjust code style
Change-Id: I008bb538441c099fa25b8b967fbf23ffce13a220
diff --git a/src/profile-editor.hpp b/src/profile-editor.hpp
new file mode 100644
index 0000000..1dc5f5e
--- /dev/null
+++ b/src/profile-editor.hpp
@@ -0,0 +1,64 @@
+/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
+/*
+ * Copyright (c) 2013, Regents of the University of California
+ * Yingdi Yu
+ *
+ * BSD license, See the LICENSE file for more information
+ *
+ * Author: Yingdi Yu <yingdi@cs.ucla.edu>
+ */
+
+#ifndef CHRONOS_PROFILE_EDITOR_HPP
+#define CHRONOS_PROFILE_EDITOR_HPP
+
+#include <QDialog>
+#include <QtSql/QSqlTableModel>
+
+#ifndef Q_MOC_RUN
+#endif
+
+namespace Ui {
+class ProfileEditor;
+}
+
+namespace chronos {
+
+class ProfileEditor : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit ProfileEditor(QWidget* parent = 0);
+
+ ~ProfileEditor();
+
+public slots:
+ void
+ onCloseDBModule();
+
+ void
+ onIdentityUpdated(const QString& identity);
+
+private slots:
+ void
+ onAddClicked();
+
+ void
+ onDeleteClicked();
+
+ void
+ onOkClicked();
+
+signals:
+ void
+ updateProfile();
+
+private:
+ Ui::ProfileEditor* ui;
+ QSqlTableModel* m_tableModel;
+ QString m_identity;
+};
+
+} // namespace chronos
+
+#endif // CHRONOS_PROFILE_EDITOR_HPP