summaryrefslogtreecommitdiff
path: root/protocols/Tox/src/tox_dialogs.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Tox/src/tox_dialogs.h')
-rw-r--r--protocols/Tox/src/tox_dialogs.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/protocols/Tox/src/tox_dialogs.h b/protocols/Tox/src/tox_dialogs.h
new file mode 100644
index 0000000000..c78c7a8943
--- /dev/null
+++ b/protocols/Tox/src/tox_dialogs.h
@@ -0,0 +1,21 @@
+#ifndef _TOX_DIALOGS_H_
+#define _TOX_DIALOGS_H_
+
+typedef CProtoDlgBase<CToxProto> CToxDlgBase;
+
+class CToxPasswordEditor : public CToxDlgBase
+{
+private:
+ CCtrlEdit password;
+ CCtrlCheck savePermanently;
+
+ CCtrlButton ok;
+
+protected:
+ void OnOk(CCtrlButton*);
+
+public:
+ CToxPasswordEditor(CToxProto *proto);
+};
+
+#endif //_TOX_DIALOGS_H_ \ No newline at end of file