Changeset cf2a88485aa4b1cd85b74672b5b00ac29dfebdf5
- Timestamp:
- 01/06/07 23:57:30 (6 years ago)
- Author:
- Philipp Kern <phil@…>
- Parents:
- c4d9b86e1b239727cb2f133a91861084c7c4b48a
- Children:
- cd7907432b0010efa93303b93f17fd3c64d253f9
- git-committer:
- Philipp Kern <phil@0x539.de> / 2007-01-06T22:57:30Z+0000
- Message:
-
[project @ Introduced document settings to store document's original encoding]
Original author: Armin Burgmeier <armin@…>
Date: 2006-02-28 13:39:17+00:00
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r882c708
|
rcf2a884
|
|
| 37 | 37 | noinst_HEADERS += inc/docwindow.hpp |
| 38 | 38 | noinst_HEADERS += inc/folder.hpp |
| | 39 | noinst_HEADERS += inc/document_settings.hpp |
| 39 | 40 | noinst_HEADERS += inc/userlist.hpp |
| 40 | 41 | noinst_HEADERS += inc/documentlist.hpp |
| … |
… |
|
| 88 | 89 | gobby_SOURCES += src/docwindow.cpp |
| 89 | 90 | gobby_SOURCES += src/folder.cpp |
| | 91 | gobby_SOURCES += src/document_settings.cpp |
| 90 | 92 | gobby_SOURCES += src/userlist.cpp |
| 91 | 93 | gobby_SOURCES += src/documentlist.cpp |
-
|
rc2b92c8
|
rcf2a884
|
|
| 35 | 35 | #include "gotodialog.hpp" |
| 36 | 36 | #include "folder.hpp" |
| | 37 | #include "document_settings.hpp" |
| 37 | 38 | #include "chat.hpp" |
| 38 | 39 | #include "statusbar.hpp" |
| … |
… |
|
| 140 | 141 | Gtk::Frame m_frame_text; |
| 141 | 142 | |
| | 143 | DocumentSettings m_document_settings; |
| | 144 | |
| 142 | 145 | Header m_header; |
| 143 | 146 | UserList m_userlist; |
-
|
rc4d9b86
|
rcf2a884
|
|
| 56 | 56 | m_zeroconf(NULL), |
| 57 | 57 | #endif |
| | 58 | m_document_settings(*this), |
| 58 | 59 | m_header(), |
| 59 | 60 | m_userlist(*this, m_header, m_preferences, config["windows"]), |
| … |
… |
|
| 280 | 281 | // Delegate start of obby session |
| 281 | 282 | m_folder.obby_start(*m_buffer); |
| | 283 | m_document_settings.obby_start(*m_buffer); |
| 282 | 284 | m_userlist.obby_start(*m_buffer); |
| 283 | 285 | m_documentlist.obby_start(*m_buffer); |
| … |
… |
|
| 328 | 330 | // Tell GUI components that the session ended |
| 329 | 331 | m_folder.obby_end(); |
| | 332 | m_document_settings.obby_end(); |
| 330 | 333 | m_userlist.obby_end(); |
| 331 | 334 | m_documentlist.obby_end(); |