Changeset c31a506f139efcb2e85c994b44d5dd09bc2e86a9
- Timestamp:
- 01/06/07 23:27:57 (6 years ago)
- Author:
- Philipp Kern <phil@…>
- Parents:
- f545856727b78da12edb4631a9bcec4f919f2123
- Children:
- b3251fb5a8bd25062feb77e263b613852c0021b5
- git-committer:
- Philipp Kern <phil@0x539.de> / 2007-01-06T22:27:57Z+0000
- Message:
-
[project @ Added create & join dialogs]
Original author: Armin Burgmeier <armin@…>
Date: 2005-04-02 20:00:09+00:00
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
rf5458567
|
rc31a506
|
|
| 11 | 11 | src/userlist.cpp \ |
| 12 | 12 | src/chat.cpp \ |
| | 13 | src/createdialog.cpp \ |
| | 14 | src/joindialog.cpp \ |
| 13 | 15 | src/window.cpp \ |
| 14 | 16 | src/main.cpp |
-
|
rf5458567
|
rc31a506
|
|
| 18 | 18 | |
| 19 | 19 | #include <gtkmm/main.h> |
| | 20 | #include "createdialog.hpp" |
| | 21 | #include "joindialog.hpp" |
| 20 | 22 | #include "window.hpp" |
| 21 | 23 | |
| … |
… |
|
| 62 | 64 | void Gobby::Window::on_session_create() |
| 63 | 65 | { |
| | 66 | CreateDialog dlg(*this); |
| | 67 | if(dlg.run() == Gtk::RESPONSE_OK) |
| | 68 | { |
| | 69 | } |
| 64 | 70 | } |
| 65 | 71 | |
| 66 | 72 | void Gobby::Window::on_session_join() |
| 67 | 73 | { |
| | 74 | JoinDialog dlg(*this); |
| | 75 | if(dlg.run() == Gtk::RESPONSE_OK) |
| | 76 | { |
| | 77 | } |
| 68 | 78 | } |
| 69 | 79 | |