Permalink
Please sign in to comment.
Browse files
Merged issue-226 branch back into trunk, fixed issue 226.
Application interface is now decomposed into smaller nib files. For example, each of the preferences views is now managed by its own view controller subclass. Same for an account window and its views, and for a call window and its views. Started using XSWindowController and XSViewController to manage such decomposed interface. Those view controller subviews are now doing some of the work that a higher level controller was doing before. For example, AccountPreferencesViewController is now responsible for adding and removing accounts (PreferenceController was doing this work before). PreferenceController renamed to PreferencesController.
- Loading branch information...
Showing
with
34,839 additions
and 20,048 deletions.
- +1 −1 AKSIPURIFormatter.m
- +3 −3 AKSIPUserAgent.h
- +16 −57 AccountController.h
- +145 −1,026 AccountController.m
- +103 −0 AccountPreferencesViewController.h
- +751 −0 AccountPreferencesViewController.m
- +72 −0 AccountSetupController.h
- +147 −0 AccountSetupController.m
- +64 −0 ActiveAccountViewController.h
- +951 −0 ActiveAccountViewController.m
- +101 −0 ActiveCallViewController.h
- +267 −0 ActiveCallViewController.m
- +9 −4 AppController.h
- +97 −73 AppController.m
- +82 −0 AuthenticationFailureController.h
- +164 −0 AuthenticationFailureController.m
- +25 −87 CallController.h
- +156 −296 CallController.m
- +71 −0 EndedCallViewController.h
- +91 −0 EndedCallViewController.m
- +508 −158 English.lproj/Account.xib
- +2,199 −0 English.lproj/AccountPreferencesView.xib
- +625 −196 English.lproj/{AddAccount.xib → AccountSetup.xib}
- +722 −0 English.lproj/ActiveAccountView.xib
- +857 −0 English.lproj/ActiveCallView.xib
- +29 −69 English.lproj/{AuthFailed.xib → AuthenticationFailure.xib}
- +81 −984 English.lproj/Call.xib
- +771 −0 English.lproj/EndedCallView.xib
- +809 −0 English.lproj/GeneralPreferencesView.xib
- +812 −0 English.lproj/IncomingCallView.xib
- BIN English.lproj/Localizable.strings
- +1,147 −0 English.lproj/NetworkPreferencesView.xib
- +300 −4,248 English.lproj/Preferences.xib
- +1,064 −0 English.lproj/SoundPreferencesView.xib
- +39 −0 GeneralPreferencesViewController.h
- +46 −0 GeneralPreferencesViewController.m
- +505 −159 German.lproj/Account.xib
- +2,199 −0 German.lproj/AccountPreferencesView.xib
- +625 −212 German.lproj/{AddAccount.xib → AccountSetup.xib}
- +714 −0 German.lproj/ActiveAccountView.xib
- +857 −0 German.lproj/ActiveCallView.xib
- +27 −67 German.lproj/{AuthFailed.xib → AuthenticationFailure.xib}
- +77 −982 German.lproj/Call.xib
- +771 −0 German.lproj/EndedCallView.xib
- +739 −0 German.lproj/GeneralPreferencesView.xib
- +812 −0 German.lproj/IncomingCallView.xib
- +0 −6 German.lproj/Localizable.strings
- +1,147 −0 German.lproj/NetworkPreferencesView.xib
- +249 −4,125 German.lproj/Preferences.xib
- +1,064 −0 German.lproj/SoundPreferencesView.xib
- +74 −0 IncomingCallViewController.h
- +94 −0 IncomingCallViewController.m
- +65 −0 NetworkPreferencesViewController.h
- +268 −0 NetworkPreferencesViewController.m
- +0 −275 PreferenceController.h
- +0 −1,405 PreferenceController.m
- +150 −0 PreferencesController.h
- +307 −0 PreferencesController.m
- +505 −159 Russian.lproj/Account.xib
- +2,199 −0 Russian.lproj/AccountPreferencesView.xib
- +627 −203 Russian.lproj/{AddAccount.xib → AccountSetup.xib}
- +714 −0 Russian.lproj/ActiveAccountView.xib
- +857 −0 Russian.lproj/ActiveCallView.xib
- +29 −69 Russian.lproj/{AuthFailed.xib → AuthenticationFailure.xib}
- +75 −984 Russian.lproj/Call.xib
- +771 −0 Russian.lproj/EndedCallView.xib
- +739 −0 Russian.lproj/GeneralPreferencesView.xib
- +812 −0 Russian.lproj/IncomingCallView.xib
- +0 −6 Russian.lproj/Localizable.strings
- +1,146 −0 Russian.lproj/NetworkPreferencesView.xib
- +249 −4,150 Russian.lproj/Preferences.xib
- +1,065 −0 Russian.lproj/SoundPreferencesView.xib
- +68 −0 SoundPreferencesViewController.h
- +213 −0 SoundPreferencesViewController.m
- +261 −44 Telephone.xcodeproj/project.pbxproj
- +66 −0 XSViewController.h
- +182 −0 XSViewController.m
- +53 −0 XSWindowController.h
- +139 −0 XSWindowController.m

Oops, something went wrong.
0 comments on commit
8717bb7