diff options
author | dec05eba <dec05eba@protonmail.com> | 2018-11-24 19:17:47 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2018-11-24 19:17:50 +0100 |
commit | b5659bf9ade976353d771d9fcd1a3f1f3c3fb663 (patch) | |
tree | ec83c67f7aa705f46b0aca32554dc8b94b7b1025 /include/UserSettingsWindow.hpp | |
parent | 6da0c0ab26e726e4ea35457246ef06970ce5975a (diff) |
Add change user nickname/avatar menu
Diffstat (limited to 'include/UserSettingsWindow.hpp')
-rw-r--r-- | include/UserSettingsWindow.hpp | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/include/UserSettingsWindow.hpp b/include/UserSettingsWindow.hpp new file mode 100644 index 0000000..e7062e1 --- /dev/null +++ b/include/UserSettingsWindow.hpp @@ -0,0 +1,33 @@ +#pragma once + +#include <gtkmm/grid.h> +#include <gtkmm/entry.h> +#include <gtkmm/label.h> +#include <string> + +namespace Gtk +{ + class Paned; +} + +namespace dchat +{ + class ChatWindow; + + class UserSettingsWindow : public Gtk::Grid + { + public: + UserSettingsWindow(ChatWindow *chatWindow); + void setAvatarUrl(const std::string &url); + void setNickname(const std::string &nickname); + + void setupLeftPanel(Gtk::Paned *sidePanels); + void setupRightPanel(Gtk::Paned *sidePanels); + private: + ChatWindow *chatWindow; + Gtk::Entry nicknameEntry; + Gtk::Entry avatarUrlEntry; + Glib::ustring prevNickname; + Glib::ustring prevAvatarUrl; + }; +}
\ No newline at end of file |