aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/server_dialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/server_dialog.h')
-rw-r--r--src/interfaces/server_dialog.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/interfaces/server_dialog.h b/src/interfaces/server_dialog.h
new file mode 100644
index 00000000..98c57fee
--- /dev/null
+++ b/src/interfaces/server_dialog.h
@@ -0,0 +1,20 @@
+#pragma once
+
+#include <QDialog>
+
+namespace AttorneyOnline
+{
+namespace UI
+{
+class FavoriteServerDialog : public QDialog
+{
+public:
+ const QString DEFAULT_UI = "favorite_server_dialog.ui";
+ const int TCP_INDEX = 0;
+
+private Q_SLOTS:
+ virtual void onSavePressed() = 0;
+ virtual void onCancelPressed() = 0;
+};
+} // namespace UI
+} // namespace AttorneyOnline